music on atproto
plyr.fm
1{
2 "lexicon": 1,
3 "id": "fm.plyr.list",
4 "defs": {
5 "main": {
6 "type": "record",
7 "description": "An ordered collection of ATProto records.",
8 "key": "tid",
9 "record": {
10 "type": "object",
11 "required": ["items", "createdAt"],
12 "properties": {
13 "name": {
14 "type": "string",
15 "maxLength": 256,
16 "maxGraphemes": 64
17 },
18 "listType": {
19 "type": "string",
20 "knownValues": ["album", "playlist", "liked"]
21 },
22 "items": {
23 "type": "array",
24 "items": {
25 "type": "ref",
26 "ref": "#item"
27 },
28 "maxLength": 500
29 },
30 "createdAt": {
31 "type": "string",
32 "format": "datetime"
33 },
34 "updatedAt": {
35 "type": "string",
36 "format": "datetime"
37 }
38 }
39 }
40 },
41 "item": {
42 "type": "object",
43 "required": ["subject"],
44 "properties": {
45 "subject": {
46 "type": "ref",
47 "ref": "com.atproto.repo.strongRef"
48 }
49 }
50 }
51 }
52}