DORA Incident Platform — EU Financial Compliance

DORA Incident Platform — EU Financial Compliance

Challenge

The Digital Operational Resilience Act (DORA, EU 2022/2554) requires 40,000 EU financial entities — banks, payment institutions, e-money providers, crypto exchanges (MiCA), and insurtech — to classify and report major ICT incidents within strict deadlines: 4 hours (initial notification), 72 hours (intermediate report), and 1 month (final report). Manual classification against EBA/ESMA/EIOPA criteria is slow and error-prone; missing deadlines triggers regulatory penalties.

Build a platform that automatically classifies incidents, generates EBA-standard reports, and ensures deadline compliance.

Solution Architecture

Overview

┌─────────────────────────────────────────────────────────────────┐
│                    Incident Sources                              │
│         SIEM · ServiceNow · PagerDuty · Manual Entry            │
└───────────────────────────┬─────────────────────────────────────┘
                            │ webhook / REST
                            ▼
┌─────────────────────────────────────────────────────────────────┐
│                   Ingestion Service                              │
│              Normalize · Dedupe · Enrich                        │
└───────────────────────────┬─────────────────────────────────────┘
                            │ Kafka
                            ▼
┌─────────────────────────────────────────────────────────────────┐
│              Classification Service (DORA Rules)                 │
│         EBA/ESMA/EIOPA criteria → Major/Non-Major               │
└───────────────────────────┬─────────────────────────────────────┘
                            │
              ┌─────────────┴─────────────┐
              ▼                           ▼
┌──────────────────────┐     ┌──────────────────────┐
│   AI Triage Service  │     │  EBA Template Service │
│   Claude Sonnet +    │     │  JSON · XML · PDF     │
│   Circuit Breaker    │     │  EBA-standard format  │
└──────────────────────┘     └──────────────────────┘
                                        │
                                        ▼
                            ┌──────────────────────┐
                            │ NCA Submission Svc   │
                            │ Idempotent upload    │
                            └──────────────────────┘

DORA Reporting Timeline

StageDeadlineOutput
Initial Notification4 hoursIncident detected, major classification, preliminary impact
Intermediate Report72 hoursRoot cause analysis, containment actions, affected services
Final Report1 monthFull timeline, remediation, lessons learned

Key Features

1. Automated Classification

# DORA major incident criteria (EBA/ESMA/EIOPA)
criteria = [
    "affected_clients > 10% of total",
    "service_downtime > 2 hours",
    "financial_impact > €100K",
    "reputational_impact: high",
    "cross_border_impact: true",
    "data_breach: personal_data"
]
# Any 2+ criteria triggered = Major Incident

2. AI-Assisted Triage

  • Claude Sonnet for incident summarization and root cause suggestion
  • Circuit breaker for graceful degradation when AI unavailable
  • Human-in-the-loop review queue for edge cases

3. EBA-Standard Reports

Report Formats:
├── JSON (machine-readable, API submission)
├── XML (legacy NCA portals)
└── PDF (human review, signature)

4. Multi-Tenant Architecture

  • Keycloak OIDC/SAML2 with per-tenant realms
  • PostgreSQL RLS for data isolation
  • Per-tenant Kafka topics for event streaming

Tech Stack

ComponentTechnologyPurpose
IngestionFastAPI + aiokafkaIncident intake, normalization
ClassificationPython + DORA rules engineMajor/non-major determination
AI TriageClaude Sonnet APISummarization, root cause
TemplatesFastAPI + WeasyPrintEBA JSON/XML/PDF generation
SubmissionFastAPIIdempotent NCA portal upload
Review UIReact 18 + TypeScriptHuman review queue
Message BusKafka 3.7 (Strimzi)Event streaming
DatabasePostgreSQL 16 + RLSIncident data, audit trail
AuthKeycloak 24Multi-tenant SSO
SecretsHashiCorp VaultAPI keys, credentials

Compliance Coverage

DORA ArticleRequirementPlatform Feature
Art. 17ICT incident classificationAutomated rule engine
Art. 19Reporting to competent authoritiesNCA submission service
Art. 19(4)Initial notification within 4hDeadline tracker + alerts
Art. 19(6)Final report within 1 monthReport generation workflow
Art. 20Harmonised reporting templatesEBA-standard formats

Results & Metrics

Target Market

  • 40,000 EU financial entities subject to DORA
  • Banks, payment institutions, e-money providers
  • Crypto-asset service providers (MiCA)
  • Insurance and reinsurance undertakings

Revenue Target

  • $300K Year 1 (SaaS + enterprise licenses)
  • Per-incident pricing or monthly subscription

Architecture Decisions

  • Kafka over REST polling: Real-time incident flow, replay capability
  • Claude Sonnet over GPT-4: Better structured output, lower hallucination rate
  • Circuit breaker pattern: AI failures don’t block human workflow
  • Idempotent NCA submission: Safe retries on network failures
  • Per-tenant Keycloak realms: Full isolation for regulated entities