Adyen · Schema

AmountsResp

AmountsResp schema from Adyen API

PaymentsFinancial ServicesFintech

Properties

Name Type Description
Currency string
AuthorizedAmount number
TotalRebatesAmount number
TotalFeesAmount number
CashBackAmount number
TipAmount number
View JSON Schema on GitHub

JSON Schema

terminal-amounts-resp-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://raw.githubusercontent.com/api-evangelist/adyen/refs/heads/main/json-schema/terminal-amounts-resp-schema.json",
  "title": "AmountsResp",
  "description": "AmountsResp schema from Adyen API",
  "type": "object",
  "properties": {
    "Currency": {
      "type": "string",
      "pattern": "^[A-Z]{3,3}$"
    },
    "AuthorizedAmount": {
      "type": "number",
      "maximum": 99999999.999999,
      "minimum": 0
    },
    "TotalRebatesAmount": {
      "type": "number",
      "maximum": 99999999.999999,
      "minimum": 0
    },
    "TotalFeesAmount": {
      "type": "number",
      "maximum": 99999999.999999,
      "minimum": 0
    },
    "CashBackAmount": {
      "type": "number",
      "maximum": 99999999.999999,
      "minimum": 0
    },
    "TipAmount": {
      "type": "number",
      "maximum": 99999999.999999,
      "minimum": 0
    }
  },
  "required": [
    "AuthorizedAmount"
  ]
}