-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathconfig.schema.json
49 lines (49 loc) · 1.24 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
{
"pluginAlias": "FrisquetConnect",
"pluginType": "platform",
"singular": true,
"headerDisplay": "Homebridge plugin to manage Frisquet devices via FrisquetConenct",
"footerDisplay": "For a detailed description, see the [GitHub](https://github.com/mgcrea/homebridge-frisquet-connect)",
"schema": {
"type": "object",
"properties": {
"hostname": {
"title": "Frisquet Connect hostname",
"type": "string",
"required": true,
"default": "https://fcutappli.frisquet.com/api/v1"
},
"username": {
"title": "Frisquet Connect username",
"type": "string",
"required": true,
"default": "[email protected]"
},
"password": {
"title": "Frisquet Connect password",
"type": "string",
"required": true,
"default": ""
},
"historyInterval": {
"title": "History interval",
"type": "number",
"required": false,
"default": 900
},
"historyDisabled": {
"title": "History disabled",
"type": "string",
"required": false,
"default": false
}
}
},
"form": [
"hostname",
"username",
"password",
"historyInterval",
"historyDisabled"
]
}