Unified.to · Schema

TicketingCustomer

TicketingCustomer schema from Unified.to API

IntegrationsUnified API

Properties

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

JSON Schema

unified-to-ticketing-customer-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://raw.githubusercontent.com/api-evangelist/unified-to/refs/heads/main/json-schema/unified-to-ticketing-customer-schema.json",
  "title": "TicketingCustomer",
  "description": "TicketingCustomer schema from Unified.to API",
  "type": "object",
  "properties": {
    "id": {
      "type": "string"
    },
    "created_at": {
      "type": "string",
      "format": "date-time"
    },
    "updated_at": {
      "type": "string",
      "format": "date-time"
    },
    "name": {
      "type": "string"
    },
    "emails": {
      "$ref": "#/components/schemas/property_TicketingCustomer_emails"
    },
    "telephones": {
      "$ref": "#/components/schemas/property_TicketingCustomer_telephones"
    },
    "tags": {
      "$ref": "#/components/schemas/property_TicketingCustomer_tags"
    },
    "raw": {
      "type": "object",
      "additionalProperties": true
    }
  }
}