-
Notifications
You must be signed in to change notification settings - Fork 6
/
config.schema.json
60 lines (60 loc) · 1.78 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
{
"pluginAlias": "KAKU-ICS2000",
"pluginType": "platform",
"singular": true,
"schema": {
"type": "object",
"properties": {
"name": {
"title": "The name you want to give your ICS-2000",
"type": "string",
"required": true,
"default": "ICS-2000"
},
"email": {
"title": "The email of your Klik Aan Klik Uit account",
"type": "string",
"required": true,
"default": ""
},
"password": {
"title": "The password of your Klik Aan Klik Uit account",
"type": "string",
"required": true,
"default": ""
},
"entityBlacklist": {
"title": "A list of entity ids (ids of devices and scenes) you do not want to appear in HomeKit",
"type": "array",
"required": false
},
"localBackupAddress": {
"title": "The ip address of your ICS-2000 in case it can't be automatically found in the network",
"type": "string",
"required": false
},
"hideReloadSwitch": {
"title": "Hide the reload switch",
"type": "boolean",
"required": false,
"default": false
},
"showScenes": {
"title": "Set to true if you wan to show scenes as devices. If false, scenes are not shown",
"type": "boolean",
"required": false,
"default": false
},
"deviceConfigOverrides": {
"title": "An object used to override the content of DeviceConfigs.ts.",
"type": "object",
"required": false
},
"discoverMessage": {
"title": "The HEX message you want to use to discover your local ICS-2000. If not provided, the message hardcoded in the code is used",
"type": "string",
"required": false
}
}
}
}