blob: b82447f22e007e6c31ccdf11b6d741e1f473ce13 [file] [log] [blame]
Jian Li3defa842019-02-12 00:31:35 +09001{
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}