-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathconfig.schema.json
52 lines (52 loc) · 1.26 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
{
"pluginAlias": "Exivo",
"pluginType": "platform",
"singular": true,
"headerDisplay": "This homebridge plug-in exposes Lock accessories from Dormakaba Exivo API to Homekit. You must get your site ID and generate API keys from [Customer portal](https://auth.exivo.io/login).",
"schema": {
"type": "object",
"properties": {
"site_id": {
"title": "Site ID",
"type": "string",
"required": true
},
"api_key": {
"title": "API Key",
"type": "string",
"required": true
},
"api_secret": {
"title": "API Secret",
"type": "string",
"required": true
},
"apiDelay": {
"title": "Delay between the Homekit action and the lock response time to complete command",
"type": "integer",
"minimum": 0,
"maximum": 10,
"default": 3,
"description": "0 to 10 sec"
},
"autoLock": {
"title": "Simulate autolock behavior",
"type": "boolean",
"default": true
},
"autoLockDelay": {
"title": "Time in seconds after the lock is self-locked",
"type": "integer",
"minimum": 0,
"maximum": 30,
"default": 6,
"description": "0 to 30 sec"
},
"delegatedUser": {
"title": "String that appears on Customer Portal log",
"type": "string",
"default": "Homebridge"
}
}
}
}