music on atproto
plyr.fm
1{
2 "lexicon": 1,
3 "id": "fm.plyr.like",
4 "defs": {
5 "main": {
6 "type": "record",
7 "description": "A like on a plyr.fm track.",
8 "key": "tid",
9 "record": {
10 "type": "object",
11 "required": ["subject", "createdAt"],
12 "properties": {
13 "subject": {
14 "type": "ref",
15 "ref": "com.atproto.repo.strongRef",
16 "description": "Reference to the track being liked (uri + cid)."
17 },
18 "createdAt": {
19 "type": "string",
20 "format": "datetime",
21 "description": "Timestamp when the like was created."
22 }
23 }
24 }
25 }
26 }
27}