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.removeTrack",
4 "defs": {
5 "main": {
6 "type": "procedure",
7 "description": "Remove a track from a playlist",
8 "parameters": {
9 "type": "params",
10 "required": [
11 "uri",
12 "position"
13 ],
14 "properties": {
15 "uri": {
16 "type": "string",
17 "description": "The URI of the playlist to remove the track from",
18 "format": "at-uri"
19 },
20 "position": {
21 "type": "integer",
22 "description": "The position of the track to remove in the playlist"
23 }
24 }
25 }
26 }
27 }
28}