TM Forum · Schema

RelatedEntity_FVO

TelcoTelecommunicationsBSSOSSOpen APIsStandards
View JSON Schema on GitHub

JSON Schema

tm-forum-relatedentity-fvo-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/RelatedEntity_FVO",
  "title": "RelatedEntity_FVO",
  "allOf": [
    {
      "$ref": "#/components/schemas/Extensible"
    },
    {
      "type": "object",
      "description": "A reference to an entity, where the type of the entity is not known in advance.",
      "properties": {
        "role": {
          "type": "string"
        },
        "entity": {
          "$ref": "#/components/schemas/EntityRef"
        }
      },
      "required": [
        "role",
        "entity"
      ]
    }
  ],
  "discriminator": {
    "propertyName": "@type",
    "mapping": {
      "RelatedEntity": "#/components/schemas/RelatedEntity_FVO"
    }
  }
}