Get a specific set and its values
Parameters
Output
Encoding
application/jsoncursor
string
Optional
No description available.
set
reftools.ozone.set.defs#setView
Required
No description available.
values
array
Required
No description available.
Errors
SetNotFound
set with the given name does not exist Try It
Requests are sent directly from your browser. Some servers may block requests due to CORS.
View raw schema
{
"type": "query",
"errors": [
{
"name": "SetNotFound",
"description": "set with the given name does not exist"
}
],
"output": {
"schema": {
"type": "object",
"required": [
"set",
"values"
],
"properties": {
"set": {
"ref": "tools.ozone.set.defs#setView",
"type": "ref"
},
"cursor": {
"type": "string"
},
"values": {
"type": "array",
"items": {
"type": "string"
}
}
}
},
"encoding": "application/json"
},
"parameters": {
"type": "params",
"required": [
"name"
],
"properties": {
"name": {
"type": "string"
},
"limit": {
"type": "integer",
"default": 100,
"maximum": 1000,
"minimum": 1
},
"cursor": {
"type": "string"
}
}
},
"description": "Get a specific set and its values"
}