APIs.io Engineering Platform · Schema
SearchResponse
Defines the top-level object that the response includes when the request succeeds.
APIs.ioEngineeringPlatform
Properties
| Name | Type | Description |
|---|---|---|
| computation | object | |
| images | object | |
| news | object | |
| queryContext | object | |
| rankingResponse | object | |
| relatedSearches | object | |
| spellSuggestions | object | |
| timeZone | object | |
| videos | object | |
| webPages | object |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "#/components/schemas/SearchResponse",
"title": "SearchResponse",
"properties": {
"computation": {
"$ref": "#/components/schemas/Computation"
},
"images": {
"$ref": "#/components/schemas/Images"
},
"news": {
"$ref": "#/components/schemas/News"
},
"queryContext": {
"$ref": "#/components/schemas/QueryContext"
},
"rankingResponse": {
"$ref": "#/components/schemas/RankingRankingResponse"
},
"relatedSearches": {
"$ref": "#/components/schemas/RelatedSearchesRelatedSearchAnswer"
},
"spellSuggestions": {
"$ref": "#/components/schemas/SpellSuggestions"
},
"timeZone": {
"$ref": "#/components/schemas/TimeZone"
},
"videos": {
"$ref": "#/components/schemas/Videos"
},
"webPages": {
"$ref": "#/components/schemas/WebWebAnswer"
}
},
"description": "Defines the top-level object that the response includes when the request succeeds.",
"allOf": [
{
"$ref": "#/components/schemas/Response"
}
]
}