generated from homebridge/homebridge-plugin-template
-
Notifications
You must be signed in to change notification settings - Fork 0
/
config.schema.json
53 lines (53 loc) · 1.21 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
{
"pluginAlias": "BeParkGarageDoor",
"pluginType": "platform",
"singular": "BePark Garage Door",
"plural": "BePark Garage Doors",
"settings": [
{
"field": "platform",
"value": "BeParkGarageDoor",
"type": "hidden"
},
{
"field": "name",
"default": "BeParkGarageDoor",
"required": true,
"type": "text",
"label": "Name",
"placeholder": "BeParkGarageDoor"
},
{
"field": "username",
"default": "",
"required": true,
"type": "text",
"label": "Username",
"placeholder": "Enter your BePark username"
},
{
"field": "password",
"default": "",
"required": true,
"type": "password",
"label": "Password",
"placeholder": "Enter your BePark password"
},
{
"field": "client_secret",
"default": "",
"required": true,
"type": "password",
"label": "Client Secret",
"placeholder": "Enter your BePark client secret"
},
{
"field": "autoCloseDuration",
"default": 5,
"required": true,
"type": "number",
"label": "Auto-close Duration (seconds)",
"placeholder": "Time in seconds to auto-close the door"
}
]
}