{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/assistantToolsRetrieval", "title": "Retrieval tool", "type": "object", "properties": { "type": { "type": "string", "description": "The type of tool being defined: `retrieval`", "enum": [ "retrieval" ], "x-ms-enum": { "name": "assistantToolsRetrievalType", "modelAsString": true, "values": [ { "value": "retrieval", "description": "retrieval as type of tool being defined" } ] } } }, "required": [ "type" ] }