workspace extends ../common/finance-common-model.dsl { name "FinOPS system" description "FinOPS system is responsible for manual and automatic user activity analysis" model { sumsub = softwareSystem "Sumsub" "External KYC provider" { tags "External" } sift = softwareSystem "Sift" "External scoring provider" { tags "External" } !extend finOpsSystem { fraudDetectorDb = container "Frauddetector DB" { technology "MySQL" tags "Google Cloud Platform - Compute Engine" "Database" "MySQL" description "Responsible for storing financial user acticvity data" } identityvalidatorDb = container "Identityvalidator DB" { technology "MySQL" tags "Google Cloud Platform - Compute Engine" "Database" "MySQL" description "Responsible for storing user KYC progress and status" } giftStatisticsDb = container "GiftStatistics DB" { technology "MySQL" tags "Google Cloud Platform - Compute Engine" "Database" "MySQL" description "Responsible for storing gift statistics" } } !extend identityvalidator { -> sumsub "Process KYC" "HTTPS" sumsub -> this "KYC status webhook" "HTTPS" -> identityvalidatorDb "Read/write KYC progress/status" "SQL" } !extend frauddetector { -> sift "Send user actions" "HTTPS" -> sift "Get user score" "HTTPS" -> fraudDetectorDb "Read/write financial data" "SQL" } !extend giftStatistics { -> giftStatisticsDb "Read/write gift statistics" "SQL" { tags "Future" } } } views { systemLandscape "SystemLandscape" "FinOPS system landscape" { include * autoLayout } systemContext finOpsSystem "financesystemContext" { include * autoLayout } container finOpsSystem "finOpsSystemContainer" { include * autoLayout } } }