forked from
rocksky.app/rocksky
A decentralized music tracking and discovery platform built on AT Protocol 馃幍
1{
2 "lexicon": 1,
3 "id": "app.rocksky.charts.defs",
4 "defs": {
5 "chartsView": {
6 "type": "object",
7 "properties": {
8 "scrobbles": {
9 "type": "array",
10 "items": {
11 "type": "ref",
12 "ref": "app.rocksky.charts.defs#scrobbleViewBasic"
13 }
14 }
15 }
16 },
17 "scrobbleViewBasic": {
18 "type": "object",
19 "properties": {
20 "date": {
21 "type": "string",
22 "description": "The date of the scrobble.",
23 "format": "datetime"
24 },
25 "count": {
26 "type": "integer",
27 "description": "The number of scrobbles on this date."
28 }
29 }
30 }
31 }
32}