TM Forum · Schema

PartyRoleRef_FVO

TelcoTelecommunicationsBSSOSSOpen APIsStandards
View JSON Schema on GitHub

JSON Schema

tm-forum-partyroleref-fvo-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/PartyRoleRef_FVO",
  "title": "PartyRoleRef_FVO",
  "allOf": [
    {
      "$ref": "#/components/schemas/EntityRef_FVO"
    },
    {
      "type": "object",
      "description": "Party role reference. A party role represents the part played by a party in a given context.",
      "properties": {
        "partyId": {
          "type": "string",
          "description": "The identifier of the engaged party that is linked to the PartyRole object."
        },
        "partyName": {
          "type": "string",
          "description": "The name of the engaged party that is linked to the PartyRole object."
        }
      }
    }
  ],
  "discriminator": {
    "propertyName": "@type",
    "mapping": {
      "PartyRoleRef": "#/components/schemas/PartyRoleRef_FVO"
    }
  }
}