Envestnet · Schema

CreditAcceleratorAccountAddress

FinancialWealth ManagementOpen BankingAccount Aggregation

Properties

Name Type Description
zip string Zip.
country string Country.
address3 string Address Line 3.
address2 string Address Line 2.
city string City.
sourceType string Address Source.
address1 string Address Line 1.
street string Street.
fullAddress string Full Address.
state string State.
type string Type of address.
View JSON Schema on GitHub

JSON Schema

envestnet-creditacceleratoraccountaddress-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/CreditAcceleratorAccountAddress",
  "title": "CreditAcceleratorAccountAddress",
  "type": "object",
  "properties": {
    "zip": {
      "type": "string",
      "description": "Zip."
    },
    "country": {
      "type": "string",
      "description": "Country."
    },
    "address3": {
      "type": "string",
      "description": "Address Line 3."
    },
    "address2": {
      "type": "string",
      "description": "Address Line 2."
    },
    "city": {
      "type": "string",
      "description": "City."
    },
    "sourceType": {
      "type": "string",
      "description": "Address Source.",
      "readOnly": true
    },
    "address1": {
      "type": "string",
      "description": "Address Line 1."
    },
    "street": {
      "type": "string",
      "description": "Street.",
      "readOnly": true
    },
    "fullAddress": {
      "type": "string",
      "description": "Full Address.",
      "readOnly": true
    },
    "state": {
      "type": "string",
      "description": "State."
    },
    "type": {
      "type": "string",
      "description": "Type of address.",
      "readOnly": true,
      "enum": [
        "HOME",
        "BUSINESS",
        "POBOX",
        "RETAIL",
        "OFFICE",
        "SMALL_BUSINESS",
        "COMMUNICATION",
        "PERMANENT",
        "STATEMENT_ADDRESS",
        "PAYMENT",
        "PAYOFF",
        "UNKNOWN"
      ]
    }
  }
}