Adyen · Schema

AdditionalCommission

PaymentsFinancial ServicesFintech

Properties

Name Type Description
balanceAccountId string Unique identifier of the balance account to which the additional commission is booked.
fixedAmount integer A fixed commission fee, in minor units.
variablePercentage integer A variable commission fee, in basis points.
View JSON Schema on GitHub

JSON Schema

adyen-additionalcommission-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/AdditionalCommission",
  "title": "AdditionalCommission",
  "properties": {
    "balanceAccountId": {
      "description": "Unique identifier of the balance account to which the additional commission is booked.",
      "type": "string"
    },
    "fixedAmount": {
      "description": "A fixed commission fee, in minor units.",
      "format": "int64",
      "type": "integer"
    },
    "variablePercentage": {
      "description": "A variable commission fee, in basis points.",
      "format": "int64",
      "type": "integer"
    }
  },
  "type": "object"
}