Envestnet · Schema

DetailCategory

FinancialWealth ManagementOpen BankingAccount Aggregation

Properties

Name Type Description
name string The name of the detail category

Applicable containers: creditCard, investment, insurance, loan
id integer The unique identifier of the detail category.

Applicable containers: creditCard, investment, insurance, loan
View JSON Schema on GitHub

JSON Schema

envestnet-detailcategory-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/DetailCategory",
  "title": "DetailCategory",
  "type": "object",
  "properties": {
    "name": {
      "type": "string",
      "description": "The name of the detail category<br><br><b>Applicable containers</b>: creditCard, investment, insurance, loan<br>",
      "readOnly": true
    },
    "id": {
      "type": "integer",
      "description": "The unique identifier of the detail category.<br><br><b>Applicable containers</b>: creditCard, investment, insurance, loan<br>",
      "format": "int64",
      "readOnly": true
    }
  }
}