summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJoe Carstairs <me@joeac.net>2025-07-15 07:48:31 +0100
committerJoe Carstairs <me@joeac.net>2025-07-15 07:48:31 +0100
commit55296f35e44ba8f77acbe3a4f1115fff6e1acfd8 (patch)
tree1ca02a78c99debbc7ce05a7f31de02003d8c4824
parent4699be8a1f6ceab4200d391a94c5711f20f02615 (diff)
add dml-pipe
-rw-r--r--requirements/data_models/dml-pipe.md12
1 files changed, 12 insertions, 0 deletions
diff --git a/requirements/data_models/dml-pipe.md b/requirements/data_models/dml-pipe.md
new file mode 100644
index 0000000..a7d2e8a
--- /dev/null
+++ b/requirements/data_models/dml-pipe.md
@@ -0,0 +1,12 @@
+# dml-pipe
+
+A pipe represents how much money the user wants to come in or go out of a
+bucket. In other words, it represents a flow of money from the tank to a bucket.
+
+| Field | Type | Description |
+| ------ | ------ | -------------------------------------------------------- |
+| id | string | |
+| amount | number | The amount of money flowing through the pipe. |
+| period | string | How long it takes for `amount` to flow through the pipe. |
+
+Source: req-017