TM Forum · JSON Structure

Tmf621 Trouble Ticket Status Change Structure

StatusChange schema from TM Forum API

Type: Properties: 0
TelcoTelecommunicationsBSSOSSOpen APIsStandards

StatusChange is a JSON Structure definition published by TM Forum. It conforms to the https://json-structure.org/meta/core/v0/# meta-schema.

Meta-schema: https://json-structure.org/meta/core/v0/#

JSON Structure

Raw ↑
{
  "$schema": "https://json-structure.org/meta/core/v0/#",
  "$id": "https://raw.githubusercontent.com/api-evangelist/tm-forum/refs/heads/main/json-structure/tmf621-trouble-ticket-status-change-structure.json",
  "name": "StatusChange",
  "description": "StatusChange schema from TM Forum API",
  "allOf": [
    {
      "$ref": "#/components/schemas/Extensible"
    },
    {
      "type": "object",
      "description": "Holds the status, reasons and associated date the status changed, populated by the server",
      "properties": {
        "statusChangeDate": {
          "type": "datetime",
          "description": "The date and time the status changed."
        },
        "statusChangeReason": {
          "type": "string",
          "description": "The reason why the status changed."
        },
        "status": {
          "$ref": "#/components/schemas/TroubleTicketStatusType"
        }
      }
    }
  ],
  "discriminator": {
    "propertyName": "@type",
    "mapping": {
      "StatusChange": "#/components/schemas/StatusChange"
    }
  }
}