generated from homebridge/homebridge-plugin-template
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathconfig.schema.json
29 lines (29 loc) · 835 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
{
"pluginAlias": "MertikFireplace",
"pluginType": "platform",
"singular": true,
"headerDisplay": "Fireplaces are exposed as separate accessories, each fireplace needs to be configured correctly, with a static ip.",
"schema": {
"fireplaces": {
"type": "array",
"items": {
"title": "Fireplace",
"type": "object",
"properties": {
"name": {
"title": "Name of the fireplace",
"type": "string",
"placeholder": "Fireplace"
},
"ip": {
"title": "IP of the devices, should be static",
"type": "string",
"placeholder": "192.168.x.x",
"required": true,
"description": "See: https://github.com/tritter/homebridge-mertik-fireplace"
}
}
}
}
}
}