SearchResultsAnswer

Defines a search result answer.

APIs.ioEngineeringPlatform

Properties

Name Type Description
totalEstimatedMatches integer 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.
View JSON Schema on GitHub

JSON Schema

apis-io-engineering-platform-searchresultsanswer-schema.json Raw ↑
{
  "$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"
    }
  ]
}