Spectrum Enterprise Service Ticket

BroadbandCableCAMARAEnterpriseNetwork as a ServiceNaaSSpectrumTelecommunicationsTicketingFortune 500

Properties

Name Type Description
ticketId string
subject string
description string
status string
priority string
accountId string
createdAt string
updatedAt string
View JSON Schema on GitHub

JSON Schema

charter-communications-ticket-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://enterprise.spectrum.com/schemas/ticket.json",
  "title": "Spectrum Enterprise Service Ticket",
  "type": "object",
  "required": ["ticketId", "subject", "status"],
  "properties": {
    "ticketId": { "type": "string" },
    "subject": { "type": "string" },
    "description": { "type": "string" },
    "status": {
      "type": "string",
      "enum": ["new", "open", "in-progress", "pending", "resolved", "closed"]
    },
    "priority": {
      "type": "string",
      "enum": ["low", "normal", "high", "critical"]
    },
    "accountId": { "type": "string" },
    "createdAt": { "type": "string", "format": "date-time" },
    "updatedAt": { "type": "string", "format": "date-time" }
  }
}