American Airlines · Schema

FlightList

FlightList schema

AirlinesAviationFlightsTravelBookingDeveloper ExperienceFortune 100

Properties

Name Type Description
flights array
View JSON Schema on GitHub

JSON Schema

runway-developer-api-flight-list-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-list-schema.json",
  "title": "FlightList",
  "description": "FlightList schema",
  "type": "object",
  "properties": {
    "flights": {
      "type": "array",
      "items": {
        "$ref": "#/components/schemas/Flight"
      }
    }
  }
}