Amadeus Reservations · JSON Structure

Flight Order Management Credit Card Structure

credit card

Type: object Properties: 0
BookingFlightsHotelsReservationsTravel

CreditCard is a JSON Structure definition published by Amadeus Reservations. It conforms to the https://json-structure.org/meta/core/v0/# meta-schema.

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-reservations/refs/heads/main/json-structure/flight-order-management-credit-card-structure.json",
  "name": "CreditCard",
  "description": "credit card",
  "type": "object",
  "allOf": [
    {
      "$ref": "#/definitions/CreditCardCommon"
    },
    {
      "type": "object",
      "properties": {
        "securityCode": {
          "description": "card security code",
          "type": "string",
          "example": "123"
        },
        "flightOfferIds": {
          "description": "Id of the concern flightOffers",
          "type": "array",
          "minItems": 1,
          "maxItems": 6,
          "items": {
            "type": "string"
          },
          "example": "1"
        }
      }
    }
  ]
}