Microsoft Graph · Schema

answerKeyword

Azure ADCollaborationContactsDocumentsEmailGraphIdentityMicrosoftOffice 365PresentationsProductivitySpreadsheetsT1Tasks

Properties

Name Type Description
keywords array A collection of keywords used to trigger the search answer.
matchSimilarKeywords boolean If true, indicates that the search term contains similar words to the keywords that should trigger the search answer.
reservedKeywords array Unique keywords that guarantee the search answer is triggered.
@odata.type string
View JSON Schema on GitHub

JSON Schema

microsoft-graph-microsoftgraphsearchanswerkeyword-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/microsoft.graph.search.answerKeyword",
  "title": "answerKeyword",
  "required": [
    "@odata.type"
  ],
  "type": "object",
  "properties": {
    "keywords": {
      "type": "array",
      "items": {
        "type": "string",
        "nullable": true
      },
      "description": "A collection of keywords used to trigger the search answer."
    },
    "matchSimilarKeywords": {
      "type": "boolean",
      "description": "If true, indicates that the search term contains similar words to the keywords that should trigger the search answer.",
      "nullable": true
    },
    "reservedKeywords": {
      "type": "array",
      "items": {
        "type": "string",
        "nullable": true
      },
      "description": "Unique keywords that guarantee the search answer is triggered."
    },
    "@odata.type": {
      "type": "string"
    }
  }
}