Envestnet · Schema

BasicMerchant

Information about the associated merchant.

FinancialWealth ManagementOpen BankingAccount Aggregation

Properties

Name Type Description
name string The name of the merchant associated with the transaction. Note - The merchant name field is available only in the United States, Canada, United Kingdom, and India.
address object
basicPredictedEvents array
View JSON Schema on GitHub

JSON Schema

envestnet-basicmerchant-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/BasicMerchant",
  "title": "BasicMerchant",
  "description": "Information about the associated merchant.",
  "properties": {
    "name": {
      "type": "string",
      "description": "The name of the merchant associated with the transaction. Note - The merchant name field is available only in the United  States, Canada, United Kingdom, and India."
    },
    "address": {
      "readOnly": true,
      "allOf": [
        {
          "$ref": "#/components/schemas/Address"
        }
      ]
    },
    "basicPredictedEvents": {
      "type": "array",
      "items": {
        "$ref": "#/components/schemas/BasicPredictedEvent"
      }
    }
  },
  "required": [
    "name"
  ]
}