TM Forum · Schema

HourPeriod

HourPeriod schema from TM Forum API

TelcoTelecommunicationsBSSOSSOpen APIsStandards
View JSON Schema on GitHub

JSON Schema

tmf622-product-ordering-hour-period-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-hour-period-schema.json",
  "title": "HourPeriod",
  "description": "HourPeriod schema from TM Forum API",
  "allOf": [
    {
      "$ref": "#/components/schemas/Extensible"
    },
    {
      "type": "object",
      "properties": {
        "endHour": {
          "type": "string",
          "description": "The time when the status ends applying"
        },
        "startHour": {
          "type": "string",
          "description": "The time when the status starts applying"
        }
      }
    }
  ],
  "discriminator": {
    "propertyName": "@type",
    "mapping": {
      "HourPeriod": "#/components/schemas/HourPeriod"
    }
  }
}