-
-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathconfig.schema.json
53 lines (53 loc) · 1.81 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
{
"pluginAlias": "HomebridgeiCloud",
"pluginType": "platform",
"singular": true,
"headerDisplay": "Plugin to expose 'Find My Device' functionality",
"footerDisplay": "For more information, see the [README.md](https://github.com/steveredden/homebridge-icloud/blob/main/README.md)",
"schema": {
"type": "object",
"properties": {
"name": {
"type": "string",
"default": "iCloud",
"description": "The name that will appear in your homebridge log"
},
"username": {
"title": "Apple ID",
"type": "string",
"description": "Email address or Apple ID",
"placeholder": "yourname@apple.com",
"required": true
},
"password": {
"title": "Password",
"type": "string",
"description": "Apple Password",
"required": true
},
"devices": {
"type": "array",
"items": {
"type": "object",
"properties": {
"name": {
"title": "Device Identifier",
"type": "string",
"description": "Name/identifier of your device",
"required": true
},
"nameOverride": {
"title": "Accessory Name Override",
"type": "string"
}
}
}
},
"debug": {
"title": "Enable debug logs",
"type": "boolean",
"default": ""
}
}
}
}