blob: e306a28a2771940c15d15ff5a4fe3b0e3e4d7d8c (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
# dml-transaction
A transaction represents a real transaction, such as buying a beer or depositing
a wage slip. It may be associated with at most one bucket.
| Field | Type | Description |
| ------------ | ------- | ---------------------------------------------------------- |
| id | string | |
| amount | number | The amount of money involved in the transaction. |
| date | date | The calendar date when the transaction took place. |
| counterparty | string | The other party in the transaction. |
| bucket_id | string? | The bucket associated with the transaction. |
| timestamp | number | The time the transaction was inserted as a Unix timestamp. |
Sources: req-107, req-108, req-109, req-110
|