Adyen · Schema

AdditionalCommission

AdditionalCommission schema from Adyen API

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

management-additional-commission-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/management-additional-commission-schema.json",
  "title": "AdditionalCommission",
  "description": "AdditionalCommission schema from Adyen API",
  "type": "object",
  "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"
    }
  }
}