atproto blogging
1{
2 "lexicon": 1,
3 "id": "sh.weaver.notebook.getNotebookDetail",
4 "defs": {
5 "main": {
6 "type": "query",
7 "description": "Get a notebook with its entries in a single call.",
8 "parameters": {
9 "type": "params",
10 "required": ["notebook"],
11 "properties": {
12 "notebook": { "type": "string", "format": "at-uri" },
13 "entryLimit": { "type": "integer", "minimum": 1, "maximum": 100, "default": 50 },
14 "entryCursor": { "type": "string" }
15 }
16 },
17 "output": {
18 "encoding": "application/json",
19 "schema": {
20 "type": "object",
21 "required": ["notebook", "entries"],
22 "properties": {
23 "notebook": { "type": "ref", "ref": "sh.weaver.notebook.defs#notebookView" },
24 "entries": {
25 "type": "array",
26 "items": { "type": "ref", "ref": "sh.weaver.notebook.defs#bookEntryView" }
27 },
28 "entryCursor": { "type": "string" }
29 }
30 }
31 },
32 "errors": [
33 { "name": "NotebookNotFound" }
34 ]
35 }
36 }
37}