forked from grelca/homebridge-logic-switch
-
Notifications
You must be signed in to change notification settings - Fork 0
/
config.schema.json
54 lines (54 loc) · 1.55 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
{
"pluginAlias": "LogicSwitch",
"pluginType": "accessory",
"singular": false,
"schema": {
"type": "object",
"properties": {
"name": {
"title": "Name",
"type": "string",
"required": true,
"default": "Logic Switches"
},
"conditions": {
"title": "Logic Rules",
"type": "array",
"required": true,
"uniqueItems": true,
"items": {
"type": "object",
"properties": {
"output": {
"title": "Output Name",
"description": "The name of the switch this rule controls",
"type": "string",
"required": true
},
"gate": {
"title": "Logic Type",
"description": "When should this output be activated?",
"type": "string",
"required": true,
"default": "AND",
"oneOf":[
{ "title": "When ALL of the selected inputs are enabled", "enum": ["AND"] },
{ "title": "When ANY of the selected inputs are enabled", "enum": ["OR"] },
{ "title": "When NONE of the selected inputs are enabled", "enum": ["NOT"] }
]
},
"inputs": {
"title": "Input Names",
"description": "Provided inputs which control the output value",
"type": "array",
"required": true,
"items": {
"type": "string"
}
}
}
}
}
}
}
}