Modern Treasury · Schema

transaction_line_item_create_request

FintechPaymentsACHWiresTreasury

Properties

Name Type Description
amount integer If a matching object exists in Modern Treasury, `amount` will be populated. Value in specified currency's smallest unit (taken from parent Transaction).
expected_payment_id string The ID of the reconciled Expected Payment, otherwise `null`.
transaction_id string The ID of the parent transaction.
View JSON Schema on GitHub

JSON Schema

modern-treasury-transaction-line-item-create-request-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/transaction_line_item_create_request",
  "title": "transaction_line_item_create_request",
  "type": "object",
  "properties": {
    "amount": {
      "type": "integer",
      "description": "If a matching object exists in Modern Treasury, `amount` will be populated. Value in specified currency's smallest unit (taken from parent Transaction)."
    },
    "expected_payment_id": {
      "type": "string",
      "format": "uuid",
      "description": "The ID of the reconciled Expected Payment, otherwise `null`."
    },
    "transaction_id": {
      "type": "string",
      "format": "uuid",
      "description": "The ID of the parent transaction."
    }
  },
  "required": [
    "amount",
    "transaction_id",
    "expected_payment_id"
  ]
}