Jian Li | 3defa84 | 2019-02-12 00:31:35 +0900 | [diff] [blame] | 1 | { |
2 | "type": "object", | ||||
3 | "required": [ | ||||
4 | "apiConfigs" | ||||
5 | ], | ||||
6 | "properties": { | ||||
7 | "nodes": { | ||||
8 | "type": "array", | ||||
9 | "items": { | ||||
10 | "type": "object", | ||||
11 | "required": [ | ||||
12 | "scheme", | ||||
13 | "ipAddress", | ||||
14 | "port" | ||||
15 | ], | ||||
16 | "properties": { | ||||
17 | "scheme": { | ||||
18 | "type": "string", | ||||
19 | "example": "HTTP" | ||||
20 | }, | ||||
21 | "ipAddress": { | ||||
22 | "type": "string", | ||||
23 | "example": "10.10.10.2" | ||||
24 | }, | ||||
25 | "port": { | ||||
26 | "type": "integer", | ||||
27 | "example": 6443 | ||||
28 | } | ||||
29 | } | ||||
30 | } | ||||
31 | } | ||||
32 | } | ||||
33 | } |