{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/GovernanceResult", "title": "GovernanceResult", "type": "object", "properties": { "overall_score": { "type": "integer", "minimum": 0, "maximum": 100 }, "overall_grade": { "type": "string", "enum": [ "A", "B", "C", "D", "F" ] }, "design_score": { "type": "integer" }, "design_grade": { "type": "string" }, "security_score": { "type": "integer" }, "security_grade": { "type": "string" }, "performance_score": { "type": "integer" }, "performance_grade": { "type": "string" }, "issues": { "type": "array", "items": { "type": "object", "properties": { "rule": { "type": "string" }, "severity": { "type": "string", "enum": [ "error", "warning", "info" ] }, "message": { "type": "string" }, "path": { "type": "string" } } } } } }