Skip to content

Commit

Permalink
JSON Schema Update
Browse files Browse the repository at this point in the history
  • Loading branch information
binarysysadmin committed Feb 23, 2024
1 parent 71de0a1 commit ddeb65d
Show file tree
Hide file tree
Showing 5 changed files with 25 additions and 0 deletions.
7 changes: 7 additions & 0 deletions config/v3/get_settings/receive.json
Original file line number Diff line number Diff line change
Expand Up @@ -121,6 +121,13 @@
"Unemployed"
]
},
"fatca_declaration": {
"description": "Indicates client's self-declaration for FATCA.",
"type": [
"integer",
"null"
]
},
"feature_flag": {
"description": "Contains features that are enabled or disabled for this user",
"type": "object",
Expand Down
1 change: 1 addition & 0 deletions config/v3/new_account_maltainvest/example.json
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,7 @@
"employment_industry": "Finance",
"employment_status": "Self-Employed",
"estimated_worth": "$100,000 - $250,000",
"fatca_declaration": 1,
"first_name": "Peter",
"income_source": "Self-Employed",
"last_name": "Pan",
Expand Down
8 changes: 8 additions & 0 deletions config/v3/new_account_maltainvest/send.json
Original file line number Diff line number Diff line change
Expand Up @@ -193,6 +193,14 @@
"Over $1,000,000"
]
},
"fatca_declaration": {
"description": "[Optional] Indicates client's self-declaration of FATCA.",
"type": "integer",
"enum": [
0,
1
]
},
"first_name": {
"description": "Within 2-50 characters, use only letters, spaces, hyphens, full-stops or apostrophes.",
"type": "string",
Expand Down
1 change: 1 addition & 0 deletions config/v3/new_account_real/example.json
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@
"address_postcode": "3002",
"address_state": "Victoria",
"date_of_birth": "1980-01-31",
"fatca_declaration": 1,
"first_name": "Peter",
"last_name": "Pan",
"non_pep_declaration": 1,
Expand Down
8 changes: 8 additions & 0 deletions config/v3/new_account_real/send.json
Original file line number Diff line number Diff line change
Expand Up @@ -97,6 +97,14 @@
"type": "string",
"pattern": "^[0-9]{4}-[0-9]{1,2}-[0-9]{1,2}$"
},
"fatca_declaration": {
"description": "[Optional] Indicates client's self-declaration of FATCA.",
"type": "integer",
"enum": [
0,
1
]
},
"first_name": {
"description": "Within 2-50 characters, use only letters, spaces, hyphens, full-stops or apostrophes.",
"type": "string",
Expand Down

0 comments on commit ddeb65d

Please sign in to comment.