adaptai / platform /dataops /dto /schema /slo_compliance.json
ADAPT-Chase's picture
Add files using upload-large-folder tool
fd357f4 verified
{
"type": "object",
"properties": {
"services": {
"type": "array",
"items": {
"type": "object",
"properties": {
"name": {
"type": "string"
},
"slo_tier": {
"enum": [
"critical",
"high",
"standard"
]
},
"compliance_status": {
"type": "boolean"
}
},
"required": [
"name",
"slo_tier",
"compliance_status"
]
}
}
}
}