...
All issues with a risk assessment has an issue property which is a data structure attached to the issue. See below the format on this data structure and how it is searchable with Jira JQL expressions.
Code Block |
---|
{ "risk_severity": "HIGHEST", //inherent risk "risk_severity_value": 4, "risk_impact": "Severe", "risk_impact_value": 5, "risk_probability": "Almost certain", "risk_probability_value": 5, "risk_residual_severity": "LOW" //residual risk "risk_residual_severity_value": 1 "risk_residual_impact": "Low", "HIGHEST", "risk_residual_impact_value": 1, "risk_residual_probability": "Low" "risk_severityresidual_probability_value": 41, } |
Risk Property | Type | Value |
---|---|---|
risk_impact | Text | Unspecified, Negligible, Minor, Medium, High, Severe |
risk_impact_value | Integer | 0-5 (low to high) |
risk_probability | Text | Unspecified, Rare, Unlikely, Possible, Likely, Almost certain |
risk_probability_value | Integer | 0-5 (low to high) |
risk_severity | Text | Unspecified, LOW, MEDIUM, HIGH, HIGHEST |
risk_severity_value | Integer | 0-4 (low to high) |
...