Spaces:
Sleeping
Sleeping
File size: 1,108 Bytes
0569d05 | 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 27 28 29 30 31 32 33 34 35 36 | {
"type": "object",
"properties": {
"nct_id": {
"type": "string",
"description": "The ClinicalTrials.gov identifier (e.g. NCT12345678)."
},
"targets": {
"type": "array",
"description": "Primary biological targets modulated or studied in this trial.",
"items": {
"type": "object",
"properties": {
"name": {
"type": "string",
"description": "Standard name of the target (e.g. TARDBP, SOD1, riluzole, neuroinflammation). Use canonical gene symbols where applicable."
},
"type": {
"type": "string",
"enum": ["Gene", "Protein", "Compound", "Mechanism"],
"description": "Category of the target."
},
"confidence": {
"type": "number",
"minimum": 0.0,
"maximum": 1.0,
"description": "Confidence that this is the intended biological target (1.0 = explicit in text)."
}
},
"required": ["name", "type", "confidence"]
}
}
},
"required": ["nct_id", "targets"]
}
|