blob: ad67fc7be7da7133229b191d13a44e6176cb1975 [file] [log] [blame]
andrea1ce2bc82015-11-18 16:58:10 -08001{
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}