Mastercard · Schema

Conversion

Credit CardsDigital IdentityFinancial ServicesFraud DetectionOpen BankingPaymentsFortune 500

Properties

Name Type Description
conversionRate number Rate applied to the transaction to convert from Transaction Currency to Cardholder Billing Currency.
crdhldBillAmt number Amount in the cardholder billing currency.
fxDate string Date of the requested FX rates.
transCurr string Currency of the transaction.
crdhldBillCurr string Cardholder billing currency.
transAmt number Amount in the transaction currency.
bankFee number Additional fees imposed by the bank.
errorCode string The error code associated with the error being returned.
errorMessage string The reason for the error.
View JSON Schema on GitHub

JSON Schema

mastercard-standard-currency-conversion-calculator-conversion-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "title": "Conversion",
  "type": "object",
  "properties": {
    "conversionRate": {
      "type": "number",
      "description": "Rate applied to the transaction to convert from Transaction Currency to Cardholder Billing Currency."
    },
    "crdhldBillAmt": {
      "type": "number",
      "description": "Amount in the cardholder billing currency."
    },
    "fxDate": {
      "type": "string",
      "description": "Date of the requested FX rates."
    },
    "transCurr": {
      "type": "string",
      "description": "Currency of the transaction."
    },
    "crdhldBillCurr": {
      "type": "string",
      "description": "Cardholder billing currency."
    },
    "transAmt": {
      "type": "number",
      "description": "Amount in the transaction currency."
    },
    "bankFee": {
      "type": "number",
      "description": "Additional fees imposed by the bank."
    },
    "errorCode": {
      "type": "string",
      "description": "The error code associated with the error being returned."
    },
    "errorMessage": {
      "type": "string",
      "description": "The reason for the error."
    }
  }
}