diff --git a/docs/define_exp_env/index.rst b/docs/define_exp_env/index.rst
index 9990823fbe613ca8a1068f6b7e9d78874cbac5e6..422bdc0d381fd2bde8b10511f53b7decf45e6cee 100644
--- a/docs/define_exp_env/index.rst
+++ b/docs/define_exp_env/index.rst
@@ -129,7 +129,7 @@ Schema
 Network
 =======
 
-``e2clab`` has the capacity to emulate network constraints between layers. Those constraints are defined in a single ``network.yaml`` configuration file.
+``e2clab`` has the capacity to emulate network constraints between layers, or any subset of services. Those constraints are defined in a single ``network.yaml`` configuration file.
 For each network, users may set parameters like:
 
 - delay
diff --git a/docs/define_exp_env/network.yaml b/docs/define_exp_env/network.yaml
index 9d54a47bea97aced2cec762e6f9f44eaa5cab0e7..7284f094bda6d4a9d7347e69f17f5408b3c231b9 100644
--- a/docs/define_exp_env/network.yaml
+++ b/docs/define_exp_env/network.yaml
@@ -10,7 +10,7 @@ networks:
   rate: 1gbit
   loss: 1%
   symmetric: false
-- src: fog    # Required
+- src: fog.gateway.*    # Required
   dst: edge   # Required
   delay: 100ms
   rate: 50kbits
diff --git a/e2clab/schemas/network_schema.py b/e2clab/schemas/network_schema.py
index b9a8ada9d055b82fe3843aa0440b9f1b4159c7d6..211b09a89ec697316f6eee9f5ca06fe2a1db69c7 100644
--- a/e2clab/schemas/network_schema.py
+++ b/e2clab/schemas/network_schema.py
@@ -16,16 +16,17 @@ SCHEMA: dict = {
     "definitions": {
         "network": {
             "title": "Network emulation",
-            # "$$target": "#/definitons/network",
             "type": "object",
             "properties": {
                 SRC: {
-                    "description": "Source layer name",
+                    "description": "Source services name",
                     "type": "string",
+                    "examples": ["cloud", "cloud.kafka.*"],
                 },
                 DST: {
-                    "description": "Destination layer name",
+                    "description": "Destination services name",
                     "type": "string",
+                    "example": ["edge", "fog.gateway.*"],
                 },
                 DELAY: {
                     "description": "The delay to apply",