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.createPlaylist",
4 "defs": {
5 "main": {
6 "type": "procedure",
7 "description": "Create a new playlist",
8 "parameters": {
9 "type": "params",
10 "required": [
11 "name"
12 ],
13 "properties": {
14 "name": {
15 "type": "string",
16 "description": "The name of the playlist"
17 },
18 "description": {
19 "type": "string",
20 "description": "A brief description of the playlist"
21 }
22 }
23 }
24 }
25 }
26}