1{
2 "lexicon": 1,
3 "id": "li.plonk.comment",
4 "defs": {
5 "main": {
6 "type": "record",
7 "key": "tid",
8 "record": {
9 "type": "object",
10 "required": [
11 "content",
12 "createdAt",
13 "post"
14 ],
15 "properties": {
16 "content": {
17 "type": "string",
18 "maxLength": 100000,
19 "maxGraphemes": 10000,
20 "description": "comment body"
21 },
22 "createdAt": {
23 "type": "string",
24 "format": "datetime",
25 "description": "comment creation timestamp"
26 },
27 "post": {
28 "type": "ref",
29 "ref": "com.atproto.repo.strongRef"
30 }
31 }
32 }
33 }
34 }
35}