A decentralized music tracking and discovery platform built on AT Protocol 馃幍
at feat/pgpull 30 lines 785 B view raw
1{ 2 "lexicon": 1, 3 "id": "app.rocksky.player.getCurrentlyPlaying", 4 "defs": { 5 "main": { 6 "type": "query", 7 "description": "Get the currently playing track", 8 "parameters": { 9 "type": "params", 10 "properties": { 11 "playerId": { 12 "type": "string" 13 }, 14 "actor": { 15 "type": "string", 16 "description": "Handle or DID of the actor to retrieve the currently playing track for. If not provided, defaults to the current user.", 17 "format": "at-identifier" 18 } 19 } 20 }, 21 "output": { 22 "encoding": "application/json", 23 "schema": { 24 "type": "ref", 25 "ref": "app.rocksky.player.defs#currentlyPlayingViewDetailed" 26 } 27 } 28 } 29 } 30}