Classify Event
classify_eventApply a regime's statutory criteria to yes/no facts and name the event type. FREE.
Typical input {"regime": "eu_dora", "facts": {"critical_services_affected": true, "duration_or_downtime": true, "geographic_spread": true}} returns {"reportable": true, "event_type": "major_ict_incident", "reasoning": [...], "criteria": {...}}. Unanswered questions are listed under "missing" so the caller can go and find out. Use when deciding whether an incident triggers a regime at all. Not for judging severity in the abstract: it only applies the written criteria to the facts given. Errors: on invalid, missing, or malformed input this tool never raises a protocol error — it returns {"error": ""} (for example {"error": "facts must be an object of question id -> answer"}). Every call is read-only and idempotent, so after correcting the input it is always safe to retry.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| facts | Yes | answers keyed by the question ids returned for the regime (booleans; integers for counts). | |
| regime | Yes | regime id from list_regimes. |
Output Schema
| Name | Required | Description | Default |
|---|---|---|---|
No arguments | |||