atproto blogging
1{
2 "lexicon": 1,
3 "id": "sh.weaver.notebook.authors",
4 "defs": {
5 "main": {
6 "type": "record",
7 "description": "Authors of a Weaver notebook.",
8 "key": "tid",
9 "record": {
10 "type": "object",
11 "required": ["authorList"],
12 "properties": {
13 "authorList": {
14 "type": "array",
15 "items": {
16 "type": "ref",
17 "ref": "#authorListItem"
18 }
19 },
20 "createdAt": { "type": "string", "format": "datetime" }
21 }
22 }
23 },
24 "authorListItem": {
25 "type": "object",
26 "description": "A single author in a Weaver notebook.",
27 "required": ["profile, index"],
28 "properties": {
29 "profile": {
30 "type": "union",
31 "refs": ["app.bsky.actor.defs#profileViewBasic", "sh.weaver.actor.defs#profileView"]
32 },
33 "index": { "type": "integer" }
34 }
35 }
36 }
37}