TM Forum · Schema

ProductOfferingTerm_MVO

TelcoTelecommunicationsBSSOSSOpen APIsStandards
View JSON Schema on GitHub

JSON Schema

tm-forum-productofferingterm-mvo-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/ProductOfferingTerm_MVO",
  "title": "ProductOfferingTerm_MVO",
  "allOf": [
    {
      "$ref": "#/components/schemas/Extensible"
    },
    {
      "type": "object",
      "description": "A condition under which a ProductOffering is made available to Customers. For instance, a productOffering can be offered with multiple commitment periods.",
      "properties": {
        "description": {
          "type": "string",
          "description": "Description of the productOfferingTerm"
        },
        "duration": {
          "$ref": "#/components/schemas/Duration"
        },
        "name": {
          "type": "string",
          "description": "Name of the productOfferingTerm"
        },
        "validFor": {
          "$ref": "#/components/schemas/TimePeriod"
        }
      }
    }
  ],
  "discriminator": {
    "propertyName": "@type",
    "mapping": {
      "ProductOfferingTerm": "#/components/schemas/ProductOfferingTerm_MVO"
    }
  }
}