forked from 0x5e/homebridge-tuya-platform
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathconfig.schema.json
194 lines (194 loc) · 4.56 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
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
{
"pluginAlias": "TuyaPlatform",
"pluginType": "platform",
"singular": true,
"headerDisplay": "",
"footerDisplay": "",
"schema": {
"type": "object",
"properties": {
"options": {
"title": "Project Info",
"type": "object",
"required": true,
"properties": {
"projectType": {
"title": "Project Type (Development Method)",
"type": "string",
"default": "2",
"oneOf": [{
"title": "Custom",
"enum": ["1"]
}, {
"title": "Smart Home",
"enum": ["2"]
}],
"required": true
},
"endpoint": {
"title": "Endpoint URL",
"type": "string",
"format": "url",
"condition": {
"functionBody": "return model.options.projectType === '1';"
}
},
"accessId": {
"title": "Access ID",
"type": "string",
"required": true
},
"accessKey": {
"title": "Access Secret",
"type": "string",
"required": true
},
"countryCode": {
"title": "Country Code",
"type": "integer",
"minimum": 1,
"condition": {
"functionBody": "return model.options.projectType === '2';"
}
},
"username": {
"title": "Username",
"type": "string",
"condition": {
"functionBody": "return model.options.projectType === '2';"
}
},
"password": {
"title": "Password",
"type": "string",
"condition": {
"functionBody": "return model.options.projectType === '2';"
}
},
"appSchema": {
"title": "App",
"type": "string",
"default": "tuyaSmart",
"oneOf": [{
"title": "Tuya Smart",
"enum": ["tuyaSmart"]
},
{
"title": "Smart Life",
"enum": ["smartlife"]
}
],
"condition": {
"functionBody": "return model.options.projectType === '2';"
}
},
"homeWhitelist": {
"title": "Whitelisted Home IDs",
"description": "An optional list of Home IDs to match. If blank, all homes are matched.",
"type": "array",
"items": {
"title": "Home ID",
"type": "integer"
},
"condition": {
"functionBody": "return model.options.projectType === '2';"
}
},
"deviceOverrides": {
"title": "Device Overriding Configs",
"type": "array",
"items": {
"type": "object",
"properties": {
"id": {
"title": "ID",
"description": "Device ID or Product ID or `global`",
"type": "string",
"required": true
},
"category": {
"title": "Category",
"description": "Category Code or `hidden`",
"type": "string"
},
"schema": {
"title": "Schema Overriding Configs",
"type": "array",
"items": {
"type": "object",
"properties": {
"oldCode": {
"title": "Original Schema Code",
"type": "string",
"required": true
},
"code": {
"title": "New Schema Code",
"type": "string",
"required": true
},
"type": {
"title": "New Schema Type",
"type": "string",
"default": "Boolean",
"oneOf": [{
"title": "Boolean",
"enum": ["Boolean"]
}, {
"title": "Integer",
"enum": ["Integer"]
}, {
"title": "Enum",
"enum": ["Enum"]
}, {
"title": "String",
"enum": ["String"]
}, {
"title": "Json",
"enum": ["Json"]
}, {
"title": "Raw",
"enum": ["Raw"]
}]
},
"property": {
"title": "New Schema Property",
"type": "object",
"properties": {
"min": {
"title": "min",
"type": "integer"
},
"max": {
"title": "max",
"type": "integer"
},
"scale": {
"title": "scale",
"type": "integer"
},
"step": {
"title": "step",
"type": "integer"
},
"range": {
"title": "range",
"type": "array",
"items": {
"title": "value",
"type": "string"
}
}
}
}
}
}
}
}
}
}
}
}
}
}
}