Adyen · Schema

CapitalBalance

CapitalBalance schema from Adyen API

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

configuration-capital-balance-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/configuration-capital-balance-schema.json",
  "title": "CapitalBalance",
  "description": "CapitalBalance schema from Adyen API",
  "type": "object",
  "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"
  ]
}