-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathconfig.schema.json
31 lines (31 loc) · 977 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
{
"pluginAlias": "UEBoomSpeaker",
"pluginType": "accessory",
"schema": {
"type": "object",
"properties": {
"name": {
"title": "Name",
"type": "string",
"required": true,
"default": "Bathroom Speaker",
"description": "The name that will appear in your homebridge log."
},
"speaker": {
"title": "Speaker",
"type": "string",
"placeholder": "C0:28:8D:45:28:55",
"pattern": "^([a-fA-F0-9]{2}:){5}[a-fA-F0-9]{2}$",
"required": true,
"description": "Your UEBoom mac address."
},
"host": {
"title": "Host",
"type": "string",
"placeholder": "4098ADA356C4",
"required": true,
"description": "Your UEBoom host."
}
}
}
}