andrea | 1ce2bc8 | 2015-11-18 16:58:10 -0800 | [diff] [blame] | 1 | { |
2 | "type": "object", | ||||
3 | "title": "clusters", | ||||
4 | "required": [ | ||||
5 | "clusters" | ||||
6 | ], | ||||
7 | "properties": { | ||||
8 | "clusters": { | ||||
9 | "type": "array", | ||||
10 | "xml": { | ||||
11 | "name": "cluster", | ||||
12 | "wrapped": true | ||||
13 | }, | ||||
14 | "items": { | ||||
15 | "type": "object", | ||||
16 | "title": "cluster", | ||||
17 | "required": [ | ||||
18 | "id", | ||||
19 | "deviceCount", | ||||
20 | "linkCount", | ||||
21 | "root" | ||||
22 | ], | ||||
23 | "properties": { | ||||
24 | "id": { | ||||
25 | "type": "integer", | ||||
26 | "format": "int64", | ||||
27 | "example": 1 | ||||
28 | }, | ||||
29 | "deviceCount": { | ||||
30 | "type": "integer", | ||||
31 | "format": "int64", | ||||
32 | "example": 3 | ||||
33 | }, | ||||
34 | "linkCount": { | ||||
35 | "type": "integer", | ||||
36 | "format": "int64", | ||||
37 | "example": 4 | ||||
38 | }, | ||||
39 | "root": { | ||||
40 | "type": "string", | ||||
41 | "example": "of:0000000000000001" | ||||
42 | } | ||||
43 | } | ||||
44 | } | ||||
45 | } | ||||
46 | } | ||||
47 | } | ||||
48 |