Zendesk · Schema

CustomField

A custom field key-value pair.

ChatCRMHelp CenterSellSupportT1TalkTicketingTickets

Properties

Name Type Description
id integer The ID of the custom field.
value string The value of the custom field.
View JSON Schema on GitHub

JSON Schema

zendesk-support-custom-field-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "title": "CustomField",
  "type": "object",
  "description": "A custom field key-value pair.",
  "properties": {
    "id": {
      "type": "integer",
      "description": "The ID of the custom field."
    },
    "value": {
      "type": "string",
      "description": "The value of the custom field."
    }
  }
}