TM Forum · Schema

ProductSpecificationRelationship_FVO

TelcoTelecommunicationsBSSOSSOpen APIsStandards
View JSON Schema on GitHub

JSON Schema

tm-forum-productspecificationrelationship-fvo-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/ProductSpecificationRelationship_FVO",
  "title": "ProductSpecificationRelationship_FVO",
  "allOf": [
    {
      "$ref": "#/components/schemas/EntityRef_FVO"
    },
    {
      "type": "object",
      "description": "A migration, substitution, dependency or exclusivity relationship between/among product specifications.",
      "properties": {
        "characteristic": {
          "type": "array",
          "items": {
            "$ref": "#/components/schemas/CharacteristicSpecification_FVO"
          },
          "description": "A characteristic that refines the relationship. For example, consider the relationship between broadband and TV. For a 4k TV it is important to know the minimum bandwidth to support 4k, so a characteristic Resolution might be defined on the relationship to allow capturing of this in the inventory"
        },
        "validFor": {
          "$ref": "#/components/schemas/TimePeriod"
        },
        "relationshipType": {
          "type": "string",
          "description": "type of the relationship, for example override, discount, etc."
        },
        "version": {
          "type": "string",
          "description": "Version of the referred product specification."
        }
      },
      "required": [
        "id",
        "relationshipType"
      ]
    }
  ],
  "discriminator": {
    "propertyName": "@type",
    "mapping": {
      "ProductSpecificationRelationship": "#/components/schemas/ProductSpecificationRelationship_FVO"
    }
  }
}