{ "$schema": "https://json-structure.org/meta/core/v0/#", "$id": "https://raw.githubusercontent.com/api-evangelist/alaska-air/refs/heads/main/json-structure/alaska-air-flight-status-flight-list-structure.json", "name": "FlightList", "type": "object", "description": "List of flights for a route and date", "properties": { "flights": { "type": "array", "description": "Array of flight summaries", "items": { "$ref": "#/components/schemas/FlightSummary" } }, "originAirport": { "type": "string", "description": "Origin airport IATA code", "example": "SEA" }, "destinationAirport": { "type": "string", "description": "Destination airport IATA code", "example": "LAX" }, "flightDate": { "type": "date", "description": "Flight date", "example": "2026-04-19" } } }