A decentralized music tracking and discovery platform built on AT Protocol 馃幍
at feat/pgpull 27 lines 627 B view raw
1{ 2 "lexicon": 1, 3 "id": "app.rocksky.feed.getNowPlayings", 4 "defs": { 5 "main": { 6 "type": "query", 7 "description": "Get all currently playing tracks by users", 8 "parameters": { 9 "type": "params", 10 "properties": { 11 "size": { 12 "type": "integer", 13 "description": "The maximum number of now playing tracks to return.", 14 "minimum": 1 15 } 16 } 17 }, 18 "output": { 19 "encoding": "application/json", 20 "schema": { 21 "type": "ref", 22 "ref": "app.rocksky.feed.defs#nowPlayingsView" 23 } 24 } 25 } 26 } 27}