{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/BankFeedTransactionRequestRequest", "title": "BankFeedTransactionRequestRequest", "type": "object", "properties": { "bank_feed_account": { "type": [ "string", "null" ], "format": "uuid", "description": "The bank feed account associated with the transaction." }, "transaction_date": { "type": [ "string", "null" ], "format": "date-time", "description": "The date that the transaction occurred." }, "posted_date": { "type": [ "string", "null" ], "format": "date-time", "description": "The date the transaction was posted to the bank account." }, "amount": { "type": [ "number", "null" ], "format": "double", "description": "The amount of the transaction." }, "description": { "type": [ "string", "null" ], "description": "The description of the transaction." }, "transaction_type": { "type": [ "string", "null" ], "description": "The underlying type of the transaction." }, "payee": { "type": [ "string", "null" ], "description": "The person or merchant who initiated the transaction, or alternatively, to whom the transaction was paid." }, "credit_or_debit": { "oneOf": [ { "$ref": "#/components/schemas/CreditOrDebitEnum" }, { "type": "null" } ], "description": "If the transaction is of type debit or credit." }, "source_transaction_id": { "type": [ "string", "null" ], "description": "The customer\u2019s identifier for the transaction." }, "integration_params": { "type": [ "object", "null" ], "additionalProperties": { "description": "Any type" } }, "linked_account_params": { "type": [ "object", "null" ], "additionalProperties": { "description": "Any type" } } }, "required": [ "bank_feed_account" ], "description": "# The BankFeedTransaction Object\n### Description\nThe `BankFeedTransaction` object is used to represent transactions linked to a bank feed account. This includes details about the transaction such as the date, amount, description, and type.\n\n### Usage Example\nFetch from the `GET BankFeedTransaction` endpoint to view details of a transaction associated with a bank feed account." }