atproto blogging
1{
2 "lexicon": 1,
3 "id": "sh.weaver.graph.subscribe",
4 "defs": {
5 "main": {
6 "type": "record",
7 "description": "Request to subscribe to a notebook. Requires acceptance to be active.",
8 "key": "tid",
9 "record": {
10 "type": "object",
11 "required": [
12 "notebook",
13 "createdAt"
14 ],
15 "properties": {
16 "createdAt": {
17 "type": "string",
18 "format": "datetime"
19 },
20 "notebook": {
21 "type": "string",
22 "description": "URI of the notebook to subscribe to.",
23 "format": "at-uri"
24 }
25 }
26 }
27 }
28 }
29}