{ "lexicon": 1, "id": "sh.weaver.graph.getList", "defs": { "main": { "type": "query", "description": "Get a list with its items.", "parameters": { "type": "params", "required": ["list"], "properties": { "list": { "type": "string", "format": "at-uri" }, "limit": { "type": "integer", "minimum": 1, "maximum": 100, "default": 50 }, "cursor": { "type": "string" } } }, "output": { "encoding": "application/json", "schema": { "type": "object", "required": ["list", "items"], "properties": { "list": { "type": "ref", "ref": "sh.weaver.graph.defs#listView" }, "items": { "type": "array", "items": { "type": "ref", "ref": "sh.weaver.graph.defs#listItemView" } }, "cursor": { "type": "string" } } } }, "errors": [ { "name": "ListNotFound" } ] } } }