| { | |
| "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" | |
| ] | |
| } | |
| } | |
| } | |
| } |