AeroDataBox · Schema

PercentileBracketContract

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

AviationFlightsAerospaceFlight DataAirport Data

Properties

Name Type Description
percentile integer Percentile of the distribution
delay string Delay of the flight for the specific percentile (format: [-]hh:mm:ss).
View JSON Schema on GitHub

JSON Schema

aerodatabox-percentilebracketcontract-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/PercentileBracketContract",
  "title": "PercentileBracketContract",
  "required": [
    "delay",
    "percentile"
  ],
  "type": "object",
  "properties": {
    "percentile": {
      "maximum": 95,
      "minimum": 5,
      "type": "integer",
      "description": "Percentile of the distribution",
      "format": "int32"
    },
    "delay": {
      "type": "string",
      "description": "Delay of the flight for the specific percentile (format: [-]hh:mm:ss).",
      "format": "date-span"
    }
  },
  "additionalProperties": false,
  "description": "Percentile bracket contract describing the flight delay for a specific percentile of the distribution"
}