Amadeus Solutions · JSON Structure

Branded Fares Upsell Payment Structure

Payment schema

Type: object Properties: 3
AirlinesBookingFlightsGDSHotelsTravelTravel Technology

Payment is a JSON Structure definition published by Amadeus Solutions, describing 3 properties. It conforms to the https://json-structure.org/meta/core/v0/# meta-schema.

Properties

brand binNumber flightOfferIds

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/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"
    }
  }
}