Unified.to · Schema

TicketingNote

IntegrationsUnified API

Properties

Name Type Description
created_at string
customer_id string
description string
id string
raw object
ticket_id string
updated_at string
user_id string
View JSON Schema on GitHub

JSON Schema

unified-to-ticketingnote-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/TicketingNote",
  "title": "TicketingNote",
  "properties": {
    "created_at": {
      "format": "date-time",
      "type": "string"
    },
    "customer_id": {
      "type": "string"
    },
    "description": {
      "type": "string"
    },
    "id": {
      "type": "string"
    },
    "raw": {
      "additionalProperties": true,
      "type": "object"
    },
    "ticket_id": {
      "type": "string"
    },
    "updated_at": {
      "format": "date-time",
      "type": "string"
    },
    "user_id": {
      "type": "string"
    }
  },
  "type": "object"
}