Adyen · Schema

AccountDetailBalance

PaymentsFinancial ServicesFintech

Properties

Name Type Description
accountCode string The code of the account that holds the balance.
detailBalance object Details of the balance held by the account.
View JSON Schema on GitHub

JSON Schema

adyen-accountdetailbalance-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/AccountDetailBalance",
  "title": "AccountDetailBalance",
  "properties": {
    "accountCode": {
      "description": "The code of the account that holds the balance.",
      "type": "string"
    },
    "detailBalance": {
      "description": "Details of the balance held by the account.",
      "$ref": "#/components/schemas/DetailBalance"
    }
  },
  "type": "object"
}