{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "#/components/schemas/SearchResultsAnswer",
"title": "SearchResultsAnswer",
"properties": {
"totalEstimatedMatches": {
"type": "integer",
"description": "The estimated number of webpages that are relevant to the query. Use this number along with the count and offset query parameters to page the results.",
"format": "int64",
"readOnly": true
}
},
"description": "Defines a search result answer.",
"allOf": [
{
"$ref": "#/components/schemas/Answer"
}
]
}