Record daily triage schema canary blocker

This commit is contained in:
2026-05-21 03:19:27 +02:00
parent ed6a13c8d7
commit a28deec772
3 changed files with 114 additions and 6 deletions

View File

@@ -0,0 +1,30 @@
{
"type": "object",
"required": ["summary", "recommendations"],
"properties": {
"summary": {
"type": "string"
},
"recommendations": {
"type": "array",
"items": {
"type": "object",
"required": ["candidate", "action", "why", "confidence"],
"properties": {
"candidate": {
"type": "string"
},
"action": {
"type": "string"
},
"why": {
"type": "string"
},
"confidence": {
"type": "string"
}
}
}
}
}
}