Adyen · JSON Structure

Terminal Amounts Resp Structure

AmountsResp schema from Adyen API

Type: object Properties: 6 Required: 1
PaymentsFinancial ServicesFintech

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

Properties

Currency AuthorizedAmount TotalRebatesAmount TotalFeesAmount CashBackAmount TipAmount

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-resp-structure.json",
  "description": "AmountsResp schema from Adyen API",
  "type": "object",
  "properties": {
    "Currency": {
      "type": "string",
      "pattern": "^[A-Z]{3,3}$"
    },
    "AuthorizedAmount": {
      "type": "double",
      "maximum": 99999999.999999,
      "minimum": 0
    },
    "TotalRebatesAmount": {
      "type": "double",
      "maximum": 99999999.999999,
      "minimum": 0
    },
    "TotalFeesAmount": {
      "type": "double",
      "maximum": 99999999.999999,
      "minimum": 0
    },
    "CashBackAmount": {
      "type": "double",
      "maximum": 99999999.999999,
      "minimum": 0
    },
    "TipAmount": {
      "type": "double",
      "maximum": 99999999.999999,
      "minimum": 0
    }
  },
  "required": [
    "AuthorizedAmount"
  ],
  "name": "AmountsResp"
}