Envestnet · Schema

BasicPeerDetail

Peer data information.

FinancialWealth ManagementOpen BankingAccount Aggregation

Properties

Name Type Description
dateRange object The date range considered to compute the benchmark values
benchmarkAsOf string benchmarkAsOf identifies the date on which the benchmark was computed. Currently the benchmark is recomputed on the 16th of each month.
benchmark array
View JSON Schema on GitHub

JSON Schema

envestnet-basicpeerdetail-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/BasicPeerDetail",
  "title": "BasicPeerDetail",
  "description": "Peer data information.",
  "properties": {
    "dateRange": {
      "description": "The date range considered to compute the benchmark values",
      "allOf": [
        {
          "$ref": "#/components/schemas/DateRange"
        }
      ]
    },
    "benchmarkAsOf": {
      "type": "string",
      "description": "benchmarkAsOf identifies the date on which the benchmark was computed. Currently the benchmark  is recomputed on the 16th of each month.",
      "readOnly": true
    },
    "benchmark": {
      "type": "array",
      "items": {
        "$ref": "#/components/schemas/BasicBenchMark"
      }
    }
  },
  "required": [
    "dateRange",
    "benchmarkAsOf"
  ]
}