Southwest Airlines · Schema

Southwest Airlines Flight

Represents a Southwest Airlines scheduled flight including route, timing, aircraft, and status information.

Fortune 500AirlinesAviationTravel

Properties

Name Type Description
flightNumber string Southwest Airlines flight number (e.g., WN123).
departureAirport object The origin airport for this flight.
arrivalAirport object The destination airport for this flight.
scheduledDepartureTime string Scheduled departure date and time in ISO 8601 format.
scheduledArrivalTime string Scheduled arrival date and time in ISO 8601 format.
estimatedDepartureTime string Updated estimated departure time if different from scheduled.
estimatedArrivalTime string Updated estimated arrival time if different from scheduled.
flightStatus string Current operational status of the flight.
aircraftType string Aircraft model assigned to this flight (e.g., Boeing 737-800).
tailNumber string Aircraft registration tail number.
seatsAvailable integer Number of seats currently available for booking.
stops array Intermediate stops for connecting flights.
View JSON Schema on GitHub

JSON Schema

southwest-airlines-flight-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://api-evangelist.github.io/southwest-airlines/json-schema/southwest-airlines-flight-schema.json",
  "title": "Southwest Airlines Flight",
  "description": "Represents a Southwest Airlines scheduled flight including route, timing, aircraft, and status information.",
  "type": "object",
  "properties": {
    "flightNumber": {
      "type": "string",
      "description": "Southwest Airlines flight number (e.g., WN123).",
      "example": "WN4521"
    },
    "departureAirport": {
      "type": "object",
      "description": "The origin airport for this flight.",
      "properties": {
        "iataCode": { "type": "string", "minLength": 3, "maxLength": 3 },
        "name": { "type": "string" },
        "city": { "type": "string" },
        "state": { "type": "string" }
      },
      "required": ["iataCode"]
    },
    "arrivalAirport": {
      "type": "object",
      "description": "The destination airport for this flight.",
      "properties": {
        "iataCode": { "type": "string", "minLength": 3, "maxLength": 3 },
        "name": { "type": "string" },
        "city": { "type": "string" },
        "state": { "type": "string" }
      },
      "required": ["iataCode"]
    },
    "scheduledDepartureTime": {
      "type": "string",
      "format": "date-time",
      "description": "Scheduled departure date and time in ISO 8601 format."
    },
    "scheduledArrivalTime": {
      "type": "string",
      "format": "date-time",
      "description": "Scheduled arrival date and time in ISO 8601 format."
    },
    "estimatedDepartureTime": {
      "type": "string",
      "format": "date-time",
      "description": "Updated estimated departure time if different from scheduled."
    },
    "estimatedArrivalTime": {
      "type": "string",
      "format": "date-time",
      "description": "Updated estimated arrival time if different from scheduled."
    },
    "flightStatus": {
      "type": "string",
      "enum": ["On Time", "Delayed", "Cancelled", "Departed", "Arrived", "Boarding"],
      "description": "Current operational status of the flight."
    },
    "aircraftType": {
      "type": "string",
      "description": "Aircraft model assigned to this flight (e.g., Boeing 737-800).",
      "example": "Boeing 737 MAX 8"
    },
    "tailNumber": {
      "type": "string",
      "description": "Aircraft registration tail number."
    },
    "seatsAvailable": {
      "type": "integer",
      "description": "Number of seats currently available for booking.",
      "minimum": 0
    },
    "stops": {
      "type": "array",
      "description": "Intermediate stops for connecting flights.",
      "items": {
        "type": "object",
        "properties": {
          "iataCode": { "type": "string" },
          "stopDuration": { "type": "integer", "description": "Stop duration in minutes" }
        }
      }
    }
  },
  "required": ["flightNumber", "departureAirport", "arrivalAirport", "scheduledDepartureTime", "scheduledArrivalTime"]
}

Work with this as data

Every JSON Schema here is available over the APIs.io API and to AI agents over MCP.

MCP server

One button, every client — Claude, Cursor, VS Code and the rest.

https://apis.io/mcp

Tools for schemas

4 MCP tools reach this
  • find_json_schemasBrowse and filter every JSON Schema in the catalog.
  • apis_io_searchSTART HERE — APIs, providers and tags for one query, each with its total.
  • resolveTurn a domain, URL or GitHub org into the provider it belongs to.
  • find_cohortsEvery scored population of providers in the catalog.
All 92 tools

Call it yourself

curl for this page
This JSON Schema
curl "https://apis.io/api/v1/json-schemas/southwest-airlines-flight"
All schemas
curl "https://apis.io/api/v1/json-schemas?limit=25"

Discovery needs no key. Ratings and market analysis are Pro.

Get an API key

Free tier, no email required.

A second provider on the same verified email joins the account you already have.