American Airlines · Schema

FlightStatus

FlightStatus schema

AirlinesAviationFlightsTravelBookingDeveloper ExperienceFortune 100

Properties

Name Type Description
flightId string
status string
gate string
delay integer
View JSON Schema on GitHub

JSON Schema

runway-developer-api-flight-status-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://raw.githubusercontent.com/api-evangelist/american-airlines/refs/heads/main/json-schema/runway-developer-api-flight-status-schema.json",
  "title": "FlightStatus",
  "description": "FlightStatus schema",
  "type": "object",
  "properties": {
    "flightId": {
      "type": "string"
    },
    "status": {
      "type": "string"
    },
    "gate": {
      "type": "string"
    },
    "delay": {
      "type": "integer"
    }
  }
}