-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathconfig.schema.json
92 lines (92 loc) · 2.59 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
{
"pluginAlias": "NukiPlatform",
"pluginType": "platform",
"singular": true,
"schema": {
"type": "object",
"properties": {
"callbackServer": {
"required": false,
"type": "object",
"properties": {
"ip": {
"title": "IP Address",
"description": "Local IP Address of the Device which runs this Homebridge Instance. Leave empty for Auto-Detection.",
"type": "string",
"required": false
},
"port": {
"title": "Port",
"description": "Choose a open Port on this Device. Leave empty for default Port.",
"type": "number",
"required": false
}
}
},
"bridges": {
"description": "Static Bridge Configuration. Leave empty for dynamic configuration.",
"type": "array",
"required": false,
"items": {
"title": "Bridges",
"type": "object",
"properties": {
"id": {
"title": "Id",
"type": "string",
"required": true
},
"ip": {
"title": "IP Address",
"type": "string",
"required": true
},
"port": {
"title": "Port",
"type": "number",
"required": true
},
"token": {
"title": "Token",
"type": "string",
"required": true
},
"hashToken": {
"title": "Hash the Token?",
"type": "boolean",
"required": true
}
}
}
},
"smartLocks": {
"description": "Device specific Configuration",
"type": "array",
"required": false,
"items": {
"title": "Smart Locks",
"type": "object",
"properties": {
"id": {
"title": "Id",
"type": "string",
"required": true
},
"unsecureLockService": {
"title": "Unsecure Lock Service?",
"description": "Will expose the Lock-Service as Switch. Can be used in Automations without confirmation.",
"type": "boolean",
"required": true
},
"unlatchWhenLocked": {
"title": "Unlatch When Locked?",
"description": "When enabled the Door can be unlatched even the Door is locked.",
"type": "boolean",
"required": true
}
}
}
}
}
}
}