Unified.to · Schema

TicketingCustomer

IntegrationsUnified API

Properties

Name Type Description
created_at string
emails object
id string
name string
raw object
tags object
telephones object
updated_at string
View JSON Schema on GitHub

JSON Schema

unified-to-ticketingcustomer-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/TicketingCustomer",
  "title": "TicketingCustomer",
  "properties": {
    "created_at": {
      "format": "date-time",
      "type": "string"
    },
    "emails": {
      "$ref": "#/components/schemas/property_TicketingCustomer_emails"
    },
    "id": {
      "type": "string"
    },
    "name": {
      "type": "string"
    },
    "raw": {
      "additionalProperties": true,
      "type": "object"
    },
    "tags": {
      "$ref": "#/components/schemas/property_TicketingCustomer_tags"
    },
    "telephones": {
      "$ref": "#/components/schemas/property_TicketingCustomer_telephones"
    },
    "updated_at": {
      "format": "date-time",
      "type": "string"
    }
  },
  "type": "object"
}