WebWebAnswer

Defines a list of relevant webpage links.

APIs.ioEngineeringPlatform

Properties

Name Type Description
someResultsRemoved boolean A Boolean value that indicates whether the response excluded some results from the answer. If Bing excluded some results, the value is true.
value array A list of webpages that are relevant to the query.
View JSON Schema on GitHub

JSON Schema

apis-io-engineering-platform-webwebanswer-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/WebWebAnswer",
  "title": "WebWebAnswer",
  "required": [
    "value"
  ],
  "properties": {
    "someResultsRemoved": {
      "type": "boolean",
      "description": "A Boolean value that indicates whether the response excluded some results from the answer. If Bing excluded some results, the value is true.",
      "readOnly": true
    },
    "value": {
      "type": "array",
      "description": "A list of webpages that are relevant to the query.",
      "items": {
        "$ref": "#/components/schemas/WebPage"
      }
    }
  },
  "description": "Defines a list of relevant webpage links.",
  "allOf": [
    {
      "$ref": "#/components/schemas/SearchResultsAnswer"
    }
  ],
  "x-ms-discriminator-value": "Web/WebAnswer"
}