Envestnet · Schema

Identifier

FinancialWealth ManagementOpen BankingAccount Aggregation

Properties

Name Type Description
type string Type of Identifier
value string Value of the identifier
View JSON Schema on GitHub

JSON Schema

envestnet-identifier-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/Identifier",
  "title": "Identifier",
  "type": "object",
  "properties": {
    "type": {
      "type": "string",
      "description": "Type of Identifier",
      "readOnly": true,
      "enum": [
        "NIE",
        "DNI",
        "EIN",
        "BN",
        "AADHAR",
        "NIN",
        "NRIC"
      ]
    },
    "value": {
      "type": "string",
      "description": "Value of the identifier",
      "readOnly": true
    }
  }
}