{ "lexicon": 1, "id": "sh.weaver.notebook.resolveNotebook", "defs": { "main": { "type": "query", "description": "Resolve a notebook by actor + title/path, returns full detail.", "parameters": { "type": "params", "required": [ "actor", "name" ], "properties": { "actor": { "type": "string", "format": "at-identifier" }, "entryCursor": { "type": "string" }, "entryLimit": { "type": "integer", "default": 50, "minimum": 1, "maximum": 100 }, "name": { "type": "string", "maxLength": 300 } } }, "output": { "encoding": "application/json", "schema": { "type": "object", "required": [ "notebook", "entries" ], "properties": { "entries": { "type": "array", "items": { "type": "ref", "ref": "sh.weaver.notebook.defs#bookEntryView" } }, "entryCursor": { "type": "string" }, "notebook": { "type": "ref", "ref": "sh.weaver.notebook.defs#notebookView" } } } }, "errors": [ { "name": "NotebookNotFound" } ] } } }