Envestnet · Schema

SummaryDetails

FinancialWealth ManagementOpen BankingAccount Aggregation

Properties

Name Type Description
name string Identifies the name of the type selected. If type is merchant, then the name indicates merchant name. If type is category, name indicates category name.
id integer unique identifier for the type. If type is category, id indicates category id.
creditTotal object
debitTotal object
netTotal object
transactionCount integer
transactionLink object
details array
View JSON Schema on GitHub

JSON Schema

envestnet-summarydetails-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/SummaryDetails",
  "title": "SummaryDetails",
  "type": "object",
  "properties": {
    "name": {
      "readOnly": true,
      "type": "string",
      "description": "Identifies the name of the type selected. If type is merchant, then the name indicates merchant name. If type is category, name indicates category name.",
      "example": "Entertainment"
    },
    "id": {
      "format": "int64",
      "description": "unique identifier for the type. If type is category, id indicates category id.",
      "readOnly": true,
      "type": "integer",
      "example": 7
    },
    "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"
        }
      ]
    },
    "details": {
      "readOnly": true,
      "type": "array",
      "items": {
        "$ref": "#/components/schemas/TransactionTrendDetails"
      }
    }
  }
}