🛡 Select from Control Register
Choose a prevention or mitigation control from the registered control inventory.
TYPE html> Risk Analyzer — Risk Intelligence Platform
Documenting
🔔6
Risk Event Inventory
Step 1 — Risk Identification
Central Risk Event
Risk Category
Business Line
Inherent Risk Rating
Residual Risk Rating
Risk Owner
Review Date
Regulatory Framework
Risk Appetite
Risk Description
Context & Background
Estimated Financial Impact — Low (USD)
Estimated Financial Impact — High / Tail (USD)
Basel III Operational Risk Event Category BIS / Basel Committee on Banking Supervision
Select the applicable Basel II / III Level 1 operational risk event type. This classification drives regulatory capital treatment, loss data reporting (ORX, internal), and RCSA linkage. One primary category should be selected; note secondary categories in the description field.
Basel Category Notes / Secondary Classification
Step 2 — Risk Drivers (Threats)
Identify the causal factors that could trigger the central risk event. Drivers sit on the left side of the bow-tie. Each should be discrete, actionable, and assessable independently.
📊 Select from Driver Taxonomy (Layer 1)
Choose a driver from the taxonomy framework to auto-populate fields below.
Step 3 — Key Risk Indicators (KRIs)
Design measurable, forward-looking indicators that provide early warning for each risk driver. A good KRI is quantifiable, has defined escalation thresholds, and is owned by a named individual.
Step 4 — Event Impacts (Consequences)
Identify downstream consequences if the central event occurs. Impacts sit on the right side of the bow-tie. Document first and second-order effects separately.
💥 Select from Impact Taxonomy (Layer 3)
Choose an impact domain from the taxonomy framework to auto-populate.
Step 5 — Key Control Indicators (KCIs)
Design post-event metrics that measure the scale of each impact and the effectiveness of recovery actions. KCIs are backward-looking monitors used during and after an event.
Step 6 — Controls & Mitigations
Preventive Controls Left-side — reduce likelihood
Recovery Mitigations Right-side — reduce impact
Step 7 — Bow-Tie Risk Map
Scroll to pan · Click a node to highlight its connections
Risk Driver
KRI — Early Warning
Preventive Control
Central Risk Event
Event Impact
KCI — Recovery Metric
Recovery Mitigation
Step 8 — Risk Register & Summary
Analysis Completeness
Driver Risk Heat MapLikelihood × Severity
Driver RegisterLeft-side
DriverCategoryLikelihoodSeverity Risk ScoreKRIs MappedControls MappedCoverage
Impact RegisterRight-side
ImpactCategorySeverityTime to Manifest KCIs MappedMitigations MappedCoverage
Audit & Attestation
Prepared by
Reviewed by (1st Line)
Approved by (CRO / MD)
Next Review Date
Document Version
Status
Bowtie Library — 8 Pre-Built Scenarios
Full-page split layout: left half = drivers, KRIs, prevention controls · right half = consequences, KCIs, mitigation controls. Click any node to highlight its chain. Hover for details.
function updateDrvDesc(){ var sel = document.getElementById('drv-tax-select'); var desc = document.getElementById('drv-tax-desc'); if(!sel||!desc) return; var id = sel.value; if(!id){ desc.textContent='Choose a driver from the taxonomy framework.'; return; } var d = DRV_TAX[id]; if(d){ var cls = d.status==='Red'?'tax-status-red':d.status==='Amber'?'tax-status-amber':'tax-status-green'; desc.innerHTML=''+d.name+' '+d.status+'
'+d.description.substring(0,120)+'…'; } }