Adyen · Schema

CapitalBalance

PaymentsFinancial ServicesFintech

Properties

Name Type Description
currency string The three-character [ISO currency code](https://docs.adyen.com/development-resources/currency-codes).
fee integer Fee amount.
principal integer Principal amount.
total integer Total amount. A sum of principal amount and fee amount.
View JSON Schema on GitHub

JSON Schema

adyen-capitalbalance-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/CapitalBalance",
  "title": "CapitalBalance",
  "properties": {
    "currency": {
      "description": "The three-character [ISO currency code](https://docs.adyen.com/development-resources/currency-codes).",
      "type": "string"
    },
    "fee": {
      "description": "Fee amount.",
      "format": "int64",
      "type": "integer"
    },
    "principal": {
      "description": "Principal amount.",
      "format": "int64",
      "type": "integer"
    },
    "total": {
      "description": "Total amount. A sum of principal amount and fee amount.",
      "format": "int64",
      "type": "integer"
    }
  },
  "required": [
    "principal",
    "fee",
    "total",
    "currency"
  ],
  "type": "object"
}