From bf2722034f0ae8ddc2277894542b8d6eb3b90527 Mon Sep 17 00:00:00 2001 From: Joe Carstairs Date: Tue, 15 Jul 2025 13:48:04 +0100 Subject: add req-030 --- requirements/data_models/dml-drip.md | 14 ++++++++++++++ 1 file changed, 14 insertions(+) create mode 100644 requirements/data_models/dml-drip.md (limited to 'requirements/data_models/dml-drip.md') diff --git a/requirements/data_models/dml-drip.md b/requirements/data_models/dml-drip.md new file mode 100644 index 0000000..a421180 --- /dev/null +++ b/requirements/data_models/dml-drip.md @@ -0,0 +1,14 @@ +# 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. | + +Sources: req-030 -- cgit v1.2.3 From 519721cd14e31fcc6998b387a27eaf3ad34d2869 Mon Sep 17 00:00:00 2001 From: Joe Carstairs Date: Tue, 15 Jul 2025 15:09:31 +0100 Subject: add req-037 --- requirements/data_models/dml-drip.md | 17 +++++++++-------- 1 file changed, 9 insertions(+), 8 deletions(-) (limited to 'requirements/data_models/dml-drip.md') diff --git a/requirements/data_models/dml-drip.md b/requirements/data_models/dml-drip.md index a421180..127c73e 100644 --- a/requirements/data_models/dml-drip.md +++ b/requirements/data_models/dml-drip.md @@ -3,12 +3,13 @@ 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. | +| 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 +Sources: req-030, req-037 -- cgit v1.2.3