TM Forum · Schema

HourPeriod_MVO

TelcoTelecommunicationsBSSOSSOpen APIsStandards
View JSON Schema on GitHub

JSON Schema

tm-forum-hourperiod-mvo-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/HourPeriod_MVO",
  "title": "HourPeriod_MVO",
  "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_MVO"
    }
  }
}