generated from homebridge/homebridge-plugin-template
-
Notifications
You must be signed in to change notification settings - Fork 16
/
config.schema.json
40 lines (40 loc) · 924 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
38
39
40
{
"pluginAlias": "HomebridgeSamsungACSmartThings",
"pluginType": "platform",
"singular": true,
"schema": {
"type": "object",
"properties": {
"name": {
"title": "Name",
"type": "string",
"required": true,
"default": "homebridge-samsung-air-conditioner-smart-things"
},
"token": {
"title": "Token",
"type": "string",
"required": true,
"default": ""
},
"temperatureUnit": {
"title": "Temperature unit",
"type": "string",
"required": true,
"default": "C"
},
"showHumidity": {
"title": "Show humidity values",
"type": "boolean",
"required": true,
"default": false
},
"windFreeSupported": {
"title": "Enable WindFree support",
"type": "boolean",
"required": true,
"default": false
}
}
}
}