-
Notifications
You must be signed in to change notification settings - Fork 10
/
config.schema.json
37 lines (37 loc) · 948 Bytes
/
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
{
"pluginAlias": "Schedule",
"pluginType": "accessory",
"singular": false,
"schema": {
"type": "object",
"properties": {
"name": {
"title": "Name",
"type": "string",
"required": true
},
"serial": {
"description": "Serial for the schedule accessory (changing this will break existing HomeKit automations), defaults to '123456789'",
"title": "Serial",
"type": "string",
"required": false
},
"interval": {
"title": "Interval",
"type": "number",
"description": "Interval, in minutes"
},
"cron": {
"title": "Cron",
"type": "string",
"description": "Cron string"
},
"enabledDuration": {
"title": "Enabled Duration",
"type": "number",
"description": "Number of seconds to leave switch on for before disabling",
"required": false
}
}
}
}