Juniper Networks · Schema
VirtualNetwork
AIAutomationCloudEnterpriseNetworkingSDNSecurityFortune 1000
Properties
| Name | Type | Description |
|---|---|---|
| id | string | |
| label | string | |
| vn_type | string | |
| vn_id | string | |
| security_zone_id | string | |
| ipv4_subnet | string | |
| ipv4_gateway | string | |
| ipv6_subnet | string | |
| vlan_id | integer | |
| bound_to | array |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "#/components/schemas/VirtualNetwork",
"title": "VirtualNetwork",
"type": "object",
"properties": {
"id": {
"type": "string",
"format": "uuid"
},
"label": {
"type": "string"
},
"vn_type": {
"type": "string",
"enum": [
"vxlan",
"vlan"
]
},
"vn_id": {
"type": "string"
},
"security_zone_id": {
"type": "string",
"format": "uuid"
},
"ipv4_subnet": {
"type": "string"
},
"ipv4_gateway": {
"type": "string"
},
"ipv6_subnet": {
"type": "string"
},
"vlan_id": {
"type": "integer"
},
"bound_to": {
"type": "array",
"items": {
"type": "object",
"properties": {
"system_id": {
"type": "string"
},
"vlan_id": {
"type": "integer"
},
"access_switches": {
"type": "array",
"items": {
"type": "object"
}
}
}
}
}
}
}