{ "$schema": "https://json-schema.org/draft/2020-12/schema", "title": "Prospect Platform Phase 17 final acceptance report", "type": "object", "required": ["report", "version", "scope", "passed", "checks", "capacity_smoke", "blockers", "limitations"], "properties": { "report": {"const": "phase17-final-acceptance"}, "version": {"type": "integer", "const": 1}, "scope": {"const": "local-repository-acceptance"}, "passed": {"type": "boolean"}, "checks": {"type": "object", "additionalProperties": true}, "capacity_smoke": {"type": "object"}, "blockers": {"type": "array", "items": {"type": "object", "required": ["gate", "status", "reason"], "properties": {"gate": {"type": "string"}, "status": {"type": "string"}, "reason": {"type": "string"}}}}, "limitations": {"type": "array", "items": {"type": "string"}} } }