Skip to content

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

StrategyWhen to use
avoidChange plans to eliminate the risk entirely
mitigateReduce probability or impact
transferShift to another party (insurance, contractor)
acceptAcknowledge and monitor
exploitFor 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.