at main 34 lines 1.0 kB view raw
1{ 2 "lexicon": 1, 3 "id": "sh.weaver.actor.getActorEntries", 4 "defs": { 5 "main": { 6 "type": "query", 7 "description": "Get all entries for an actor, optionally including collaborations.", 8 "parameters": { 9 "type": "params", 10 "required": ["actor"], 11 "properties": { 12 "actor": { "type": "string", "format": "at-identifier" }, 13 "includeCollaborations": { "type": "boolean", "default": false }, 14 "limit": { "type": "integer", "minimum": 1, "maximum": 100, "default": 50 }, 15 "cursor": { "type": "string" } 16 } 17 }, 18 "output": { 19 "encoding": "application/json", 20 "schema": { 21 "type": "object", 22 "required": ["entries"], 23 "properties": { 24 "entries": { 25 "type": "array", 26 "items": { "type": "ref", "ref": "sh.weaver.notebook.defs#entryView" } 27 }, 28 "cursor": { "type": "string" } 29 } 30 } 31 } 32 } 33 } 34}