Envestnet · Schema

Coordinates

FinancialWealth ManagementOpen BankingAccount Aggregation

Properties

Name Type Description
latitude number Latitude of the merchant

Applicable containers: bank,creditCard,loan
longitude number Longitude of the merchant

Applicable containers: bank,creditCard,loan
View JSON Schema on GitHub

JSON Schema

envestnet-coordinates-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/Coordinates",
  "title": "Coordinates",
  "type": "object",
  "properties": {
    "latitude": {
      "type": "number",
      "description": "Latitude of the merchant<br><br><b>Applicable containers</b>: bank,creditCard,loan<br>",
      "format": "double"
    },
    "longitude": {
      "type": "number",
      "description": "Longitude of the merchant<br><br><b>Applicable containers</b>: bank,creditCard,loan<br>",
      "format": "double"
    }
  }
}