Adyen · Schema

AmountsResp

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

adyen-amountsresp-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/AmountsResp",
  "title": "AmountsResp",
  "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"
  ]
}