{ "$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" ] }