{ "lexicon": 1, "id": "sh.weaver.notebook.getNotebookDetail", "defs": { "main": { "type": "query", "description": "Get a notebook with its entries in a single call.", "parameters": { "type": "params", "required": ["notebook"], "properties": { "notebook": { "type": "string", "format": "at-uri" }, "entryLimit": { "type": "integer", "minimum": 1, "maximum": 100, "default": 50 }, "entryCursor": { "type": "string" } } }, "output": { "encoding": "application/json", "schema": { "type": "object", "required": ["notebook", "entries"], "properties": { "notebook": { "type": "ref", "ref": "sh.weaver.notebook.defs#notebookView" }, "entries": { "type": "array", "items": { "type": "ref", "ref": "sh.weaver.notebook.defs#bookEntryView" } }, "entryCursor": { "type": "string" } } } }, "errors": [ { "name": "NotebookNotFound" } ] } } }