Suggest review subjects whose title matches a search string, most-reviewed first.
Parameters
Output
Encoding
application/jsonsubjects
array
Required
No description available.
Try It
Requests are sent directly from your browser. Some servers may block requests due to CORS.
View raw schema
{
"type": "query",
"output": {
"schema": {
"type": "object",
"required": [
"subjects"
],
"properties": {
"subjects": {
"type": "array",
"items": {
"ref": "at.isnot.review#subject",
"type": "ref"
},
"maxLength": 25
}
}
},
"encoding": "application/json"
},
"parameters": {
"type": "params",
"required": [
"q"
],
"properties": {
"q": {
"type": "string",
"maxLength": 512,
"description": "Text to match against subject titles, case-insensitively. An empty string returns no suggestions."
},
"limit": {
"type": "integer",
"default": 8,
"maximum": 25,
"minimum": 1
}
}
},
"description": "Suggest review subjects whose title matches a search string, most-reviewed first."
}