blob: 6ab1bde6ae895c619cca25b635af6823195b37e4 [file] [log] [blame]
Claudine Chiu1decd532016-04-19 18:30:01 +00001{
2 "type": "object",
3 "title": "VirtualNetworks",
4 "required": [
5 "vnets"
6 ],
7 "properties": {
8 "vnets": {
9 "type": "array",
10 "xml": {
11 "name": "vnets",
12 "wrapped": true
13 },
14 "items": {
15 "type": "object",
16 "title": "vnet",
17 "required": [
18 "networkId",
19 "tenantId"
20 ],
21 "properties": {
22 "networkId": {
23 "type": "int64",
24 "description": "Network identifier",
25 "example": 3
26 },
27 "tenantId": {
28 "type": "String",
29 "description": "Tenant identifier",
30 "example": "Tenant123"
31 }
32 }
33 }
34 }
35 }
36}