| andrea | 1ce2bc8 | 2015-11-18 16:58:10 -0800 | [diff] [blame] | 1 | { |
| 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 | } | ||||