Envestnet · Schema

PeerDataAtGeo

FinancialWealth ManagementOpen BankingAccount Aggregation

Properties

Name Type Description
numberOfPeers integer Median number of the peers in the same income range for which the response is returned

Endpoints -
  • GET /Views/{ViewId}/peerData
spendAmount object The median amount spent by the peers in that segment for the specified category or merchant
View JSON Schema on GitHub

JSON Schema

envestnet-peerdataatgeo-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/PeerDataAtGeo",
  "title": "PeerDataAtGeo",
  "properties": {
    "numberOfPeers": {
      "type": "integer",
      "description": "Median number of the peers in the same income range for which the response is returned<br><br><b>Endpoints</b> -<ul><li>GET /Views/{ViewId}/peerData</li></ul>",
      "format": "int64",
      "example": 1654
    },
    "spendAmount": {
      "description": "The median amount spent by the peers in that segment for the specified category or merchant <br>",
      "allOf": [
        {
          "$ref": "#/components/schemas/Money"
        }
      ]
    }
  }
}