Amadeus · Schema

CreditCardFee

CreditCardFee schema from Flight Offers Price

TravelTravel TechnologyReservationsFlightsHotelsAirlinesHospitalityTours and ActivitiesCars and TransfersDestination ContentItinerary ManagementTrip PlanningArtificial IntelligenceMarket Insights

Properties

Name Type Description
brand string credit card brand
amount string
currency string
flightOfferId string Id of the flightOffer concerned by the credit card fee
View JSON Schema on GitHub

JSON Schema

flight-offers-price-credit-card-fee-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://raw.githubusercontent.com/api-evangelist/amadeus/refs/heads/main/json-schema/flight-offers-price-credit-card-fee-schema.json",
  "title": "CreditCardFee",
  "description": "CreditCardFee schema from Flight Offers Price",
  "type": "object",
  "properties": {
    "brand": {
      "description": "credit card brand",
      "type": "string",
      "enum": [
        "VISA",
        "AMERICAN_EXPRESS",
        "MASTERCARD",
        "VISA_ELECTRON",
        "VISA_DEBIT",
        "MASTERCARD_DEBIT",
        "MAESTRO",
        "DINERS",
        "MASTERCARD_IXARIS",
        "VISA_IXARIS",
        "MASTERCARD_AIRPLUS",
        "UATP_AIRPLUS"
      ],
      "example": "VISA_IXARIS"
    },
    "amount": {
      "type": "string",
      "example": "1"
    },
    "currency": {
      "type": "string",
      "example": "USD"
    },
    "flightOfferId": {
      "description": "Id of the flightOffer concerned by the credit card fee",
      "type": "string",
      "example": "1"
    }
  }
}