{ "$schema": "https://json-schema.org/draft/2020-12/schema", "title": "Deposit Transaction entity", "description": "A transaction on a deposit account type\n", "type": "object", "allOf": [ { "$ref": "#/components/schemas/Transaction" }, { "type": "object", "properties": { "accountCategory": { "type": "string", "enum": [ "DEPOSIT_ACCOUNT" ] }, "payee": { "allOf": [ { "$ref": "#/components/schemas/String255" } ], "description": "Payee name.\nThis is deprecated and will be removed in a future major release in place of `transactionPayee`\nwhich provides detailed information of a payee's name and place of business on the `Transaction` entity\n" }, "checkNumber": { "type": "integer", "description": "Check number. Plaid expects this solely if the transaction involves a check\n" } }, "required": [ "accountCategory" ] } ], "example": { "accountCategory": "DEPOSIT_ACCOUNT", "transactionId": "78RJ3311PLU34300E", "transactionTimestamp": "2024-07-15T14:46:41.375+02:00", "description": "ATM deposit", "debitCreditMemo": "DEBIT", "status": "PENDING", "amount": 38.9 } }