generated from homebridge/homebridge-plugin-template
-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathconfig.schema.json
48 lines (48 loc) · 1.48 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
{
"pluginAlias": "PanasonicHeatPumpHomebridgePlugin",
"pluginType": "platform",
"headerDisplay": "Supports only Panasonic AQUAREA Heat Pump, that has a cloud adapter installed .\n\nCheck out the [Setup Guide](https://github.com/bimusiek/homebridge-panasonic-heat-pump#setup-the-app)",
"footerDisplay": "**Caution!** It is recommended to setup another login for the *Comfort Cloud* and share your home to that login. [Read how](https://github.com/bimusiek/homebridge-panasonic-heat-pump#sharing-panasonic-heatpump-with-another-account)",
"singular": true,
"schema": {
"type": "object",
"properties": {
"email": {
"title": "Email",
"type": "string",
"required": true,
"default": ""
},
"password": {
"title": "Password",
"type": "string",
"required": true,
"default": ""
},
"enableOutdoorTempSensor": {
"title": "Show Outdoor Temp sensor",
"type": "boolean",
"required": false,
"default": true
},
"enableEcoModeSwitch": {
"title": "Show ECO MODE switch",
"type": "boolean",
"required": false,
"default": false
},
"enableComfortModeSwitch": {
"title": "Show COMFORT MODE switch",
"type": "boolean",
"required": false,
"default": false
},
"refreshTime": {
"title": "Refresh time",
"type": "integer",
"minimum": 5,
"default": 5
}
}
}
}