{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/deleteAssistantFileResponse", "title": "deleteAssistantFileResponse", "type": "object", "description": "Deletes the association between the assistant and the file, but does not delete the [File](/docs/api-reference/files) object itself.", "properties": { "id": { "type": "string" }, "deleted": { "type": "boolean" }, "object": { "type": "string", "enum": [ "assistant.file.deleted" ], "x-ms-enum": { "name": "DeleteAssistantFileResponseType", "modelAsString": true, "values": [ { "value": "assistant.file.deleted" } ] } } }, "required": [ "id", "object", "deleted" ] }