TM Forum · Schema

IndividualStateChangeEvent

TelcoTelecommunicationsBSSOSSOpen APIsStandards
View JSON Schema on GitHub

JSON Schema

tm-forum-individualstatechangeevent-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/IndividualStateChangeEvent",
  "title": "IndividualStateChangeEvent",
  "allOf": [
    {
      "$ref": "#/components/schemas/Event"
    },
    {
      "type": "object",
      "description": "IndividualStateChangeEvent generic structure",
      "properties": {
        "event": {
          "$ref": "#/components/schemas/IndividualStateChangeEventPayload"
        }
      }
    }
  ],
  "discriminator": {
    "propertyName": "@type",
    "mapping": {
      "IndividualStateChangeEvent": "#/components/schemas/IndividualStateChangeEvent"
    }
  }
}