blob: 831f02f1f4e303ffd2d1cab031050615640076cf [file] [log] [blame]
andrea1ce2bc82015-11-18 16:58:10 -08001{
2 "type": "object",
3 "required": [
4 "id",
5 "ip",
6 "tcpPort",
7 "status"
8 ],
9 "properties": {
10 "id": {
11 "type": "string",
12 "example": "127.0.0.1"
13 },
14 "ip": {
15 "type": "string",
16 "example": "127.0.0.1"
17 },
18 "tcpPort": {
19 "type": "integer",
20 "format": "int64",
21 "example": 9876
22 },
23 "status": {
24 "type": "string",
25 "example": "ACTIVE"
26 }
27 }
28}