SpellSuggestions

Defines a suggested query string that likely represents the user's intent. The search results include this response if Bing determines that the user may have intended to search for something different. For example, if the user searches for alon brown, Bing may determine that the user likely intended to search for Alton Brown instead (based on past searches by others of Alon Brown).

APIs.ioEngineeringPlatform

Properties

Name Type Description
value array A list of suggested query strings that may represent the user's intention. The list contains only one Query object.
View JSON Schema on GitHub

JSON Schema

apis-io-engineering-platform-spellsuggestions-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/SpellSuggestions",
  "title": "SpellSuggestions",
  "required": [
    "value"
  ],
  "properties": {
    "value": {
      "type": "array",
      "description": "A list of suggested query strings that may represent the user's intention. The list contains only one Query object.",
      "items": {
        "$ref": "#/components/schemas/Query"
      }
    }
  },
  "description": "Defines a suggested query string that likely represents the user's intent. The search results include this response if Bing determines that the user may have intended to search for something different. For example, if the user searches for alon brown, Bing may determine that the user likely intended to search for Alton Brown instead (based on past searches by others of Alon Brown).",
  "allOf": [
    {
      "$ref": "#/components/schemas/SearchResultsAnswer"
    }
  ]
}