atproto blogging
at main 35 lines 854 B view raw
1{ 2 "lexicon": 1, 3 "id": "sh.weaver.graph.bookmark", 4 "defs": { 5 "main": { 6 "type": "record", 7 "description": "Bookmark a notebook or entry for later reading.", 8 "key": "tid", 9 "record": { 10 "type": "object", 11 "required": [ 12 "subject", 13 "createdAt" 14 ], 15 "properties": { 16 "createdAt": { 17 "type": "string", 18 "format": "datetime" 19 }, 20 "note": { 21 "type": "string", 22 "description": "Optional private note about why you saved this.", 23 "maxLength": 3000, 24 "maxGraphemes": 300 25 }, 26 "subject": { 27 "type": "ref", 28 "description": "The notebook or entry being bookmarked.", 29 "ref": "com.atproto.repo.strongRef" 30 } 31 } 32 } 33 } 34 } 35}