Adyen · Schema

MinorUnitsMonetaryValue

PaymentsFinancial ServicesFintech

Properties

Name Type Description
amount integer The transaction amount, in [minor units](https://docs.adyen.com/development-resources/currency-codes).
currencyCode string The three-character [ISO currency code](https://docs.adyen.com/development-resources/currency-codes).
View JSON Schema on GitHub

JSON Schema

adyen-minorunitsmonetaryvalue-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/MinorUnitsMonetaryValue",
  "title": "MinorUnitsMonetaryValue",
  "properties": {
    "amount": {
      "description": "The transaction amount, in [minor units](https://docs.adyen.com/development-resources/currency-codes).",
      "format": "int32",
      "type": "integer"
    },
    "currencyCode": {
      "description": "The three-character [ISO currency code](https://docs.adyen.com/development-resources/currency-codes).",
      "type": "string"
    }
  },
  "type": "object"
}