Treblle · Schema
GovernanceResult
AnalyticsArtificial IntelligenceDeveloper ExperienceDocumentationGovernanceInsightsObservabilityPlatformSecurityTesting
Properties
| Name | Type | Description |
|---|---|---|
| overall_score | integer | |
| overall_grade | string | |
| design_score | integer | |
| design_grade | string | |
| security_score | integer | |
| security_grade | string | |
| performance_score | integer | |
| performance_grade | string | |
| issues | array |
JSON Schema
{
"$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"
}
}
}
}
}
}