-
-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathconfig.schema.json
86 lines (86 loc) · 2.55 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
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
{
"pluginAlias": "LevoitHumidifiers",
"pluginType": "platform",
"singular": true,
"schema": {
"type": "object",
"properties": {
"name": {
"title": "Name",
"type": "string",
"required": true,
"default": "Levoit Humidifiers"
},
"email": {
"title": "Email",
"type": "string",
"required": true,
"description": "VeSync's account email."
},
"password": {
"title": "Password",
"type": "string",
"required": true,
"description": "VeSync's account password"
},
"accessories": {
"type": "object",
"properties": {
"humidity_sensor": {
"title": "Humidity Sensor",
"type": "boolean",
"default": true,
"description": "Expose humidity sensor from device(s) to HomeKit"
},
"mist": {
"title": "Mist Fan",
"type": "boolean",
"default": true,
"description": "Enable fan for the Mist"
},
"warm_mist": {
"title": "Warm Mist Fan",
"type": "boolean",
"default": true,
"description": "Enable fan for Warm Mist"
},
"sleep_mode": {
"title": "Sleep Mode Switch",
"type": "boolean",
"default": true,
"description": "Enable switch for Sleep Mode"
},
"display": {
"title": "Display Switch",
"type": "boolean",
"default": true,
"description": "Enable switch for the Display"
},
"night_light": {
"title": "Night Light Slider",
"type": "boolean",
"default": true,
"description": "Enable brightness slider / switch for the Night Light"
},
"auto_pro": {
"title": "Auto Pro Mode Switch",
"type": "boolean",
"default": true,
"description": "Enables switch to turn on / off Auto Pro Mode on LEH_S601S / LUH_O601S models"
}
}
},
"options": {
"type": "object",
"properties": {
"showOffWhenDisconnected": {
"title": "Show Off When Disconnected",
"type": "boolean",
"default": false,
"description": "When set to true, HomeKit will display unresponsive humidifiers as Off instead of Not Responding. Read the \"Note to Seasonal Humidifier Users\" in the README for more info."
}
}
}
}
}
}