-
Notifications
You must be signed in to change notification settings - Fork 6
/
config.schema.json
106 lines (106 loc) · 2.77 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
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
{
"pluginAlias": "Flair",
"pluginType": "platform",
"singular": true,
"schema": {
"type": "object",
"properties": {
"clientId": {
"title": "Client ID",
"type": "string",
"description": "Client ID obtained from Flair Support",
"required": true,
"default": ""
},
"clientSecret": {
"title": "Client Secret",
"type": "string",
"description": "Client Secret obtained from Flair Support",
"required": true,
"default": ""
},
"username": {
"title": "username",
"type": "string",
"description": "Username used to access Flair",
"required": true,
"default": ""
},
"password": {
"title": "password",
"type": "string",
"description": "Password used to access Flair",
"required": true,
"default": ""
},
"pollInterval": {
"title": "Poll Interval",
"type": "number",
"description": "How often the plugin should poll the Flair API for updates.",
"required": true,
"default": 60
},
"hidePuckSensors": {
"title": "Hide puck sensors",
"description": "Hides the Puck Sensors",
"type": "boolean",
"required": false,
"default": true
},
"hidePuckRooms": {
"title": "Hide room thermostats",
"description": "Hides the Puck Rooms (thermostats)",
"type": "boolean",
"required": false,
"default": false
},
"hidePrimaryStructure": {
"title": "Hide primary structure",
"description": "Hides the primary structure thermostat",
"type": "boolean",
"required": false,
"default": true
},
"hideVentTemperatureSensors": {
"title": "Hide vent temperature sensors",
"description": "Hides the Vent Temperature Sensors",
"type": "boolean",
"required": false,
"default": false
},
"ventAccessoryType": {
"title": "Vent Accessory Type",
"description": "Controls how the vents should show up in HomeKit",
"type": "string",
"required": true,
"default": "windowCovering",
"oneOf": [
{
"title": "Window Covering",
"enum": [
"windowCovering"
]
},
{
"title": "Fan",
"enum": [
"fan"
]
},
{
"title": "Air Purifier",
"enum": [
"airPurifier"
]
},
{
"title": "Hidden (if you just want to use Flair Auto with Rooms)",
"enum": [
"hidden"
]
}
]
}
}
}
}