-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
1 changed file
with
48 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,48 @@ | ||
{ | ||
"services": { | ||
"join": { | ||
"name": "Join", | ||
"description": "Group player together.", | ||
"fields": { | ||
"master": { | ||
"name": "Master", | ||
"description": "Entity ID of the player that should become the master of the group." | ||
}, | ||
"entity_id": { | ||
"name": "Entity", | ||
"description": "Name of entity that will coordinate the grouping. Platform dependent." | ||
} | ||
} | ||
}, | ||
"unjoin": { | ||
"name": "Unjoin", | ||
"description": "Unjoin the player from a group.", | ||
"fields": { | ||
"entity_id": { | ||
"name": "Entity", | ||
"description": "Name of entity that will be unjoined from their group. Platform dependent." | ||
} | ||
} | ||
}, | ||
"set_sleep_timer": { | ||
"name": "Set sleep timer", | ||
"description": "Set a Bluesound timer. It will increase timer in steps: 15, 30, 45, 60, 90, 0.", | ||
"fields": { | ||
"entity_id": { | ||
"name": "Entity", | ||
"description": "Name(s) of entities that will have a timer set." | ||
} | ||
} | ||
}, | ||
"clear_sleep_timer": { | ||
"name": "Clear sleep timer", | ||
"description": "Clear a Bluesound timer.", | ||
"fields": { | ||
"entity_id": { | ||
"name": "Entity", | ||
"description": "Name(s) of entities that will have the timer cleared." | ||
} | ||
} | ||
} | ||
} | ||
} |