forked from ryanfroese/homebridge-smartcielo
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathconfig.schema.json
37 lines (37 loc) · 978 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": "cielo",
"pluginType": "platform",
"singular": true,
"schema": {
"type": "object",
"properties": {
"username": {
"title": "Username (email)",
"type": "string",
"required": true
},
"password": {
"title": "Password",
"type": "string",
"required": true
},
"ip": {
"title": "Public IP Address",
"type": "string",
"description": "Your public IP is used as a session identifier. Go to https://whatismyipaddress.com/ to get.",
"required": true
},
"macAddresses": {
"title": "HVAC MAC Addresses",
"description": "List of the MAC Addresses of each HVAC unit you want to the plugin to connect",
"type": "array",
"items": {
"title": "MAC Address",
"description": "No colons, all caps",
"type": "string",
"pattern": "^[A-F0-9]{12}$"
}
}
}
}
}