Envestnet · Schema

AccountDetail

FinancialWealth ManagementOpen BankingAccount Aggregation

Properties

Name Type Description
date string date in the format yyyy-mm-dd
predictedBalance object predicted balance across a single account as of date.
View JSON Schema on GitHub

JSON Schema

envestnet-accountdetail-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/AccountDetail",
  "title": "AccountDetail",
  "properties": {
    "date": {
      "description": "date in the  format yyyy-mm-dd",
      "type": "string"
    },
    "predictedBalance": {
      "description": "predicted balance across a single account as of date.",
      "allOf": [
        {
          "$ref": "#/components/schemas/Money"
        }
      ],
      "readOnly": true
    }
  },
  "required": [
    "dateRange",
    "debitTotal",
    "creditTotal",
    "netTotal"
  ]
}