-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathlistener.schema
More file actions
51 lines (51 loc) · 895 Bytes
/
listener.schema
File metadata and controls
51 lines (51 loc) · 895 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
{
"type": "object",
"$schema": "http://json-schema.org/draft-03/schema",
"id": "http://api.c3wireless.com",
"required": true,
"type": "object",
"properties": {
"id": {
"type": "integer",
"required": false
},
"disabled": {
"type": "boolean",
"required": false
},
"name": {
"type": "string",
"required": true
},
"mac": {
"type": "string",
"required": true,
"minLength": 12,
"maxLength": 12
},
"description": {
"type": "string",
"required": false
},
"keywords": {
"type": "string",
"required": false
},
"map_x": {
"type": "number",
"required": false
},
"map_y": {
"type": "number",
"required": false
},
"zone_id": {
"type": "integer",
"required": false
},
"missing": {
"type": "boolean",
"required": false
}
}
}