generated from homebridge/homebridge-plugin-template
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathconfig.schema.json
34 lines (34 loc) · 887 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
{
"pluginAlias": "Homebridge Cloud Switch",
"pluginType": "platform",
"singular": true,
"schema": {
"type": "object",
"properties": {
"name": {
"title": "Name",
"type": "string",
"required": true,
"default": "Cloud Switch"
},
"accessToken": {
"title": "Particle Cloud Access Token",
"type": "string",
"required": true,
"placeholder": "Input access token for particle.io account"
},
"deviceId": {
"title": "Cloud Switch Hub device ID",
"type": "string",
"required": true,
"placeholder": "Input the device ID for Cloud Switch"
},
"excludedSwitches": {
"title": "Switches excluded",
"type": "string",
"required": false,
"placeholder": "Comma separated list of switch indexes excluded"
}
}
}
}