atproto blogging
1{
2 "lexicon": 1,
3 "id": "sh.weaver.graph.follow",
4 "defs": {
5 "main": {
6 "type": "record",
7 "description": "Request to follow an author. Requires acceptance to be active.",
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 "subject": {
21 "type": "string",
22 "description": "DID of the author to follow.",
23 "format": "did"
24 }
25 }
26 }
27 }
28 }
29}