music on atproto
plyr.fm
1{
2 "lexicon": 1,
3 "id": "fm.plyr.comment",
4 "defs": {
5 "main": {
6 "type": "record",
7 "description": "A timed comment on a plyr.fm track, anchored to a playback position.",
8 "key": "tid",
9 "record": {
10 "type": "object",
11 "required": ["subject", "text", "timestampMs", "createdAt"],
12 "properties": {
13 "subject": {
14 "type": "ref",
15 "ref": "com.atproto.repo.strongRef",
16 "description": "Reference to the track being commented on (uri + cid)."
17 },
18 "text": {
19 "type": "string",
20 "description": "The comment text content.",
21 "minLength": 1,
22 "maxLength": 1000
23 },
24 "timestampMs": {
25 "type": "integer",
26 "description": "Playback position in milliseconds when the comment was made.",
27 "minimum": 0
28 },
29 "createdAt": {
30 "type": "string",
31 "format": "datetime",
32 "description": "Timestamp when the comment was created."
33 },
34 "updatedAt": {
35 "type": "string",
36 "format": "datetime",
37 "description": "Timestamp when the comment was last edited."
38 }
39 }
40 }
41 }
42 }
43}