AeroDataBox · Schema

DelayBracketContract

Delay bracket contract describing how many records are subject to a specific delay range

AviationFlightsAerospaceFlight DataAirport Data

Properties

Name Type Description
delayedFrom string The beginning of the delay range (format: [-]hh:mm:ss). E.g. in the expresssion "delayed from 30 to 60 minutes" stands for "from 30 minutes". Value can be negative (therefore, means early occurence).
delayedTo string The end of the delay range (format: [-]hh:mm:ss). E.g. in the expresssion "delayed from 30 to 60 minutes" stands for "to 60 minutes". Value can be negative (therefore, means early occurence). Must be
num integer Count of records subject to a specified delay range
percentage number Percentage of records subject to a specified delay range. Only available when this delay bracket is provided as a part of a statistical information of a bigger context and the "total" count of records
View JSON Schema on GitHub

JSON Schema

aerodatabox-delaybracketcontract-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/DelayBracketContract",
  "title": "DelayBracketContract",
  "required": [
    "num"
  ],
  "type": "object",
  "properties": {
    "delayedFrom": {
      "type": "string",
      "description": "The beginning of the delay range (format: [-]hh:mm:ss).\r\nE.g. in the expresssion \"delayed from 30 to 60 minutes\" stands for \"from 30 minutes\".\r\nValue can be negative (therefore, means early occurence).\r\n\r\nMust be preset if \"DelayedTo\" is not specified.",
      "format": "date-span",
      "nullable": true
    },
    "delayedTo": {
      "type": "string",
      "description": "The end of the delay range (format: [-]hh:mm:ss).\r\nE.g. in the expresssion \"delayed from 30 to 60 minutes\" stands for \"to 60 minutes\".\r\nValue can be negative (therefore, means early occurence).\r\n\r\nMust be preset if \"DelayedFrom\" is not specified.",
      "format": "date-span",
      "nullable": true
    },
    "num": {
      "type": "integer",
      "description": "Count of records subject to a specified delay range",
      "format": "int32"
    },
    "percentage": {
      "type": "number",
      "description": "Percentage of records subject to a specified delay range.\r\n\r\nOnly available when this delay bracket is provided as a part\r\nof a statistical information of a bigger context and the \"total\"\r\ncount of records is known.",
      "format": "float",
      "nullable": true
    }
  },
  "additionalProperties": false,
  "description": "Delay bracket contract describing how many records are subject to a specific delay range"
}