-
Notifications
You must be signed in to change notification settings - Fork 0
/
config.schema.json
45 lines (45 loc) · 992 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
41
42
43
44
45
{
"pluginAlias": "kumo-local",
"pluginType": "accessory",
"schema": {
"type": "object",
"properties": {
"name": {
"title": "Unit Name",
"type": "string",
"default": "Mitsubishi Split",
"required": true
},
"unitIP": {
"title": "Unit IP",
"type": "string",
"default": "0.0.0.0",
"required": true
},
"Kcryptopassword": {
"title": "Encrypted Password from Kumo",
"type": "string",
"default": "",
"required": true
},
"KCS": {
"title": "Crypto Secret from Kumo",
"type": "string",
"default": "",
"required": true
},
"manufacturer": {
"title": "Manufacturer String",
"type": "string",
"default": "",
"required": false
},
"model": {
"title": "Model String",
"type": "string",
"default": "",
"required": false
}
}
}
}