generated from homebridge/homebridge-plugin-template
-
-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathconfig.schema.json
44 lines (43 loc) · 1.37 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
{
"pluginAlias": "Kumo",
"pluginType": "platform",
"singular": true,
"headerDisplay": "Kumo Devices are exposed following login to the kumo cloud. All devices on every site should be listed in the Home app following successful login.",
"footerDisplay": "Direct connection is much faster but experimental at the moment.",
"schema": {
"type": "object",
"properties": {
"username": {
"title": "UserName",
"type": "string",
"required": true
},
"password": {
"title": "Password",
"type": "string",
"required": true
},
"directAccess": {
"title": "Connect directly to devices?",
"type": "boolean",
"required": false
},
"simpleDuctless": {
"title": "Show simple HeaterCooler accessory only?",
"type": "boolean",
"required": false
},
"options": {
"title": "Feature Options",
"type": "array",
"items": {
"type": "string",
"title": "Feature Option",
"required": false,
"description": "Enter only one option per entry. See project page for the complete list of available options.",
"placeholder": "e.g. Disable.SerialNumber"
}
}
}
}
}