-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathconfig.schema.json
88 lines (88 loc) · 2.71 KB
/
config.schema.json
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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
{
"pluginAlias": "HomebridgeDeconzConverter",
"pluginType": "platform",
"singular": true,
"schema": {
"host": {
"title": "Host",
"type": "string",
"required": true,
"default": "127.0.0.1"
},
"useHTTPS": {
"title": "Use HTTPS",
"description": "Is your host protected over HTTPS?",
"type": "boolean",
"default": false
},
"apiKey": {
"title": "API Key",
"description": "To see how to get you API key, visit: https://dresden-elektronik.github.io/deconz-rest-doc/getting_started/#acquire-an-api-key",
"type": "string",
"required": true
},
"port": {
"title": "WebSocket Port",
"description": "To see how to get your WebSocket Port, visit: https://dresden-elektronik.github.io/deconz-rest-doc/endpoints/websocket/",
"type": "string",
"required": true
},
"rollerShutters": {
"type": "array",
"items": {
"title": "Roller Shutters",
"type": "object",
"properties": {
"displayName": {
"title": "Name",
"type": "string"
},
"uniqueId": {
"title": "Unique ID",
"type": "string",
"placeholder": "00:00:00:00:00:00:00:00-01",
"description": "To see how to list all your 'lights' and get their `uniqueId`, visit: https://dresden-elektronik.github.io/deconz-rest-doc/getting_started/#get-a-list-of-all-lights"
}
}
}
},
"nodonMultifonctions": {
"type": "array",
"items": {
"title": "NodOn Multifonctions Modules",
"type": "object",
"properties": {
"displayName": {
"title": "Name",
"type": "string"
},
"uniqueId": {
"title": "Unique ID",
"type": "string",
"placeholder": "00:00:00:00:00:00:00:00-01",
"description": "To see how to list all your 'lights' and get their `uniqueId`, visit: https://dresden-elektronik.github.io/deconz-rest-doc/getting_started/#get-a-list-of-all-lights"
}
}
}
},
"contactSensors": {
"type": "array",
"items": {
"title": "Contact Sensors",
"type": "object",
"properties": {
"displayName": {
"title": "Name",
"type": "string"
},
"uniqueId": {
"title": "Unique ID",
"type": "string",
"placeholder": "00:00:00:00:00:00:00:00-01",
"description": "To see how to list all your 'sensors' and get their `uniqueId`, visit: https://dresden-elektronik.github.io/deconz-rest-doc/endpoints/sensors/#get-all-sensors"
}
}
}
}
}
}