forked from nfarina/homebridge-sonos
-
Notifications
You must be signed in to change notification settings - Fork 0
/
config.schema.json
31 lines (31 loc) · 985 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": "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."
}
}
},
"footerDisplay": "Please raise any issues on the [project page](https://github.com/nfarina/homebridge-sonos/issues)."
}