TM Forum · Schema

CharacteristicRelationship_FVO

TelcoTelecommunicationsBSSOSSOpen APIsStandards
View JSON Schema on GitHub

JSON Schema

tm-forum-characteristicrelationship-fvo-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/CharacteristicRelationship_FVO",
  "title": "CharacteristicRelationship_FVO",
  "allOf": [
    {
      "$ref": "#/components/schemas/Extensible"
    },
    {
      "type": "object",
      "description": "Another Characteristic that is related to the current Characteristic;",
      "properties": {
        "id": {
          "type": "string",
          "description": "Unique identifier of the characteristic"
        },
        "relationshipType": {
          "type": "string",
          "description": "The type of relationship"
        }
      },
      "required": [
        "id",
        "relationshipType"
      ]
    }
  ],
  "discriminator": {
    "propertyName": "@type",
    "mapping": {
      "CharacteristicRelationship": "#/components/schemas/CharacteristicRelationship_FVO"
    }
  }
}