Envestnet · Schema

PhoneNumber

FinancialWealth ManagementOpen BankingAccount Aggregation

Properties

Name Type Description
type string type of phone number
value string Phone Number
View JSON Schema on GitHub

JSON Schema

envestnet-phonenumber-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/PhoneNumber",
  "title": "PhoneNumber",
  "type": "object",
  "properties": {
    "type": {
      "type": "string",
      "description": "type of phone number",
      "readOnly": true,
      "enum": [
        "HOME",
        "WORK",
        "LANDLINE",
        "MOBILE"
      ]
    },
    "value": {
      "type": "string",
      "description": "Phone Number",
      "readOnly": true
    }
  }
}