Skip to content

Commit

Permalink
Add banking license and accelerator url field
Browse files Browse the repository at this point in the history
  • Loading branch information
Gdewilde committed Aug 24, 2019
1 parent ad9d948 commit f485eee
Show file tree
Hide file tree
Showing 5 changed files with 37 additions and 5 deletions.
2 changes: 2 additions & 0 deletions CONTRIBUTING.md
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,7 @@ are the best way to propose changes to the codebase (we use [Github Flow](https:
"website": "https://www.hsbc.com/",
"ownership": [],
"stateOwned": false,
"thirdPartyBankingLicense": null,
"countryHQ": "GB",
"countries": ["EU"],
"compliance": [
Expand All @@ -46,6 +47,7 @@ are the best way to propose changes to the codebase (we use [Github Flow](https:
"sourceUrl": "https://www.businesswire.com/news/home/20190307005306/en/HSBC-Launches-PSD2-Developer-Portal-Expanded-APIs"
},
"developerPortalUrl": "https://developer.hsbc.com/",
"acceleratorProgramUrl": null,
"apiAccess": "verifiedTpp",
"apiProducts": [
{
Expand Down
2 changes: 1 addition & 1 deletion data/joust.json
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
"iconUrl": "https://pbs.twimg.com/profile_images/1145704571232124928/uMq2A5WY_400x400.png",
"website": "https://joust.com",
"ownership": [],
"bankingLicense": "nbkc",
"thirdPartyBankingLicense": "nbkc",
"stateOwned": false,
"countryHQ": "US",
"countries": [
Expand Down
2 changes: 1 addition & 1 deletion data/north-loop.json
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
"website": "https://nolobank.com",
"ownership": [],
"stateOwned": false,
"bankingLicense": "evolve-bank-and-trust",
"thirdPartyBankingLicense": "evolve-bank-and-trust",
"countryHQ": "US",
"countries": [
"US"
Expand Down
2 changes: 2 additions & 0 deletions example.json
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@
"website": "https://www.hsbc.com/",
"ownership": [],
"stateOwned": false,
"thirdPartyBankingLicense": null,
"countryHQ": "GB",
"countries": ["EU"],
"compliance": [
Expand All @@ -31,6 +32,7 @@
"sourceUrl": "https://www.businesswire.com/news/home/20190307005306/en/HSBC-Launches-PSD2-Developer-Portal-Expanded-APIs"
},
"developerPortalUrl": "https://developer.hsbc.com/",
"acceleratorProgramUrl": null,
"apiAccess": "verifiedTpp",
"apiProducts": [
{
Expand Down
34 changes: 31 additions & 3 deletions schema.json
Original file line number Diff line number Diff line change
Expand Up @@ -74,9 +74,16 @@
"examples": ["https://en.wikipedia.org/wiki/ABN_AMRO"]
},
"legalName": {
"type": "string",
"description": "ABN AMRO Group N.V.",
"examples": ["ABN Amro"]
"anyOf": [
{
"type": "string",
"description": "ABN AMRO Group N.V.",
"examples": ["ABN Amro"]
},
{
"type": "null"
}
]
},
"verified": {
"type": "boolean",
Expand Down Expand Up @@ -108,6 +115,13 @@
"examples": ["NL", "BE"],
"uniqueItems": true
},
"thirdPartyBankingLicense": {
"anyOf" : [
{ "type": "string" },
{ "type": "null" }
],
"description": "Id of third-party bank license. for challenger banks without their own banking license."
},
"webApplication": {
"type": "boolean",
"description": "Does this provider have a desktop application?",
Expand Down Expand Up @@ -282,6 +296,20 @@
"type": "boolean",
"examples": [true]
},
"acceleratorProgramUrl": {
"anyOf": [
{
"type": "string",
"format": "uri",
"pattern": "^(https?|http?)://",
"description": "Url to the accelerator program",
"examples": ["http://www.fountaincityfintech.com/"]
},
{
"type": "null"
}
]
},
"apiAuth": {
"anyOf": [
{ "type": "null" },
Expand Down

0 comments on commit f485eee

Please sign in to comment.