forked from nt0xa/homebridge-mi-humidifier
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathconfig.schema.json
67 lines (67 loc) · 1.41 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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
{
"pluginAlias": "MiHumidifier",
"pluginType": "accessory",
"schema": {
"type": "object",
"properties": {
"name": {
"title": "Name",
"type": "string",
"default": "Humidifier",
"minLength": 1
},
"ip": {
"title": "IP",
"type": "string",
"required": true
},
"token": {
"title": "Token",
"type": "string",
"pattern": "^[a-f\\d]{32}$",
"required": true
},
"model": {
"title": "Model",
"type": "string",
"oneOf": [
{
"title": "v1",
"enum": ["v1"]
},
{
"title": "ca1",
"enum": ["ca1"]
},
{
"title": "cb1",
"enum": ["cb1"]
}
],
"default": "v1"
},
"showTemperature": {
"title": "Show temperature sensor",
"type": "boolean",
"default": false
},
"nameTemperature": {
"title": "Temperature sensor name",
"type": "string",
"default": "Temperature",
"minLength": 1
},
"showHumidity": {
"title": "Show humidity sensor",
"type": "boolean",
"default": false
},
"nameHumidity": {
"title": "Humidity sensor name",
"type": "string",
"default": "Humidity",
"minLength": 1
}
}
}
}