summaryrefslogtreecommitdiff
path: root/requirements/data_models/dml-drip.md
blob: aa0ed110b94dee4f22e37df25b54691261dea265 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
# dml-drip

A drip represents a single daily transaction from the tank into a bucket as a
result of a pipe.

| Field     | Type   | Description                                                   |
| --------- | ------ | ------------------------------------------------------------- |
| id        | string | A unique ID.                                                  |
| bucket_id | string | The ID of the bucket into which this drip drap.               |
| pipe_id   | string | The ID of the pipe which from which this drip drap.           |
| date      | date   | The date on which this drip drap.                             |
| amount    | number | The amount of money which dripped.                            |
| timestamp | number | The time on which this drip was inserted as a Unix timestamp. |

Sources: req-030, req-037, req-092