Spaces:
Sleeping
Sleeping
File size: 753 Bytes
e15864e | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 | {
"type": "object",
"required": ["assessments", "missing_data_keys"],
"properties": {
"assessments": {
"type": "array",
"items": {
"type": "object",
"required": ["criterion_key", "verdict", "reason", "confidence", "raw_criteria"],
"properties": {
"criterion_key": { "type": "string" },
"verdict": { "enum": ["pass", "fail", "unknown"] },
"reason": { "type": "string" },
"patient_value": { "type": ["string", "null"] },
"confidence": { "enum": ["medium", "low"] },
"raw_criteria": { "type": "string" }
}
}
},
"missing_data_keys": {
"type": "array",
"items": { "type": "string" }
}
}
}
|