Envestnet · Schema

Recommendation

FinancialWealth ManagementOpen BankingAccount Aggregation

Properties

Name Type Description
id number The unique identifier for a user recommendation created by the system.

Endpoints -
  • GET /views/recommendations
metadata object
view array
View JSON Schema on GitHub

JSON Schema

envestnet-recommendation-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/Recommendation",
  "title": "Recommendation",
  "properties": {
    "id": {
      "type": "number",
      "description": "The unique identifier for a user recommendation created by the system. <br><br><b>Endpoints</b> -<ul><li>GET /views/recommendations</li></ul>",
      "example": 11
    },
    "metadata": {
      "$ref": "#/components/schemas/RecommendationMetadata"
    },
    "view": {
      "type": "array",
      "items": {
        "$ref": "#/components/schemas/View"
      }
    }
  }
}