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