atproto blogging
1{
2 "lexicon": 1,
3 "id": "sh.weaver.notebook.page",
4 "defs": {
5 "main": {
6 "type": "record",
7 "description": "A grouping of entries in a notebook, intended to be displayed as a single page.",
8 "key": "tid",
9 "record": {
10 "type": "object",
11 "required": ["notebook", "authors", "entryList"],
12 "properties": {
13 "title": { "type": "ref", "ref": "sh.weaver.notebook.defs#title" },
14 "tags": { "type": "ref", "ref": "sh.weaver.notebook.defs#tags" },
15 "notebook": {
16 "type": "ref",
17 "ref": "com.atproto.repo.strongRef",
18 "description": "The notebook this page belongs to."
19 },
20 "entryList": {
21 "type": "array",
22 "items": {
23 "type": "ref",
24 "ref": "com.atproto.repo.strongRef"
25 }
26 },
27 "createdAt": {
28 "type": "string",
29 "format": "datetime",
30 "description": "Client-declared timestamp when this was originally created."
31 }
32 }
33 }
34 }
35 }
36}