Envestnet · Schema

Preferences

FinancialWealth ManagementOpen BankingAccount Aggregation

Properties

Name Type Description
id integer Id of the preference
label string Detailed description for each preference
title string Type of the preferences
additionalUseOfData
userDataPurge
type string Visual Type of the preference selection
value string Value of the preference
View JSON Schema on GitHub

JSON Schema

envestnet-preferences-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/Preferences",
  "title": "Preferences",
  "required": [
    "id",
    "title",
    "type",
    "value"
  ],
  "type": "object",
  "properties": {
    "id": {
      "type": "integer",
      "description": "Id of the preference",
      "format": "int32"
    },
    "label": {
      "type": "string",
      "description": "Detailed description for each preference"
    },
    "title": {
      "type": "string",
      "description": "Type of the preferences <br/> additionalUseOfData<br/> userDataPurge"
    },
    "type": {
      "type": "string",
      "description": "Visual Type of the preference selection"
    },
    "value": {
      "type": "string",
      "description": "Value of the preference"
    }
  }
}