generated from homebridge/homebridge-plugin-template
-
Notifications
You must be signed in to change notification settings - Fork 0
/
config.schema.json
32 lines (32 loc) · 919 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
{
"pluginAlias": "iZone3AirConditioner",
"pluginType": "platform",
"headerDisplay": "This plugin supports iZone 3 and MyZone 3 air conditioner systems using v1.0 of the API.",
"footerDisplay": "For help, please visit the [GitHub repository](https://github.com/jellybeansoup/homebridge-izone3-aircon).",
"singular": true,
"schema": {
"type": "object",
"properties": {
"name": {
"title": "Name",
"type": "string",
"required": true,
"default": "Air Conditioner"
},
"ip": {
"title": "IP Address",
"type": "string",
"required": true,
"placeholder": "192.168.XXX.XXX",
"format": "ipv4",
"description": "Local, static IP address of the controller."
},
"updateInterval": {
"title": "Update Interval",
"type": "integer",
"description": "The interval (in milliseconds) at which updates of the zones are requested.",
"default": "60000"
}
}
}
}