TM Forum · JSON Structure

Tmf622 Product Ordering Hour Period Structure

HourPeriod schema from TM Forum API

Type: Properties: 0
TelcoTelecommunicationsBSSOSSOpen APIsStandards

HourPeriod 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/tmf622-product-ordering-hour-period-structure.json",
  "name": "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"
    }
  }
}