{ "lexicon": 1, "id": "sh.weaver.actor.getActorNotebooks", "defs": { "main": { "type": "query", "description": "Get all notebooks for an actor, optionally including collaborations.", "parameters": { "type": "params", "required": ["actor"], "properties": { "actor": { "type": "string", "format": "at-identifier" }, "includeCollaborations": { "type": "boolean", "default": false }, "limit": { "type": "integer", "minimum": 1, "maximum": 100, "default": 50 }, "cursor": { "type": "string" } } }, "output": { "encoding": "application/json", "schema": { "type": "object", "required": ["notebooks"], "properties": { "notebooks": { "type": "array", "items": { "type": "ref", "ref": "sh.weaver.notebook.defs#notebookView" } }, "cursor": { "type": "string" } } } } } } }