Booking schema
{ "$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-booking-schema.json", "title": "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" } } }