American Airlines · JSON Structure

Runway Developer Api Flight Structure

Flight schema

Type: object Properties: 7
AirlinesAviationFlightsTravelBookingDeveloper ExperienceFortune 100

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

Properties

id flightNumber origin destination departureTime arrivalTime status

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/american-airlines/refs/heads/main/json-structure/runway-developer-api-flight-structure.json",
  "name": "Flight",
  "description": "Flight schema",
  "type": "object",
  "properties": {
    "id": {
      "type": "string"
    },
    "flightNumber": {
      "type": "string"
    },
    "origin": {
      "type": "string"
    },
    "destination": {
      "type": "string"
    },
    "departureTime": {
      "type": "datetime"
    },
    "arrivalTime": {
      "type": "datetime"
    },
    "status": {
      "type": "string"
    }
  }
}