Envestnet · Schema

RealEstateAccount

Account object that contains details about one or more aggregated real estate accounts.

FinancialWealth ManagementOpen BankingAccount Aggregation

Properties

Name Type Description
address object
changeValue array
View JSON Schema on GitHub

JSON Schema

envestnet-realestateaccount-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/RealEstateAccount",
  "title": "RealEstateAccount",
  "description": "Account object that contains details about one or more aggregated real estate accounts.",
  "allOf": [
    {
      "$ref": "#/components/schemas/AccountInfo"
    }
  ],
  "properties": {
    "address": {
      "readOnly": true,
      "allOf": [
        {
          "$ref": "#/components/schemas/Address"
        }
      ]
    },
    "changeValue": {
      "type": "array",
      "items": {
        "$ref": "#/components/schemas/ChangeValue"
      }
    }
  }
}