TM Forum · Schema

RelatedChannel_MVO

TelcoTelecommunicationsBSSOSSOpen APIsStandards
View JSON Schema on GitHub

JSON Schema

tm-forum-relatedchannel-mvo-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/RelatedChannel_MVO",
  "title": "RelatedChannel_MVO",
  "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_MVO"
        }
      }
    }
  ],
  "discriminator": {
    "propertyName": "@type",
    "mapping": {
      "RelatedChannel": "#/components/schemas/RelatedChannel_MVO"
    }
  }
}