CreditCard

credit card

BookingFlightsHotelsReservationsTravel
View JSON Schema on GitHub

JSON Schema

flight-order-management-credit-card-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://raw.githubusercontent.com/api-evangelist/amadeus-reservations/refs/heads/main/json-schema/flight-order-management-credit-card-schema.json",
  "title": "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"
        }
      }
    }
  ]
}