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.insertDirectory",
4 "defs": {
5 "main": {
6 "type": "procedure",
7 "description": "Insert a directory into a playlist",
8 "parameters": {
9 "type": "params",
10 "required": [
11 "uri",
12 "directory"
13 ],
14 "properties": {
15 "uri": {
16 "type": "string",
17 "description": "The URI of the playlist to start",
18 "format": "at-uri"
19 },
20 "directory": {
21 "type": "string",
22 "description": "The directory (id) to insert into the playlist"
23 },
24 "position": {
25 "type": "integer",
26 "description": "The position in the playlist to insert the directory at, if not specified, the directory will be appended"
27 }
28 }
29 }
30 }
31 }
32}