Jian Li | 49109b5 | 2019-01-22 00:17:28 +0900 | [diff] [blame] | 1 | { |
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 Li | f16e885 | 2019-01-22 22:55:31 +0900 | [diff] [blame] | 16 | "integrationBridge" |
Jian Li | 49109b5 | 2019-01-22 00:17:28 +0900 | [diff] [blame] | 17 | ], |
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 | } |