Skip to content

Commit

Permalink
add pending status to account schema
Browse files Browse the repository at this point in the history
  • Loading branch information
kamil authored and muratabur committed Dec 12, 2024
1 parent 55c2cdc commit e97c9d9
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
4 changes: 3 additions & 1 deletion documentation/properties/status.md
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,9 @@ The **status** property indicates the current state of the financial product. A
### active
The account is active and in use by the customer.

### pending
Representing items in the course of collection or transmission to/from financial institutions but not yet received or paid

### transactional
The account is active in a transactional way, *transactional* being defined in accordance with the [Liquidity Regulations][lcr]:
> LCR Article 24(3):
Expand All @@ -50,7 +53,6 @@ Indicates profits that have not been verified by persons independent of the firm
### other
Any other status


## Customer

```bash
Expand Down
2 changes: 1 addition & 1 deletion v1-dev/account.json
Original file line number Diff line number Diff line change
Expand Up @@ -502,7 +502,7 @@
"status": {
"description": "Describes if the Account is active or been cancelled.",
"type": "string",
"enum": ["active","audited" , "cancelled", "cancelled_payout_agreed", "other", "transactional", "unaudited"]
"enum": ["active","audited" , "cancelled", "cancelled_payout_agreed", "other", "pending", "transactional", "unaudited"]
},
"trade_date": {
"description": "The timestamp that the trade or financial product terms are agreed. YYYY-MM-DDTHH:MM:SSZ in accordance with ISO 8601.",
Expand Down

0 comments on commit e97c9d9

Please sign in to comment.