Microsoft Graph · Schema

searchAlterationOptions

Azure ADCollaborationContactsDocumentsEmailGraphIdentityMicrosoftOffice 365PresentationsProductivitySpreadsheetsT1Tasks

Properties

Name Type Description
enableModification boolean Indicates whether spelling modifications are enabled. If enabled, the user gets the search results for the corrected query if there were no results for the original query with typos. The response will
enableSuggestion boolean Indicates whether spelling suggestions are enabled. If enabled, the user gets the search results for the original search query and suggestions for spelling correction in the queryAlterationResponse pr
@odata.type string
View JSON Schema on GitHub

JSON Schema

microsoft-graph-microsoftgraphsearchalterationoptions-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/microsoft.graph.searchAlterationOptions",
  "title": "searchAlterationOptions",
  "required": [
    "@odata.type"
  ],
  "type": "object",
  "properties": {
    "enableModification": {
      "type": "boolean",
      "description": "Indicates whether spelling modifications are enabled. If enabled, the user gets the search results for the corrected query if there were no results for the original query with typos. The response will also include the spelling modification information in the queryAlterationResponse property. Optional.",
      "nullable": true
    },
    "enableSuggestion": {
      "type": "boolean",
      "description": "Indicates whether spelling suggestions are enabled. If enabled, the user gets the search results for the original search query and suggestions for spelling correction in the queryAlterationResponse property of the response for the typos in the query. Optional.",
      "nullable": true
    },
    "@odata.type": {
      "type": "string"
    }
  }
}