TM Forum · Schema

Duration

A time interval in a given unit of time

TelcoTelecommunicationsBSSOSSOpen APIsStandards

Properties

Name Type Description
amount integer Time interval (number of seconds, minutes, hours, etc.)
units string Unit of time (seconds, minutes, hours, etc.)
View JSON Schema on GitHub

JSON Schema

tmf622-product-ordering-duration-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-duration-schema.json",
  "title": "Duration",
  "description": "A time interval in a given unit of time",
  "type": "object",
  "properties": {
    "amount": {
      "type": "integer",
      "description": "Time interval (number of seconds, minutes, hours, etc.)"
    },
    "units": {
      "type": "string",
      "description": "Unit of time (seconds, minutes, hours, etc.)"
    }
  }
}