Monorepo for Tangled
1{
2 "lexicon": 1,
3 "id": "sh.tangled.feed.reaction",
4 "needsCbor": true,
5 "needsType": true,
6 "defs": {
7 "main": {
8 "type": "record",
9 "key": "tid",
10 "record": {
11 "type": "object",
12 "required": [
13 "subject",
14 "reaction",
15 "createdAt"
16 ],
17 "properties": {
18 "subject": {
19 "type": "string",
20 "format": "at-uri"
21 },
22 "subjectDid": {
23 "type": "string",
24 "format": "did"
25 },
26 "reaction": {
27 "type": "string",
28 "enum": [ "👍", "👎", "😆", "🎉", "🫤", "❤️", "🚀", "👀" ]
29 },
30 "createdAt": {
31 "type": "string",
32 "format": "datetime"
33 }
34 }
35 }
36 }
37 }
38}