{ "lexicon": 1, "id": "sh.weaver.actor.getActorEntries", "defs": { "main": { "type": "query", "description": "Get all entries 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": ["entries"], "properties": { "entries": { "type": "array", "items": { "type": "ref", "ref": "sh.weaver.notebook.defs#entryView" } }, "cursor": { "type": "string" } } } } } } }