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