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

20 lines
1.6 KiB
JSON

{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "schema:MedicalObservationalStudy",
"title": "MedicalObservationalStudy",
"description": "An observational study is a type of medical study that attempts to infer the possible effect of a treatment through observation of a cohort of subjects over a period of time. In an observational study, the assignment of subjects into treatment groups versus control groups is outside the control of the investigator. This is in contrast with controlled studies, such as the randomized controlled trials represented by MedicalTrial, where each subject is randomly assigned to a treatment group or a control group before the start of the treatment.",
"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": {
"studyDesign": {
"description": "Specifics about the observational study design (enumerated).",
"$ref": "schema:MedicalObservationalStudyDesign"
}
}
}