summaryrefslogtreecommitdiff
path: root/requirements/data_models
diff options
context:
space:
mode:
authorJoe Carstairs <jcarstairs@scottlogic.com>2025-07-16 16:29:57 +0100
committerJoe Carstairs <jcarstairs@scottlogic.com>2025-07-16 16:29:57 +0100
commit588c74956010ab9ab68efd53974f36840b17325b (patch)
tree1da556d88e7813be91918eb1cd7efad3242aab72 /requirements/data_models
parent15396ad47e734c01d974f9b5de64b3fbdab2b7ea (diff)
edit req-017, dml-bucket
Diffstat (limited to 'requirements/data_models')
-rw-r--r--requirements/data_models/dml-bucket.md12
1 files changed, 6 insertions, 6 deletions
diff --git a/requirements/data_models/dml-bucket.md b/requirements/data_models/dml-bucket.md
index 3e33028..f8fd1da 100644
--- a/requirements/data_models/dml-bucket.md
+++ b/requirements/data_models/dml-bucket.md
@@ -2,11 +2,11 @@
A bucket represents a real category of spending, like beer or holidays.
-| Field | Type | Description |
-| ----------------- | ------ | ----------------------------------------------------- |
-| name | string | A short description of the real category of spending. |
-| balance | number | The amount of money currently in the bucket. |
-| balance_cache_key | string | A cache key for the balance. See notes. |
+| Field | Type | Description |
+| ----------------- | ------ | --------------------------------------------------------- |
+| name | string | A short description of the real category of spending. |
+| balance | number | The amount of money the user intends to be free to spend. |
+| balance_cache_key | string | A cache key for the balance. See notes. |
Constraints:
@@ -14,6 +14,6 @@ Constraints:
Notes:
-- `balance_cache_key` must be of the format: `<drip_id>:<transaction_id>`.
+- `balance_cache_key` must be of the format: `<drip_id>:<transaction_id>`.
Sources: req-027, req-028, req-030