TM Forum · Schema

ProductCatalogCreateEvent

TelcoTelecommunicationsBSSOSSOpen APIsStandards
View JSON Schema on GitHub

JSON Schema

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