Files
marka/registry/schema-org/MedicalTrial.schema.json
Max Richter c687eff53d big tings
2025-08-17 15:16:17 +02:00

20 lines
1.3 KiB
JSON

{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "schema:MedicalTrial",
"title": "MedicalTrial",
"description": "A medical trial is a type of medical study that uses a scientific process to compare the safety and efficacy of medical therapies or medical procedures. In general, medical trials are controlled and subjects are allocated at random to the different treatment and/or control groups.",
"type": "object",
"allOf": [
{
"description": "A medical study is an umbrella type covering all kinds of research studies relating to human medicine or health, including observational studies and interventional trials and registries, randomized, controlled or not. When the specific type of study is known, use one of the extensions of this type, such as MedicalTrial or MedicalObservationalStudy. Also, note that this type should be used to mark up data that describes the study itself; to tag an article that publishes the results of a study, use MedicalScholarlyArticle. Note: use the code property of MedicalEntity to store study IDs, e.g. clinicaltrials.gov ID.",
"$ref": "schema:MedicalStudy"
}
],
"properties": {
"trialDesign": {
"description": "Specifics about the trial design (enumerated).",
"$ref": "schema:MedicalTrialDesign"
}
}
}