Envestnet · Schema

VerifyTransactionCriteria

FinancialWealth ManagementOpen BankingAccount Aggregation

Properties

Name Type Description
date string
amount number
verifiedTransaction array
matched string Indicates if the criteria is matched or not.
Applicable Values
keyword string
dateVariance string
baseType string Indicates if the transaction appears as a debit or a credit transaction in the account.

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

JSON Schema

envestnet-verifytransactioncriteria-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/VerifyTransactionCriteria",
  "title": "VerifyTransactionCriteria",
  "required": [
    "amount",
    "date"
  ],
  "type": "object",
  "properties": {
    "date": {
      "type": "string"
    },
    "amount": {
      "type": "number",
      "format": "double"
    },
    "verifiedTransaction": {
      "type": "array",
      "readOnly": true,
      "items": {
        "$ref": "#/components/schemas/Transaction"
      }
    },
    "matched": {
      "type": "string",
      "description": "Indicates if the criteria is matched or not. <br><b>Applicable Values</b><br>",
      "readOnly": true,
      "enum": [
        "COMPLETE",
        "NONE"
      ]
    },
    "keyword": {
      "type": "string"
    },
    "dateVariance": {
      "type": "string"
    },
    "baseType": {
      "type": "string",
      "description": "Indicates if the transaction appears as a debit or a credit transaction in the account. <br><br><b>Applicable containers</b>: bank,creditCard,investment,insurance,loan<br><b>Applicable Values</b><br>",
      "enum": [
        "CREDIT",
        "DEBIT"
      ]
    }
  }
}