atproto blogging
1{
2 "lexicon": 1,
3 "id": "sh.weaver.graph.listitem",
4 "defs": {
5 "main": {
6 "type": "record",
7 "description": "An item in a list.",
8 "key": "tid",
9 "record": {
10 "type": "object",
11 "required": [
12 "subject",
13 "list",
14 "createdAt"
15 ],
16 "properties": {
17 "createdAt": {
18 "type": "string",
19 "format": "datetime"
20 },
21 "list": {
22 "type": "string",
23 "description": "Reference to the list record.",
24 "format": "at-uri"
25 },
26 "subject": {
27 "type": "ref",
28 "description": "The notebook or entry being added to the list.",
29 "ref": "com.atproto.repo.strongRef"
30 }
31 }
32 }
33 }
34 }
35}