Alaska Airlines · Schema

AirportList

List of Alaska Airlines served airports

AirlinesAviationTravelCargoLoyaltyFlight StatusFortune 500

Properties

Name Type Description
airports array
totalCount integer Total airport count
View JSON Schema on GitHub

JSON Schema

alaska-air-flight-schedules-airport-list-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://raw.githubusercontent.com/api-evangelist/alaska-air/refs/heads/main/json-schema/alaska-air-flight-schedules-airport-list-schema.json",
  "title": "AirportList",
  "description": "List of Alaska Airlines served airports",
  "type": "object",
  "properties": {
    "airports": {
      "type": "array",
      "items": {
        "$ref": "#/components/schemas/AirportInfo"
      }
    },
    "totalCount": {
      "type": "integer",
      "description": "Total airport count",
      "example": 115
    }
  }
}