Adyen · JSON Structure

Terminal Amounts Req Structure

Amounts of a payment

Type: object Properties: 8 Required: 2
PaymentsFinancial ServicesFintech

AmountsReq is a JSON Structure definition published by Adyen, describing 8 properties, of which 2 are required. It conforms to the https://json-structure.org/meta/core/v0/# meta-schema.

Properties

Currency RequestedAmount CashBackAmount TipAmount PaidAmount MinimumAmountToDeliver MaximumCashBackAmount MinimumSplitAmount

Meta-schema: https://json-structure.org/meta/core/v0/#

JSON Structure

Raw ↑
{
  "$schema": "https://json-structure.org/meta/core/v0/#",
  "$id": "https://raw.githubusercontent.com/api-evangelist/adyen/refs/heads/main/json-structure/terminal-amounts-req-structure.json",
  "description": "Amounts of a payment",
  "type": "object",
  "properties": {
    "Currency": {
      "type": "string",
      "pattern": "^[A-Z]{3,3}$"
    },
    "RequestedAmount": {
      "type": "double",
      "maximum": 99999999.999999,
      "minimum": 0
    },
    "CashBackAmount": {
      "type": "double",
      "maximum": 99999999.999999,
      "minimum": 0
    },
    "TipAmount": {
      "type": "double",
      "maximum": 99999999.999999,
      "minimum": 0
    },
    "PaidAmount": {
      "type": "double",
      "maximum": 99999999.999999,
      "minimum": 0
    },
    "MinimumAmountToDeliver": {
      "type": "double",
      "maximum": 99999999.999999,
      "minimum": 0
    },
    "MaximumCashBackAmount": {
      "type": "double",
      "maximum": 99999999.999999,
      "minimum": 0
    },
    "MinimumSplitAmount": {
      "type": "double",
      "maximum": 99999999.999999,
      "minimum": 0
    }
  },
  "required": [
    "Currency",
    "RequestedAmount"
  ],
  "name": "AmountsReq"
}