Envestnet · Schema

Capability

FinancialWealth ManagementOpen BankingAccount Aggregation

Properties

Name Type Description
container array
name string
View JSON Schema on GitHub

JSON Schema

envestnet-capability-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/Capability",
  "title": "Capability",
  "type": "object",
  "properties": {
    "container": {
      "type": "array",
      "readOnly": true,
      "items": {
        "type": "string",
        "enum": [
          "bank",
          "creditCard",
          "investment",
          "insurance",
          "loan",
          "reward",
          "bill",
          "realEstate",
          "otherAssets",
          "otherLiabilities"
        ]
      }
    },
    "name": {
      "type": "string",
      "readOnly": true
    }
  }
}