AeroDataBox · JSON Structure

Aerodatabox Percentile Bracket Contract Structure

Percentile bracket contract describing the flight delay for a specific percentile of the distribution

Type: object Properties: 2 Required: 2
AviationFlightsAerospaceFlight DataAirport Data

PercentileBracketContract is a JSON Structure definition published by AeroDataBox, describing 2 properties, of which 2 are required. It conforms to the https://json-structure.org/meta/core/v0/# meta-schema.

Properties

percentile delay

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/aerodatabox/refs/heads/main/json-structure/aerodatabox-percentile-bracket-contract-structure.json",
  "description": "Percentile bracket contract describing the flight delay for a specific percentile of the distribution",
  "type": "object",
  "properties": {
    "percentile": {
      "maximum": 95,
      "minimum": 5,
      "type": "int32",
      "description": "Percentile of the distribution"
    },
    "delay": {
      "type": "string",
      "description": "Delay of the flight for the specific percentile (format: [-]hh:mm:ss).",
      "format": "date-span"
    }
  },
  "required": [
    "delay",
    "percentile"
  ],
  "additionalProperties": false,
  "name": "PercentileBracketContract"
}