-
-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathconfig.schema.json
64 lines (64 loc) · 1.2 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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
{
"pluginAlias": "homebridge-wiser",
"pluginType": "platform",
"singular": false,
"schema": {
"type": "object",
"properties": {
"name": {
"title": "Name",
"type": "string",
"required": true
},
"wiserAddress": {
"title": "Wiser IP Address",
"type": "string",
"format": "ipv4",
"required": true
},
"wiserUsername": {
"title": "Wiser admin user name",
"type": "string",
"default": "admin",
"required": true
},
"wiserPassword": {
"title": "Wiser admin password",
"type": "string",
"required": true
},
"wiserPort": {
"title": "Wiser port password",
"type": "integer",
"default": 8888,
"required": true
},
"ignoredGAs": {
"title": "Ignored groups",
"type": "array",
"items": {
"title": "Group address",
"type": "object",
"properties": {
"network": {
"title": "Network",
"type": "integer",
"required": true,
"default": 254,
"maximum":255
},
"ga": {
"title": "Group address",
"type": "integer",
"required": true,
"maximum":255,
"default": 0
}
}
}
}
}
},
"form": null,
"display": null
}