Envestnet · Schema

PredictedInfoDerived

provide the predicted balance aggregated across all account per date

FinancialWealth ManagementOpen BankingAccount Aggregation

Properties

Name Type Description
predictedBalance object predicted balance
date string date in yyyy-mm-dd format
accountIds array list of account id that constributed in the predicted balance.
View JSON Schema on GitHub

JSON Schema

envestnet-predictedinfoderived-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/PredictedInfoDerived",
  "title": "PredictedInfoDerived",
  "description": "provide the predicted balance aggregated across all account per date",
  "properties": {
    "predictedBalance": {
      "description": "predicted balance",
      "allOf": [
        {
          "$ref": "#/components/schemas/Money"
        }
      ],
      "readOnly": true
    },
    "date": {
      "description": "date in yyyy-mm-dd format",
      "type": "string",
      "readOnly": true
    },
    "accountIds": {
      "description": "list of account id that constributed in the predicted balance.",
      "type": "array",
      "items": {
        "type": "string"
      },
      "readOnly": true
    }
  }
}