Microsoft Graph · Schema

alteredQueryToken

Azure ADCollaborationContactsDocumentsEmailGraphIdentityMicrosoftOffice 365PresentationsProductivitySpreadsheetsT1Tasks

Properties

Name Type Description
length number Defines the length of a changed segment.
offset number Defines the offset of a changed segment.
suggestion string Represents the corrected segment string.
@odata.type string
View JSON Schema on GitHub

JSON Schema

microsoft-graph-microsoftgraphalteredquerytoken-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/microsoft.graph.alteredQueryToken",
  "title": "alteredQueryToken",
  "required": [
    "@odata.type"
  ],
  "type": "object",
  "properties": {
    "length": {
      "maximum": 2147483647,
      "minimum": -2147483648,
      "type": "number",
      "description": "Defines the length of a changed segment.",
      "format": "int32",
      "nullable": true
    },
    "offset": {
      "maximum": 2147483647,
      "minimum": -2147483648,
      "type": "number",
      "description": "Defines the offset of a changed segment.",
      "format": "int32",
      "nullable": true
    },
    "suggestion": {
      "type": "string",
      "description": "Represents the corrected segment string.",
      "nullable": true
    },
    "@odata.type": {
      "type": "string"
    }
  }
}