TM Forum · Schema

OrderTerm

OrderTerm schema from TM Forum API

TelcoTelecommunicationsBSSOSSOpen APIsStandards
View JSON Schema on GitHub

JSON Schema

tmf622-product-ordering-order-term-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://raw.githubusercontent.com/api-evangelist/tm-forum/refs/heads/main/json-schema/tmf622-product-ordering-order-term-schema.json",
  "title": "OrderTerm",
  "description": "OrderTerm schema from TM Forum API",
  "allOf": [
    {
      "$ref": "#/components/schemas/Extensible"
    },
    {
      "type": "object",
      "description": "Description of a productTerm linked to this orderItem. This represent a commitment with a duration",
      "properties": {
        "description": {
          "type": "string",
          "description": "Description of the productOrderTerm"
        },
        "duration": {
          "$ref": "#/components/schemas/Duration"
        },
        "name": {
          "type": "string",
          "description": "Name of the productOrderTerm"
        }
      }
    }
  ],
  "discriminator": {
    "propertyName": "@type",
    "mapping": {
      "OrderTerm": "#/components/schemas/OrderTerm"
    }
  }
}