2026-08-21 23:53:27 +02:00
|
|
|
{
|
|
|
|
|
"$schema": "https://json-schema.org/draft/2020-12/schema",
|
|
|
|
|
"$id": "whitehat-run/v1",
|
|
|
|
|
"type": "object",
|
|
|
|
|
"additionalProperties": false,
|
|
|
|
|
"required": [
|
|
|
|
|
"schema_version", "run_id", "evidence_class", "engagement_id", "authorization_id",
|
|
|
|
|
"target", "target_revision", "posture_claim", "attacker_model", "started_at", "ended_at",
|
|
|
|
|
"outcome", "attempted_operations", "cleanup", "credential_revocation", "probes",
|
|
|
|
|
"limitations", "assurance_statement"
|
|
|
|
|
],
|
|
|
|
|
"properties": {
|
|
|
|
|
"schema_version": {"const": "whitehat-run/v1"},
|
2026-08-22 21:40:33 +02:00
|
|
|
"evidence_class": {"enum": ["fixture", "target", "abort"]},
|
2026-08-21 23:53:27 +02:00
|
|
|
"outcome": {"enum": ["pass", "finding", "inconclusive", "aborted"]},
|
|
|
|
|
"attempted_operations": {"type": "integer", "minimum": 0},
|
|
|
|
|
"probes": {"type": "array"},
|
|
|
|
|
"limitations": {"type": "array", "items": {"type": "string"}},
|
|
|
|
|
"assurance_statement": {"type": "string", "minLength": 1}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|