forked from Zacknetic/HomebridgeMagicHome-DynamicPlatform
-
Notifications
You must be signed in to change notification settings - Fork 0
/
config.schema.json
55 lines (55 loc) · 2.12 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
{
"pluginAlias": "homebridge-magichome-dynamic-platform",
"pluginType": "platform",
"singular": true,
"headerDisplay": "Optional content to display above the plugin config. Supports markdown.",
"footerDisplay": "Optional content to display below the plugin config. Supports markdown.",
"schema": {
"type": "object",
"properties": {
"settings": {
"type": "object",
"properties": {
"pruning": {
"type": "object",
"properties": {
"pruneMissingCachedAccessories": {
"title": "Prune Missing Accesories",
"type": "boolean"
},
"restartsBeforeMissingAccessoriesPruned": {
"title": "Number Restarts Before Missing Accessories Are Pruned",
"type": "integer"
},
"pruneAllAccessoriesNextRestart": {
"title": " Prune All Missing Accessories",
"type": "boolean"
}
}
},
"whiteEffects": {
"type": "object",
"properties": {
"simultaniousDevicesColorWhite": {
"title": "Allow Simultanious Color and White for Compatible Devices",
"type": "boolean"
},
"colorWhiteThreshold": {
"title": "Saturation Threshold Between Color and White for Non-Simnultanious Devices",
"type": "integer"
},
"colorWhiteThresholdSimultaniousDevices": {
"title": "Saturation Threshold Between Color and White for Simultanious Devices",
"type": "integer"
},
"colorOffThresholdSimultaniousDevices": {
"title": "Color Off Threshold for Simultanious Devices",
"type": "integer"
}
}
}
}
}
}
}
}