Perplexity · Schema
ApiSearchResponse
Properties
| Name | Type | Description |
|---|---|---|
| results | array | |
| id | string | |
| server_time | object |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "#/components/schemas/ApiSearchResponse",
"title": "ApiSearchResponse",
"properties": {
"results": {
"items": {
"$ref": "#/components/schemas/ApiSearchPage"
},
"type": "array",
"title": "Results"
},
"id": {
"type": "string",
"title": "Id"
},
"server_time": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
],
"title": "Server Time"
}
},
"type": "object",
"required": [
"results",
"id"
]
}