Jian Li | 0c45180 | 2016-02-24 22:39:25 +0900 | [diff] [blame] | 1 | { |
2 | "type": "object", | ||||
3 | "title": "region", | ||||
4 | "required": [ | ||||
5 | "id", | ||||
6 | "name", | ||||
7 | "type", | ||||
8 | "masters" | ||||
9 | ], | ||||
10 | "properties": { | ||||
11 | "id": { | ||||
12 | "type": "string", | ||||
13 | "example": "1" | ||||
14 | }, | ||||
15 | "name": { | ||||
16 | "type": "string", | ||||
17 | "example": "region" | ||||
18 | }, | ||||
19 | "type": { | ||||
20 | "type": "string", | ||||
21 | "example": "ROOM" | ||||
22 | }, | ||||
23 | "masters": { | ||||
24 | "type": "array", | ||||
25 | "xml": { | ||||
26 | "name": "masters", | ||||
27 | "wrapped": true | ||||
28 | }, | ||||
29 | "items": { | ||||
30 | "type": "array", | ||||
31 | "xml": { | ||||
32 | "name": "masters", | ||||
33 | "wrapped": true | ||||
34 | }, | ||||
35 | "items": { | ||||
36 | "type": "string", | ||||
37 | "example": "1" | ||||
38 | } | ||||
39 | } | ||||
40 | } | ||||
41 | } | ||||
42 | } |