-
Notifications
You must be signed in to change notification settings - Fork 52
/
config.schema.json
45 lines (45 loc) · 1.5 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
{
"pluginAlias": "Sonos",
"pluginType": "accessory",
"singular": false,
"headerDisplay": "For Details on how to setup see [project page](https://github.com/nfarina/homebridge-sonos#readme).",
"schema": {
"type": "object",
"properties": {
"name": {
"title": "Name",
"type": "string",
"default": "Bedroom Speakers",
"required": true,
"description": "Speaker name that Siri will recognize."
},
"room": {
"title": "Room",
"type": "string",
"default": "Bedroom",
"required": true,
"description": "This must match the room name in Sonos exactly."
},
"mute": {
"title": "Mute",
"type": "boolean",
"description": "This is optional. Checking this will mute/unmute the speaker instead of a stop/play."
},
"groupCacheLifetime": {
"title": "Group Cache Lifetime",
"type": "integer",
"default": 15,
"required": false,
"description": "Amount of time (in seconds) before refreshing the Sonos goup configuration."
},
"deviceCacheLifetime": {
"title": "Device Cache Lifetime",
"type": "integer",
"default": 3600,
"required": false,
"description": "Amount of time (in seconds) before refreshing detailed information about a given Sonos device on the network."
}
}
},
"footerDisplay": "Please raise any issues on the [project page](https://github.com/nfarina/homebridge-sonos/issues)."
}