Payment
Amount Limit
AmountLimit
Validates transaction amount against configurable limits
Published February 16, 2026Execution Phases
This control can execute during the following transaction phases.
Pre-Escrow Executes before funds are locked in escrow
Configuration
This control accepts the following configuration parameters.
{
"type": "object",
"properties": {
"maxAmount": {
"type": "number",
"minimum": 1,
"description": "Maximum transaction amount"
},
"minAmount": {
"type": "number",
"minimum": 0,
"description": "Minimum transaction amount"
}
}
} Tags
Documentation
Enforces minimum and maximum transaction amounts. Prevents micro-transactions and unusually large transfers.