{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "https://raw.githubusercontent.com/api-evangelist/amadeus/refs/heads/main/json-schema/flight-create-orders-other-method-schema.json", "title": "OtherMethod", "description": "other payment method", "type": "object", "properties": { "method": { "description": "other payment method", "type": "string", "enum": [ "ACCOUNT", "CHECK", "CASH", "NONREFUNDABLE" ], "example": "CASH" }, "flightOfferIds": { "description": "Id of the concern flightOffers", "type": "array", "minItems": 1, "maxItems": 6, "items": { "type": "string" }, "example": "1" } } }