forked from Droccal/homebridge-lay-z-spa
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathconfig.schema.json
30 lines (30 loc) · 848 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
{
"pluginAlias": "Lay-Z-Spa",
"pluginType": "platform",
"singular": true,
"headerDisplay": "Control the heating and massage of your lay-z whirlpool/hot tub",
"footerDisplay": "PLEASE BE VERY CAREFUL USING THE PLUGIN HERE, YOU COULD BREAK YOUR LAY-Z-SPA!!!",
"schema": {
"type": "object",
"properties": {
"name": {
"title": "Name",
"type": "string",
"default": "Whirlpool",
"required": true
},
"username": {
"title": "Lay-Z Username (email)",
"type": "string",
"required": true,
"description": "Email address for your lay-z account (to retrieve api key)"
},
"password": {
"title": "Lay-Z Password",
"type": "string",
"required": true,
"description": "Password for your lay-z account"
}
}
}
}