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