{ "$schema": "https://json-structure.org/meta/core/v0/#", "$id": "https://raw.githubusercontent.com/api-evangelist/amadeus-solutions/refs/heads/main/json-structure/branded-fares-upsell-payment-structure.json", "name": "Payment", "description": "Payment schema", "type": "object", "properties": { "brand": { "$ref": "#/definitions/PaymentBrand" }, "binNumber": { "description": "The first 6 digits of the credit card", "type": "int32", "example": 123456, "pattern": "[0-9]{6}" }, "flightOfferIds": { "description": "Id of the flightOffers to pay", "type": "array", "minItems": 1, "maxItems": 6, "items": { "type": "string" }, "example": "1" } } }