Envestnet · Schema

ErrorInfo

Error encountered while refreshing a specific aggregated account.

FinancialWealth ManagementOpen BankingAccount Aggregation

Properties

Name Type Description
errorStatus string Error status
errorDescription string error description
lastUpdated string last updated
lastUpdateAttempt string The date information indicating the last refresh attempt.
View JSON Schema on GitHub

JSON Schema

envestnet-errorinfo-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/ErrorInfo",
  "title": "ErrorInfo",
  "description": "Error encountered while refreshing a specific aggregated account.",
  "properties": {
    "errorStatus": {
      "type": "string",
      "description": "Error status"
    },
    "errorDescription": {
      "type": "string",
      "description": "error description"
    },
    "lastUpdated": {
      "type": "string",
      "description": "last updated"
    },
    "lastUpdateAttempt": {
      "type": "string",
      "description": "The date information indicating the last refresh attempt."
    }
  },
  "required": [
    "errorStatus",
    "errorDescription",
    "lastUpdate",
    "lastUpdateAttemp"
  ]
}