Airlabs · Schema
Route
Airline route database record
AviationFlightsAirlinesAirportsFlight TrackingFlight StatusReal-time Data
Properties
| Name | Type | Description |
|---|---|---|
| airline_iata | string | Airline IATA code |
| airline_icao | string | Airline ICAO code |
| flight_number | string | Flight number |
| flight_iata | string | Flight IATA code |
| flight_icao | string | Flight ICAO code |
| dep_iata | string | Departure airport IATA code |
| dep_icao | string | Departure airport ICAO code |
| dep_terminal | string | Departure terminal |
| dep_time | string | Scheduled departure time (local) |
| dep_time_utc | string | Scheduled departure time (UTC) |
| arr_iata | string | Arrival airport IATA code |
| arr_icao | string | Arrival airport ICAO code |
| arr_terminal | string | Arrival terminal |
| arr_time | string | Scheduled arrival time (local) |
| arr_time_utc | string | Scheduled arrival time (UTC) |
| duration | integer | Flight duration in minutes |
| days | array | Days of week the route operates |
| cs_airline_iata | string | Codeshare airline IATA code |
| cs_flight_number | string | Codeshare flight number |
| cs_flight_iata | string | Codeshare flight IATA code |
JSON Schema
{
"$schema": "http://json-schema.org/draft-07/schema#",
"$id": "https://airlabs.co/json-schema/route",
"title": "Route",
"description": "Airline route database record",
"type": "object",
"properties": {
"airline_iata": { "type": "string", "description": "Airline IATA code" },
"airline_icao": { "type": "string", "description": "Airline ICAO code" },
"flight_number": { "type": "string", "description": "Flight number" },
"flight_iata": { "type": "string", "description": "Flight IATA code" },
"flight_icao": { "type": "string", "description": "Flight ICAO code" },
"dep_iata": { "type": "string", "description": "Departure airport IATA code" },
"dep_icao": { "type": "string", "description": "Departure airport ICAO code" },
"dep_terminal": { "type": "string", "description": "Departure terminal" },
"dep_time": { "type": "string", "description": "Scheduled departure time (local)" },
"dep_time_utc": { "type": "string", "description": "Scheduled departure time (UTC)" },
"arr_iata": { "type": "string", "description": "Arrival airport IATA code" },
"arr_icao": { "type": "string", "description": "Arrival airport ICAO code" },
"arr_terminal": { "type": "string", "description": "Arrival terminal" },
"arr_time": { "type": "string", "description": "Scheduled arrival time (local)" },
"arr_time_utc": { "type": "string", "description": "Scheduled arrival time (UTC)" },
"duration": { "type": "integer", "description": "Flight duration in minutes" },
"days": {
"type": "array",
"description": "Days of week the route operates",
"items": { "type": "string" }
},
"cs_airline_iata": { "type": "string", "description": "Codeshare airline IATA code" },
"cs_flight_number": { "type": "string", "description": "Codeshare flight number" },
"cs_flight_iata": { "type": "string", "description": "Codeshare flight IATA code" }
}
}