forked from
rocksky.app/rocksky
A decentralized music tracking and discovery platform built on AT Protocol 馃幍
1{
2 "lexicon": 1,
3 "id": "app.rocksky.playlist.startPlaylist",
4 "defs": {
5 "main": {
6 "type": "procedure",
7 "description": "Start a playlist",
8 "parameters": {
9 "type": "params",
10 "required": [
11 "uri"
12 ],
13 "properties": {
14 "uri": {
15 "type": "string",
16 "description": "The URI of the playlist to start",
17 "format": "at-uri"
18 },
19 "shuffle": {
20 "type": "boolean",
21 "description": "Whether to shuffle the playlist when starting it"
22 },
23 "position": {
24 "type": "integer",
25 "description": "The position in the playlist to start from, if not specified, starts from the beginning"
26 }
27 }
28 }
29 }
30 }
31}