forked from
rocksky.app/rocksky
A decentralized music tracking and discovery platform built on AT Protocol 馃幍
1{
2 "lexicon": 1,
3 "id": "app.rocksky.scrobble.getScrobble",
4 "defs": {
5 "main": {
6 "type": "query",
7 "description": "Get a scrobble by its unique identifier",
8 "parameters": {
9 "type": "params",
10 "required": [
11 "uri"
12 ],
13 "properties": {
14 "uri": {
15 "type": "string",
16 "description": "The unique identifier of the scrobble",
17 "format": "at-uri"
18 }
19 }
20 },
21 "output": {
22 "encoding": "application/json",
23 "schema": {
24 "type": "ref",
25 "ref": "app.rocksky.scrobble.defs#scrobbleViewDetailed"
26 }
27 }
28 }
29 }
30}