blob: 435161697a658f3d41a1fab1e4c26371cfccc477 [file] [log] [blame]
Jian Li49109b52019-01-22 00:17:28 +09001{
2 "type": "object",
3 "required": [
4 "nodes"
5 ],
6 "properties": {
7 "nodes": {
8 "type": "array",
9 "items": {
10 "type": "object",
11 "required": [
12 "hostname",
13 "type",
14 "managementIp",
15 "dataIp",
Jian Lif16e8852019-01-22 22:55:31 +090016 "integrationBridge"
Jian Li49109b52019-01-22 00:17:28 +090017 ],
18 "properties": {
19 "hostname": {
20 "type": "string",
21 "example": "host1"
22 },
23 "type": {
24 "type": "string",
25 "example": "GATEWAY"
26 },
27 "managementIp": {
28 "type": "string",
29 "example": "10.10.10.1"
30 },
31 "dataIp": {
32 "type": "string",
33 "example": "20.20.20.2"
34 },
35 "integrationBridge": {
36 "type": "string",
37 "example": "of:0000000000000001"
38 }
39 }
40 }
41 }
42 }
43}