Envestnet · Schema

TransactionSummaryDetails

FinancialWealth ManagementOpen BankingAccount Aggregation

Properties

Name Type Description
date string date
creditTotal object
debitTotal object
netTotal object
transactionCount integer
transactionLink object
View JSON Schema on GitHub

JSON Schema

envestnet-transactiontrenddetails-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/TransactionTrendDetails",
  "title": "TransactionSummaryDetails",
  "type": "object",
  "properties": {
    "date": {
      "description": "date",
      "readOnly": true,
      "type": "string",
      "example": "2020-04-01"
    },
    "creditTotal": {
      "$ref": "#/components/schemas/Money"
    },
    "debitTotal": {
      "$ref": "#/components/schemas/Money"
    },
    "netTotal": {
      "$ref": "#/components/schemas/Money"
    },
    "transactionCount": {
      "format": "int64",
      "readOnly": true,
      "type": "integer"
    },
    "transactionLink": {
      "allOf": [
        {
          "$ref": "#/components/schemas/TransactionTrendSummaryLink"
        }
      ]
    }
  }
}