{ "lexicon": 1, "id": "tools.ozone.set.getValues", "defs": { "main": { "type": "query", "description": "Get a specific set and its values", "parameters": { "type": "params", "required": [ "name" ], "properties": { "cursor": { "type": "string" }, "limit": { "type": "integer", "default": 100, "minimum": 1, "maximum": 1000 }, "name": { "type": "string" } } }, "output": { "encoding": "application/json", "schema": { "type": "object", "required": [ "set", "values" ], "properties": { "cursor": { "type": "string" }, "set": { "type": "ref", "ref": "tools.ozone.set.defs#setView" }, "values": { "type": "array", "items": { "type": "string" } } } } }, "errors": [ { "description": "set with the given name does not exist", "name": "SetNotFound" } ] } } }