generated from homebridge/homebridge-plugin-template
-
Notifications
You must be signed in to change notification settings - Fork 0
/
config.schema.json
37 lines (37 loc) · 912 Bytes
/
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
{
"pluginAlias": "NiceShadesBro",
"pluginType": "platform",
"singular": true,
"schema": {
"type": "object",
"properties": {
"name": {
"title": "Name",
"type": "string",
"required": true,
"default": "NiceShadesBro"
},
"options": {
"title": "Advanced Settings",
"expandable": true,
"type": "object",
"properties": {
"devicesPerChannel": {
"title": "Number devices/channel",
"type": "integer",
"default": 1,
"minimum": 1,
"maximum": 4,
"description": "Number of devices (receivers) per channel (presumed one controller per channel)"
},
"cfgprop1": {
"title": "TestProp",
"type": "string",
"required": false,
"default": "yeah"
}
}
}
}
}
}