Zendesk · Schema

Attachment

A file attachment.

ChatCRMHelp CenterSellSupportT1TalkTicketingTickets

Properties

Name Type Description
id integer
file_name string
content_url string
content_type string
size integer The size of the file in bytes.
thumbnails array
View JSON Schema on GitHub

JSON Schema

zendesk-support-attachment-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "title": "Attachment",
  "type": "object",
  "description": "A file attachment.",
  "properties": {
    "id": {
      "type": "integer"
    },
    "file_name": {
      "type": "string"
    },
    "content_url": {
      "type": "string"
    },
    "content_type": {
      "type": "string"
    },
    "size": {
      "type": "integer",
      "description": "The size of the file in bytes."
    },
    "thumbnails": {
      "type": "array"
    }
  }
}