Unified.to · JSON Structure

Unified To Ticketing Ticket Structure

JSON Structure for TicketingTicket from Unified.to API

Type: Properties: 0
IntegrationsUnified API

Unified To Ticketing Ticket Structure is a JSON Structure definition published by Unified.to. It conforms to the https://json-schema.org/draft/2020-12/schema meta-schema.

Meta-schema: https://json-schema.org/draft/2020-12/schema

JSON Structure

Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "title": "TicketingTicket Structure",
  "description": "JSON Structure for TicketingTicket from Unified.to API",
  "structure": {
    "type": "object",
    "properties": {
      "id": {
        "type": "string"
      },
      "created_at": {
        "type": "string"
      },
      "updated_at": {
        "type": "string"
      },
      "customer_id": {
        "type": "string"
      },
      "subject": {
        "type": "string"
      },
      "description": {
        "type": "string"
      },
      "status": {
        "type": "string",
        "enum": [
          "ACTIVE",
          "CLOSED"
        ]
      },
      "closed_at": {
        "type": "string"
      },
      "priority": {
        "type": "string"
      },
      "category_id": {
        "type": "string"
      },
      "category": {
        "type": "string"
      },
      "source": {
        "type": "string"
      },
      "source_ref": {
        "type": "string"
      },
      "tags": {
        "$ref": "property_TicketingTicket_tags"
      },
      "user_id": {
        "type": "string"
      },
      "url": {
        "type": "string"
      },
      "raw": {
        "type": "object"
      }
    }
  }
}