Envestnet · Schema

AccountHistory

FinancialWealth ManagementOpen BankingAccount Aggregation

Properties

Name Type Description
historicalBalances array
id integer
View JSON Schema on GitHub

JSON Schema

envestnet-accounthistory-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/AccountHistory",
  "title": "AccountHistory",
  "type": "object",
  "properties": {
    "historicalBalances": {
      "type": "array",
      "readOnly": true,
      "items": {
        "$ref": "#/components/schemas/HistoricalBalance"
      }
    },
    "id": {
      "type": "integer",
      "format": "int64",
      "readOnly": true
    }
  }
}