Amadeus · JSON Structure

Transfer Book Credit Card Structure

information about payment card

Type: object Properties: 5 Required: 4
TravelTravel TechnologyReservationsFlightsHotelsAirlinesHospitalityTours and ActivitiesCars and TransfersDestination ContentItinerary ManagementTrip PlanningArtificial IntelligenceMarket Insights

Transfer Book Credit Card Structure is a JSON Structure definition published by Amadeus, describing 5 properties, of which 4 are required. It conforms to the https://json-structure.org/draft/v0/schema meta-schema.

Properties

number holderName vendorCode expiryDate cvv

Meta-schema: https://json-structure.org/draft/v0/schema

JSON Structure

Raw ↑
{
  "$schema": "https://json-structure.org/draft/v0/schema",
  "$id": "https://raw.githubusercontent.com/api-evangelist/amadeus/refs/heads/main/json-structure/transfer-book-credit-card-structure.json",
  "title": "CreditCard",
  "description": "information about payment card",
  "type": "object",
  "properties": {
    "number": {
      "type": "string",
      "description": "card number"
    },
    "holderName": {
      "type": "string",
      "description": "card holder name"
    },
    "vendorCode": {
      "type": "string",
      "description": "card vendor code, e.g VI \u2013 VISA, CA \u2013 MasterCard, AX \u2013 American Express etc"
    },
    "expiryDate": {
      "type": "string",
      "description": "card expiry date in format MMYY, e.g. 0237 for February 2037"
    },
    "cvv": {
      "type": "string",
      "description": "cerification calue number, as indicated on the credit card. Only for query"
    }
  },
  "required": [
    "number",
    "holderName",
    "vendorCode",
    "expiryDate"
  ]
}