Microsoft Azure · Schema

deleteAssistantFileResponse

Deletes the association between the assistant and the file, but does not delete the [File](/docs/api-reference/files) object itself.

API ManagementCloudCloud ComputingEnterpriseInfrastructure as a ServicePlatform as a ServiceT1

Properties

Name Type Description
id string
deleted boolean
object string
View JSON Schema on GitHub

JSON Schema

microsoft-azure-deleteassistantfileresponse-schema.json Raw ↑
{
  "$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"
  ]
}