Adyen · Schema

SplitAmount

PaymentsFinancial ServicesFintech

Properties

Name Type Description
currency string The three-character [ISO currency code](https://docs.adyen.com/development-resources/currency-codes). By default, this is the original payment currency.
value integer The value of the split amount, in [minor units](https://docs.adyen.com/development-resources/currency-codes).
View JSON Schema on GitHub

JSON Schema

adyen-splitamount-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/SplitAmount",
  "title": "SplitAmount",
  "properties": {
    "currency": {
      "description": "The three-character [ISO currency code](https://docs.adyen.com/development-resources/currency-codes). By default, this is the original payment currency.",
      "maxLength": 3,
      "minLength": 3,
      "type": "string"
    },
    "value": {
      "description": "The value of the split amount, in [minor units](https://docs.adyen.com/development-resources/currency-codes).",
      "format": "int64",
      "type": "integer"
    }
  },
  "required": [
    "value"
  ],
  "type": "object"
}