generated from homebridge/homebridge-plugin-template
-
Notifications
You must be signed in to change notification settings - Fork 29
/
Copy pathconfig.schema.json
120 lines (118 loc) · 3.05 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
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
{
"pluginAlias": "LutronCasetaLeap",
"pluginType": "platform",
"customUi": true,
"singular": true,
"schema": {
"type": "object",
"properties": {
"name": {
"type": "string",
"title": "Name",
"default": "Lutron",
"required": true
},
"options": {
"type": "object",
"properties": {
"filterPico": {
"type": "boolean",
"title": "Exclude Pico remotes that are associated with devices directly or in the Lutron app"
},
"filterBlinds": {
"type": "boolean",
"title": "Exclude Serena wood blinds from this plugin"
},
"clickSpeed": {
"type": "string",
"title": "Double- and long-press speed",
"oneOf": [
{ "title": "Fast", "enum": ["fast"] },
{ "title": "Medium (default)", "enum": ["medium"] },
{ "title": "Slow", "enum": ["slow"] }
]
}
}
},
"secrets": {
"type": "array",
"items": {
"type": "object",
"properties": {
"bridgeid": { "type": "string" },
"ca": { "type": "string" },
"key": { "type": "string" },
"cert": { "type": "string" }
},
"required": ["ca", "cert", "key"]
}
}
}
},
"layout": [
{"key": "options",
"type": "div",
"displayFlex": true,
"items": [
{
"key": "options.filterPico",
"notitle": false,
"type": "boolean",
"flex": "1 1 150px"
},
{
"key": "options.filterBlinds",
"notitle": false,
"type": "boolean",
"flex": "1 1 150px"
},
{
"key": "options.clickSpeed",
"notitle": false,
"type": "string",
"flex": "1 1 150px"
}
]
},
{"key": "secrets",
"type": "array",
"listItems": 1,
"items": [ {
"type": "div",
"displayFlex": true,
"items": [
{
"key": "secrets[].bridgeid",
"flex": "1 1 50px",
"notitle": false,
"title": "Bridge ID Number (hex of serial number)",
"placeholder": "Bridge ID",
"type": "string"
},
{
"key": "secrets[].ca",
"flex": "200px",
"title": "CA certificate (caseta-bridge.crt)",
"placeholder": "-----BEGIN CERTIFICATE-----...",
"type": "textarea"
},
{
"key": "secrets[].key",
"flex": "200px",
"title": "Private key (caseta.key)",
"placeholder": "-----BEGIN PRIVATE KEY-----...",
"type": "textarea"
},
{
"key": "secrets[].cert",
"flex": "200px",
"title": "Signed certificate (caseta.crt)",
"placeholder": "-----BEGIN CERTIFICATE-----...",
"type": "textarea"
}
]
}
]
}
]
}