Risk Responses
Risk responses are currently managed via the Lydaro UI and server actions, not a dedicated REST endpoint.
Data Model
sql
risk_responses (
response_id uuid PRIMARY KEY,
risk_id uuid REFERENCES risks,
strategy text, -- avoid, mitigate, transfer, accept, exploit
description text,
owner_id uuid REFERENCES auth.users,
due_date date,
created_by uuid REFERENCES auth.users,
created_at timestamptz
)Strategies
| Strategy | When to use |
|---|---|
avoid | Change plans to eliminate the risk entirely |
mitigate | Reduce probability or impact |
transfer | Shift to another party (insurance, contractor) |
accept | Acknowledge and monitor |
exploit | For opportunities: take action to make them more likely |
Impact on Quality Score
Having at least one response increases the Quality Score significantly. See Quality Scoring.