Microsoft Graph · Schema

searchAlteration

Azure ADCollaborationContactsDocumentsEmailGraphIdentityMicrosoftOffice 365PresentationsProductivitySpreadsheetsT1Tasks

Properties

Name Type Description
alteredHighlightedQueryString string Defines the altered highlighted query string with spelling correction. The annotation around the corrected segment is: /ue000, /ue001.
alteredQueryString string Defines the altered query string with spelling correction.
alteredQueryTokens array Represents changed segments related to an original user query.
@odata.type string
View JSON Schema on GitHub

JSON Schema

microsoft-graph-microsoftgraphsearchalteration-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/microsoft.graph.searchAlteration",
  "title": "searchAlteration",
  "required": [
    "@odata.type"
  ],
  "type": "object",
  "properties": {
    "alteredHighlightedQueryString": {
      "type": "string",
      "description": "Defines the altered highlighted query string with spelling correction. The annotation around the corrected segment is: /ue000, /ue001.",
      "nullable": true
    },
    "alteredQueryString": {
      "type": "string",
      "description": "Defines the altered query string with spelling correction.",
      "nullable": true
    },
    "alteredQueryTokens": {
      "type": "array",
      "items": {
        "$ref": "#/components/schemas/microsoft.graph.alteredQueryToken"
      },
      "description": "Represents changed segments related to an original user query."
    },
    "@odata.type": {
      "type": "string"
    }
  }
}