TM Forum · Schema

RelatedChannel

RelatedChannel schema from TM Forum API

TelcoTelecommunicationsBSSOSSOpen APIsStandards
View JSON Schema on GitHub

JSON Schema

tmf622-product-ordering-related-channel-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://raw.githubusercontent.com/api-evangelist/tm-forum/refs/heads/main/json-schema/tmf622-product-ordering-related-channel-schema.json",
  "title": "RelatedChannel",
  "description": "RelatedChannel schema from TM Forum API",
  "allOf": [
    {
      "$ref": "#/components/schemas/Extensible"
    },
    {
      "type": "object",
      "description": "Related channel to another entity. May be online web, mobile app, social ,etc.",
      "properties": {
        "role": {
          "type": "string"
        },
        "channel": {
          "$ref": "#/components/schemas/ChannelRef"
        }
      }
    }
  ],
  "discriminator": {
    "propertyName": "@type",
    "mapping": {
      "RelatedChannel": "#/components/schemas/RelatedChannel"
    }
  }
}