{ "$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.
Applicable Values
", "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.

Applicable containers: bank,creditCard,investment,insurance,loan
Applicable Values
", "enum": [ "CREDIT", "DEBIT" ] } } }