{ "$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" }