Envestnet · Schema

AssetDetail

Summary information across all the aggregated accounts categorized as 'assets'.

FinancialWealth ManagementOpen BankingAccount Aggregation

Properties

Name Type Description
assetTotal object Total asset value.
View JSON Schema on GitHub

JSON Schema

envestnet-assetdetail-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/AssetDetail",
  "title": "AssetDetail",
  "description": "Summary information across all the aggregated accounts categorized as 'assets'.",
  "properties": {
    "assetTotal": {
      "description": "Total asset value.",
      "allOf": [
        {
          "$ref": "#/components/schemas/Money"
        }
      ],
      "readOnly": true
    }
  },
  "required": [
    "assetTotal"
  ]
}