Skip to content

Commit

Permalink
add minimum_balance to account and loan schema
Browse files Browse the repository at this point in the history
  • Loading branch information
charlenechin committed May 16, 2024
1 parent e133040 commit 6eab37a
Show file tree
Hide file tree
Showing 3 changed files with 24 additions and 0 deletions.
14 changes: 14 additions & 0 deletions documentation/properties/minimum_balance.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
---
layout: property
title: "minimum_balance"
schemas: [account, loan]
---

# minimum_balance

---

The minimum balance that account holders must have in their account each day in any currency, set by the bank holding the account.

Indicates the minimum balance of each account within the aggregate. Monetary type represented as a naturally positive integer number of cents/pence.

5 changes: 5 additions & 0 deletions v1-dev/account.json
Original file line number Diff line number Diff line change
Expand Up @@ -247,6 +247,11 @@
"type": "integer",
"monetary": true
},
"minimum_balance": {
"description": "Indicates the minimum balance, in any currency, of each account within the aggregate. Monetary type represented as a naturally positive integer number of cents/pence.",
"type": "integer",
"monetary": true
},
"minimum_balance_eur": {
"description": "Indicates the minimum balance, in Euros, of each account within the aggregate. Monetary type represented as a naturally positive integer number of cents/pence.",
"type": "integer",
Expand Down
5 changes: 5 additions & 0 deletions v1-dev/loan.json
Original file line number Diff line number Diff line change
Expand Up @@ -318,6 +318,11 @@
"minimum": 0,
"monetary": true
},
"minimum_balance": {
"description": "Indicates the minimum balance, in any currency, of each loan within the aggregate.",
"type": "integer",
"monetary": true
},
"minimum_balance_eur": {
"description": "Indicates the minimum balance, in Euros, of each loan within the aggregate.",
"type": "integer",
Expand Down

0 comments on commit 6eab37a

Please sign in to comment.