-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
14 changed files
with
84 additions
and
14 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,33 @@ | ||
@startmindmap | ||
|
||
!include ../include/themes/light.puml | ||
|
||
+ Client 360 | ||
++ Know Your Customer | ||
+++_ Money Laundering | ||
+++_ Identification Verification | ||
+++_ Politically Exposed Persons (PEPs) | ||
+++_ Crime Records | ||
+++_ Sanctions | ||
+++_ Risk Management | ||
+++_ High Net Worth Individuals (HNWI) | ||
+++_ GDPR | ||
+++ Core Record Management | ||
++++_ Countries | ||
++++_ Regions | ||
++++_ Jurisdictions | ||
++++_ Legal Entities | ||
++++_ Locations | ||
++++_ Buildings | ||
++++_ Addresses | ||
++++_ Audit | ||
++ Relationships &\nConnections | ||
+++_ Business Connections | ||
+++_ Family Connections | ||
+++_ Social Connections | ||
+++_ Political Connections | ||
++ Social Media | ||
+++_ Social Graph | ||
+++_ Interest Graph | ||
++_ ...many others... | ||
@endmindmap |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,28 @@ | ||
const paletteSwitcher1 = document.getElementById("__palette_1"); | ||
const paletteSwitcher2 = document.getElementById("__palette_2"); | ||
|
||
paletteSwitcher1.addEventListener("change", function () { | ||
const darkables = document.querySelectorAll('img[src$="darkable"'); | ||
fromDarkToLight(darkables); | ||
}); | ||
|
||
paletteSwitcher2.addEventListener("change", function () { | ||
const darkables = document.querySelectorAll('img[src$="darkable"'); | ||
fromLightToDark(darkables); | ||
}); | ||
|
||
function fromLightToDark(images) { | ||
images.forEach(image => { | ||
const idx = image.src.lastIndexOf('.'); | ||
if (idx > -1) { | ||
const add = "_dark"; | ||
image.src = [image.src.slice(0, idx), add, image.src.slice(idx)].join(''); | ||
} | ||
}); | ||
} | ||
|
||
function fromDarkToLight(images) { | ||
images.forEach(image => { | ||
image.src = image.src.replace("_dark", ""); | ||
}); | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
const paletteSwitcher1 = document.getElementById("__palette_1"); | ||
const paletteSwitcher2 = document.getElementById("__palette_2"); | ||
|
||
paletteSwitcher1.addEventListener("change", function () { | ||
location.reload(); | ||
}); | ||
|
||
paletteSwitcher2.addEventListener("change", function () { | ||
location.reload(); | ||
}); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,8 +1,6 @@ | ||
title: Know Your Customer | ||
nav: | ||
- core-record-management | ||
- social-media.md | ||
- interest-graph.md | ||
- GDPR: gdpr.md | ||
- HNW Individuals: high-net-worth-individuals.md | ||
- ... |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
3 changes: 3 additions & 0 deletions
3
docs/use-case/client-360/relationships-and-connections/social-connections.md
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1,4 @@ | ||
# Social Connections | ||
|
||
See also [Social Graph](../social-media/social-graph.md). | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1,4 @@ | ||
# Social Media | ||
|
||
- [Social Graph](social-graph.md) | ||
- [Interest Graph](interest-graph.md) |
File renamed without changes.
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,9 +1,5 @@ | ||
# Use Cases | ||
|
||
Any imaginable use case can be implemented using the Datapoint Protocol. | ||
There are no limits. | ||
{% include-markdown "strategic-use-cases.md" heading-offset=1 %} | ||
|
||
However, certain types of use cases would benefit extraordinarily | ||
from having a DPP-foundation: | ||
|
||
{% include-markdown "strategic-use-cases.md" heading-offset=1 %} |