atproto blogging
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": ["subject", "createdAt"],
12 "properties": {
13 "subject": {
14 "type": "ref",
15 "ref": "com.atproto.repo.strongRef",
16 "description": "The notebook or entry being bookmarked."
17 },
18 "createdAt": {
19 "type": "string",
20 "format": "datetime"
21 },
22 "note": {
23 "type": "string",
24 "maxGraphemes": 300,
25 "maxLength": 3000,
26 "description": "Optional private note about why you saved this."
27 }
28 }
29 }
30 }
31 }
32}