A decentralized music tracking and discovery platform built on AT Protocol 馃幍
at feat/pgpull 42 lines 1.1 kB view raw
1{ 2 "lexicon": 1, 3 "id": "app.rocksky.charts.getScrobblesChart", 4 "defs": { 5 "main": { 6 "type": "query", 7 "description": "Get the scrobbles chart", 8 "parameters": { 9 "type": "params", 10 "properties": { 11 "did": { 12 "type": "string", 13 "description": "The DID or handle of the actor", 14 "format": "at-identifier" 15 }, 16 "artisturi": { 17 "type": "string", 18 "description": "The URI of the artist to filter by", 19 "format": "at-uri" 20 }, 21 "albumuri": { 22 "type": "string", 23 "description": "The URI of the album to filter by", 24 "format": "at-uri" 25 }, 26 "songuri": { 27 "type": "string", 28 "description": "The URI of the track to filter by", 29 "format": "at-uri" 30 } 31 } 32 }, 33 "output": { 34 "encoding": "application/json", 35 "schema": { 36 "type": "ref", 37 "ref": "app.rocksky.charts.defs#chartsView" 38 } 39 } 40 } 41 } 42}