Envestnet · Schema

CreditAcceleratorBalance

FinancialWealth ManagementOpen BankingAccount Aggregation

Properties

Name Type Description
date string Date of balance.
amount number Balance amount value.
currency object
View JSON Schema on GitHub

JSON Schema

envestnet-creditacceleratorbalance-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/CreditAcceleratorBalance",
  "title": "CreditAcceleratorBalance",
  "type": "object",
  "properties": {
    "date": {
      "type": "string",
      "description": "Date of balance.",
      "readOnly": true
    },
    "amount": {
      "type": "number",
      "description": "Balance amount value.",
      "format": "double",
      "readOnly": true
    },
    "currency": {
      "$ref": "#/components/schemas/CreditAcceleratorData"
    }
  }
}