FlightList schema
{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "https://raw.githubusercontent.com/api-evangelist/american-airlines/refs/heads/main/json-schema/runway-developer-api-flight-list-schema.json", "title": "FlightList", "description": "FlightList schema", "type": "object", "properties": { "flights": { "type": "array", "items": { "$ref": "#/components/schemas/Flight" } } } }