TM Forum · Schema

RelatedChannel_FVO

TelcoTelecommunicationsBSSOSSOpen APIsStandards
View JSON Schema on GitHub

JSON Schema

tm-forum-relatedchannel-fvo-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/RelatedChannel_FVO",
  "title": "RelatedChannel_FVO",
  "allOf": [
    {
      "$ref": "#/components/schemas/Extensible_FVO"
    },
    {
      "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_FVO"
        }
      },
      "required": [
        "role",
        "channel"
      ]
    }
  ],
  "discriminator": {
    "propertyName": "@type",
    "mapping": {
      "RelatedChannel": "#/components/schemas/RelatedChannel_FVO"
    }
  }
}