Envestnet · Schema

CreditAcceleratorAllAccountAsset

FinancialWealth ManagementOpen BankingAccount Aggregation

Properties

Name Type Description
totalBalances array Total sum of currentBalance (Bank) and totalBalance (Investment) values across all Bank and Investment accounts, grouped by Currency.
totalInvestmentBalances array Total sum of Investment Balance values across all Investment accounts, grouped by Currency.
totalBankBalances array Total sum of currentBalance values across all Bank accounts, grouped by Currency.
adjustmentTxnSummary array Sum, count and average of Refund/Adjustment/Reimbursement Income transactions, grouped by currency.
creditTxnWithoutTransferSummary array Sum, count, and average of all credit transactions (excluding transfers), grouped by Currency.
largeTransferOccurrences array For each time period, the number of times where transactions exceeded the large transaction amount, grouped by Currency.
savingsTxnSummary array Sum of savings transactions, grouped by currency.
depositTxnSummary array Sum, count, and average of all deposit transactions, grouped by Currency..
largeDepositOccurrences array For each time period, the number of times where transactions exceeded the large transaction amount, grouped by Currency.
lowBalanceOccurrence object
negativeBalanceOccurrences array For each time period, the number of times where Daily Balance is less than zero, grouped by Currency.
transferTxnSummary array Sum, count, and average of all transfer transactions, grouped by Currency.
creditTxnWithTransferSummary array Sum, count, and average of all credit transactions (including transfers), grouped by Currency.
investmentHoldingSummary object
nsfOccurrences array For each time period, the number of times NSF has occurred, grouped by Currency.
View JSON Schema on GitHub

JSON Schema

envestnet-creditacceleratorallaccountasset-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/CreditAcceleratorAllAccountAsset",
  "title": "CreditAcceleratorAllAccountAsset",
  "type": "object",
  "properties": {
    "totalBalances": {
      "type": "array",
      "description": "Total sum of currentBalance (Bank) and totalBalance (Investment) values across all Bank and Investment accounts, grouped by Currency.",
      "readOnly": true,
      "items": {
        "$ref": "#/components/schemas/CreditAcceleratorBalance"
      }
    },
    "totalInvestmentBalances": {
      "type": "array",
      "description": "Total sum of Investment Balance values across all Investment accounts, grouped by Currency.",
      "readOnly": true,
      "items": {
        "$ref": "#/components/schemas/CreditAcceleratorBalance"
      }
    },
    "totalBankBalances": {
      "type": "array",
      "description": "Total sum of currentBalance values across all Bank accounts, grouped by Currency.",
      "readOnly": true,
      "items": {
        "$ref": "#/components/schemas/CreditAcceleratorBalance"
      }
    },
    "adjustmentTxnSummary": {
      "type": "array",
      "description": "Sum, count and average of Refund/Adjustment/Reimbursement Income transactions, grouped by currency.",
      "readOnly": true,
      "items": {
        "$ref": "#/components/schemas/CreditAcceleratorAllAccountBalanceSummary"
      }
    },
    "creditTxnWithoutTransferSummary": {
      "type": "array",
      "description": "Sum, count, and average of all credit transactions (excluding transfers), grouped by Currency.",
      "readOnly": true,
      "items": {
        "$ref": "#/components/schemas/CreditAcceleratorAllAccountBalanceSummary"
      }
    },
    "largeTransferOccurrences": {
      "type": "array",
      "description": "For each time period, the number of times where transactions exceeded the large transaction amount, grouped by Currency.",
      "readOnly": true,
      "items": {
        "$ref": "#/components/schemas/CreditAcceleratorAllAccountBalanceOccurrence"
      }
    },
    "savingsTxnSummary": {
      "type": "array",
      "description": "Sum of savings transactions, grouped by currency.",
      "readOnly": true,
      "items": {
        "$ref": "#/components/schemas/CreditAcceleratorAllAccountBalanceTxnSummary"
      }
    },
    "depositTxnSummary": {
      "type": "array",
      "description": "Sum, count, and average of all deposit transactions, grouped by Currency..",
      "readOnly": true,
      "items": {
        "$ref": "#/components/schemas/CreditAcceleratorAllAccountBalanceSummary"
      }
    },
    "largeDepositOccurrences": {
      "type": "array",
      "description": "For each time period, the number of times where transactions exceeded the large transaction amount, grouped by Currency.",
      "readOnly": true,
      "items": {
        "$ref": "#/components/schemas/CreditAcceleratorAllAccountBalanceOccurrence"
      }
    },
    "lowBalanceOccurrence": {
      "$ref": "#/components/schemas/CreditAcceleratorLowBalanceOccurenceALL"
    },
    "negativeBalanceOccurrences": {
      "type": "array",
      "description": "For each time period, the number of times where Daily Balance is less than zero, grouped by Currency.",
      "readOnly": true,
      "items": {
        "$ref": "#/components/schemas/CreditAcceleratorAllAccountBalanceOccurrence"
      }
    },
    "transferTxnSummary": {
      "type": "array",
      "description": "Sum, count, and average of all transfer transactions, grouped by Currency.",
      "readOnly": true,
      "items": {
        "$ref": "#/components/schemas/CreditAcceleratorAllAccountBalanceSummary"
      }
    },
    "creditTxnWithTransferSummary": {
      "type": "array",
      "description": "Sum, count, and average of all credit transactions (including transfers), grouped by Currency.",
      "readOnly": true,
      "items": {
        "$ref": "#/components/schemas/CreditAcceleratorAllAccountBalanceSummary"
      }
    },
    "investmentHoldingSummary": {
      "$ref": "#/components/schemas/CreditAcceleratorAllAccountInvestmentHoldingSummary"
    },
    "nsfOccurrences": {
      "type": "array",
      "description": "For each time period, the number of times NSF has occurred, grouped by Currency.",
      "readOnly": true,
      "items": {
        "$ref": "#/components/schemas/CreditAcceleratorAllAccountBalanceOccurrence"
      }
    }
  }
}