{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/microsoft.graph.searchResponse", "title": "searchResponse", "required": [ "@odata.type" ], "type": "object", "properties": { "hitsContainers": { "type": "array", "items": { "$ref": "#/components/schemas/microsoft.graph.searchHitsContainer" }, "description": "A collection of search results." }, "queryAlterationResponse": { "anyOf": [ { "$ref": "#/components/schemas/microsoft.graph.alterationResponse" }, { "type": "object", "nullable": true } ], "description": "Provides information related to spelling corrections in the alteration response." }, "resultTemplates": { "anyOf": [ { "$ref": "#/components/schemas/microsoft.graph.resultTemplateDictionary" }, { "type": "object", "nullable": true } ], "description": "A dictionary of resultTemplateIds and associated values, which include the name and JSON schema of the result templates." }, "searchTerms": { "type": "array", "items": { "type": "string", "nullable": true }, "description": "Contains the search terms sent in the initial search query." }, "@odata.type": { "type": "string" } } }