atproto blogging
at main 31 lines 624 B view raw
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": [ 12 "doc", 13 "snapshot" 14 ], 15 "properties": { 16 "doc": { 17 "type": "ref", 18 "ref": "sh.weaver.edit.defs#docRef" 19 }, 20 "snapshot": { 21 "type": "blob", 22 "accept": [ 23 "*/*" 24 ], 25 "maxSize": 30000000 26 } 27 } 28 } 29 } 30 } 31}