Datasets:
| { | |
| "$schema": "https://json-schema.org/draft/2020-12/schema", | |
| "title": "MDU-RiskBench prediction record", | |
| "type": "object", | |
| "required": [ | |
| "sample_id", | |
| "risk_level" | |
| ], | |
| "properties": { | |
| "sample_id": { | |
| "type": "string", | |
| "pattern": "^MDURT_[0-9]{6}$" | |
| }, | |
| "risk_level": { | |
| "enum": [ | |
| "no_observed_risk", | |
| "mild_risk", | |
| "moderate_risk", | |
| "high_risk", | |
| "insufficient_evidence" | |
| ] | |
| }, | |
| "confidence": { | |
| "enum": [ | |
| "low", | |
| "medium", | |
| "high" | |
| ] | |
| }, | |
| "evidence_used": { | |
| "type": "array", | |
| "items": { | |
| "type": "string" | |
| } | |
| }, | |
| "needs_human_review": { | |
| "type": "boolean" | |
| } | |
| }, | |
| "additionalProperties": true | |
| } | |