atproto blogging
1{
2 "lexicon": 1,
3 "id": "com.deckbelcher.social.like",
4 "defs": {
5 "main": {
6 "type": "record",
7 "description": "Record declaring a 'like' of a piece of content (decklist, reply, etc).",
8 "key": "tid",
9 "record": {
10 "type": "object",
11 "required": [
12 "subject",
13 "createdAt"
14 ],
15 "properties": {
16 "createdAt": {
17 "type": "string",
18 "description": "Timestamp when the like was created.",
19 "format": "datetime"
20 },
21 "subject": {
22 "type": "ref",
23 "description": "Reference to the content being liked.",
24 "ref": "com.atproto.repo.strongRef"
25 }
26 }
27 }
28 }
29 }
30}