Alaska Airlines · JSON Structure

Alaska Air Flight Status Flight List Structure

List of flights for a route and date

Type: object Properties: 4
AirlinesAviationTravelCargoLoyaltyFlight StatusFortune 500

FlightList is a JSON Structure definition published by Alaska Airlines, describing 4 properties. It conforms to the https://json-structure.org/meta/core/v0/# meta-schema.

Properties

flights originAirport destinationAirport flightDate

Meta-schema: https://json-structure.org/meta/core/v0/#

JSON Structure

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