-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathconfig.schema.json
More file actions
31 lines (31 loc) · 802 Bytes
/
config.schema.json
File metadata and controls
31 lines (31 loc) · 802 Bytes
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
{
"pluginAlias": "TempStickPlugin",
"pluginType": "platform",
"singular": true,
"schema": {
"type": "object",
"properties": {
"name": {
"title": "Name",
"type": "string",
"required": true,
"default": "Temp Stick Plugin"
},
"apiKey": {
"title": "API Key",
"type": "string",
"required": true,
"pattern": "^[A-Za-z0-9]*$",
"description": "Found at https://mytempstick.com/account#developers"
},
"delay": {
"title": "Delay (in seconds)",
"type": "number",
"required": false,
"placeholder": "5",
"pattern": "^[0-9]*$",
"description": "Add an additional delay if your Homekit readings are behind your Temp Stick readings."
}
}
}
}