American Airlines · JSON Structure

Runway Developer Api Booking Structure

Booking schema

Type: object Properties: 4
AirlinesAviationFlightsTravelBookingDeveloper ExperienceFortune 100

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

Properties

id flightId passengers 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-booking-structure.json",
  "name": "Booking",
  "description": "Booking schema",
  "type": "object",
  "properties": {
    "id": {
      "type": "string"
    },
    "flightId": {
      "type": "string"
    },
    "passengers": {
      "type": "array",
      "items": {
        "type": "object",
        "properties": {
          "name": {
            "type": "string"
          },
          "seatNumber": {
            "type": "string"
          }
        }
      }
    },
    "status": {
      "type": "string"
    }
  }
}