TM Forum · JSON Structure

Tmf637 Product Inventory Product Term Structure

ProductTerm schema from TM Forum API

Type: Properties: 0
TelcoTelecommunicationsBSSOSSOpen APIsStandards

ProductTerm is a JSON Structure definition published by TM Forum. It conforms to the https://json-structure.org/meta/core/v0/# meta-schema.

Meta-schema: https://json-structure.org/meta/core/v0/#

JSON Structure

Raw ↑
{
  "$schema": "https://json-structure.org/meta/core/v0/#",
  "$id": "https://raw.githubusercontent.com/api-evangelist/tm-forum/refs/heads/main/json-structure/tmf637-product-inventory-product-term-structure.json",
  "name": "ProductTerm",
  "description": "ProductTerm schema from TM Forum API",
  "allOf": [
    {
      "$ref": "#/components/schemas/Extensible"
    },
    {
      "type": "object",
      "description": "Description of a productTerm linked to this product. This represent a commitment with a duration",
      "properties": {
        "description": {
          "type": "string",
          "description": "Description of the productTerm"
        },
        "duration": {
          "$ref": "#/components/schemas/Duration"
        },
        "validFor": {
          "$ref": "#/components/schemas/TimePeriod"
        },
        "name": {
          "type": "string",
          "description": "Name of the productTerm",
          "example": "12months commitment"
        }
      }
    }
  ],
  "discriminator": {
    "propertyName": "@type",
    "mapping": {
      "ProductTerm": "#/components/schemas/ProductTerm"
    }
  }
}