atproto blogging
1{
2 "lexicon": 1,
3 "id": "sh.weaver.edit.root",
4 "defs": {
5 "main": {
6 "type": "record",
7 "description": "The starting point for edit history on a notebook.",
8 "key": "tid",
9 "record": {
10 "type": "object",
11 "required": ["doc", "snapshot"],
12 "properties": {
13 "snapshot": {
14 "type": "blob",
15 "accept": ["*/*"],
16 "maxSize": 30000000
17 },
18 "doc": {
19 "type": "ref",
20 "ref": "sh.weaver.edit.defs#docRef"
21 }
22 }
23 }
24 }
25 }
26}