diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md index 2c620369..d9b142d6 100644 --- a/CONTRIBUTING.md +++ b/CONTRIBUTING.md @@ -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": [ @@ -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": [ { diff --git a/data/joust.json b/data/joust.json index 2bc77551..45ba4ece 100644 --- a/data/joust.json +++ b/data/joust.json @@ -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": [ diff --git a/data/north-loop.json b/data/north-loop.json index 2565b1cf..ef10260d 100644 --- a/data/north-loop.json +++ b/data/north-loop.json @@ -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" diff --git a/example.json b/example.json index 11bdaaff..901d989c 100644 --- a/example.json +++ b/example.json @@ -10,6 +10,7 @@ "website": "https://www.hsbc.com/", "ownership": [], "stateOwned": false, + "thirdPartyBankingLicense": null, "countryHQ": "GB", "countries": ["EU"], "compliance": [ @@ -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": [ { diff --git a/schema.json b/schema.json index d4da27a2..d8fa1c9d 100644 --- a/schema.json +++ b/schema.json @@ -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", @@ -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?", @@ -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" },