Add policy_eval/tests/data/sample_drift_report.json

This commit is contained in:
Mika 2026-02-07 11:55:56 +00:00
parent b902cbe289
commit 5b911adc3f

View file

@ -0,0 +1,41 @@
{
"report_id": "sample_001",
"summary": {
"total_policies": 3,
"timestamp": "2024-05-20T14:00:00Z"
},
"policies": [
{
"name": "policy_alpha",
"status": "warn",
"details": {
"drift_cause": "threshold drift",
"manual_override": false
}
},
{
"name": "policy_beta",
"status": "fail",
"details": {
"drift_cause": "invalid ruleset",
"manual_override": true
}
},
{
"name": "policy_gamma",
"status": "unknown",
"details": {
"drift_cause": null,
"manual_override": false
}
}
],
"metadata": {
"source": "simulation",
"version": 1.0,
"notes": [
"Testfall für fehlende Felder und unbekannte Status",
"Validierung von fail/warn/unknown/override-Zählung"
]
}
}