Envestnet · Schema

BasicView

Object that contains details about one or more user/system created VIEWs.

FinancialWealth ManagementOpen BankingAccount Aggregation

Properties

Name Type Description
basicAccount array
cardAccount array
basicTrend array
id string Unique identifier created by the system for a VIEW.
name string The description provided for the VIEW while creating/updating a VIEW.
link object
View JSON Schema on GitHub

JSON Schema

envestnet-basicview-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/BasicView",
  "title": "BasicView",
  "description": "Object that contains details about one or more user/system created VIEWs.",
  "properties": {
    "basicAccount": {
      "type": "array",
      "items": {
        "$ref": "#/components/schemas/BasicAccount"
      }
    },
    "cardAccount": {
      "type": "array",
      "items": {
        "$ref": "#/components/schemas/CardAccount"
      }
    },
    "basicTrend": {
      "type": "array",
      "items": {
        "$ref": "#/components/schemas/BasicTrend"
      }
    },
    "id": {
      "type": "string",
      "description": "Unique identifier created by the system for a VIEW.",
      "readOnly": true
    },
    "name": {
      "type": "string",
      "description": "The description provided for the VIEW while creating/updating a VIEW.",
      "readOnly": true
    },
    "link": {
      "allOf": [
        {
          "$ref": "#/components/schemas/ViewLink"
        }
      ]
    }
  },
  "required": [
    "id",
    "name",
    "link"
  ]
}