andrea | 1ce2bc8 | 2015-11-18 16:58:10 -0800 | [diff] [blame] | 1 | { |
2 | "type": "object", | ||||
3 | "title": "nodes", | ||||
4 | "properties": { | ||||
5 | "nodes": { | ||||
6 | "type": "array", | ||||
7 | "xml": { | ||||
8 | "name": "nodes", | ||||
9 | "wrapped": true | ||||
10 | }, | ||||
11 | "items": { | ||||
12 | "type": "object", | ||||
13 | "title": "nodes", | ||||
14 | "required": [ | ||||
15 | "id", | ||||
16 | "ip", | ||||
17 | "tcpPort", | ||||
18 | "status" | ||||
19 | ], | ||||
20 | "properties": { | ||||
21 | "id": { | ||||
22 | "type": "string", | ||||
23 | "example": "127.0.0.1" | ||||
24 | }, | ||||
25 | "ip": { | ||||
26 | "type": "string", | ||||
27 | "example": "127.0.0.1" | ||||
28 | }, | ||||
29 | "tcpPort": { | ||||
30 | "type": "integer", | ||||
31 | "format": "int64", | ||||
32 | "example": 9876 | ||||
33 | }, | ||||
34 | "status": { | ||||
35 | "type": "string", | ||||
36 | "example": "ACTIVE" | ||||
37 | } | ||||
38 | } | ||||
39 | } | ||||
40 | } | ||||
41 | } | ||||
42 | } |