forked from heisler3030/homebridge-spaberry
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathconfig.schema.json
38 lines (37 loc) · 982 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
38
{
"pluginAlias": "spaberry",
"pluginType": "accessory",
"singular": true,
"schema": {
"type": "object",
"properties": {
"name": {
"title": "Name",
"type": "string",
"required": true,
"default": "Hot Tub",
"description": "Name of the Spa in Home App"
},
"url": {
"title": "URL",
"type": "string",
"required": true,
"placeholder": "http://192.168.86.41:3000",
"description": "Base path to SpaBerry API",
"format": "uri"
},
"pollInterval": {
"title": "Poll Interval",
"type": "number",
"required": true,
"default": "15",
"description": "Refresh interval in seconds"
},
"debug": {
"title": "Debug mode?",
"description": "Enable debug logging",
"type": "boolean"
}
}
}
}