{ "$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" } } }