Microsoft Azure · Schema

deleteThreadResponse

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-deletethreadresponse-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/deleteThreadResponse",
  "title": "deleteThreadResponse",
  "type": "object",
  "properties": {
    "id": {
      "type": "string"
    },
    "deleted": {
      "type": "boolean"
    },
    "object": {
      "type": "string",
      "enum": [
        "thread.deleted"
      ],
      "x-ms-enum": {
        "name": "DeleteThreadResponseObjectState",
        "modelAsString": true,
        "values": [
          {
            "value": "thread.deleted",
            "description": "The delete thread response object state which is `thread.deleted`"
          }
        ]
      }
    }
  },
  "required": [
    "id",
    "object",
    "deleted"
  ]
}