{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "https://raw.githubusercontent.com/api-evangelist/aerodatabox/refs/heads/main/json-schema/aerodatabox-daily-route-stat-contract-schema.json", "title": "DailyRouteStatContract", "description": "Route daily statistics of the airport", "type": "object", "properties": { "routes": { "type": "array", "items": { "$ref": "#/components/schemas/DailyRouteStatRecordContract" } } }, "required": [ "routes" ], "additionalProperties": false }