forked from
rocksky.app/rocksky
A decentralized music tracking and discovery platform built on AT Protocol 馃幍
1{
2 "lexicon": 1,
3 "id": "app.rocksky.player.defs",
4 "defs": {
5 "currentlyPlayingViewDetailed": {
6 "type": "object",
7 "properties": {
8 "title": {
9 "type": "string",
10 "description": "The title of the currently playing track"
11 }
12 }
13 },
14 "playbackQueueViewDetailed": {
15 "type": "object",
16 "properties": {
17 "tracks": {
18 "type": "array",
19 "items": {
20 "type": "ref",
21 "ref": "app.rocksky.song.defs.songViewBasic"
22 }
23 }
24 }
25 }
26 }
27}