{ "$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-request-schema.json", "title": "BookingRequest", "description": "BookingRequest schema", "type": "object", "properties": { "flightId": { "type": "string" }, "passengers": { "type": "array", "items": { "type": "object", "properties": { "firstName": { "type": "string" }, "lastName": { "type": "string" } } } } } }