This page is part of the FHIR Specification (v1.8.0: STU 3 Draft). The current version which supercedes this version is 5.0.0. For a full list of available versions, see the Directory of published versions . Page versions: R5 R4B R4 R3
Regulated Clinical Research Information Management Work Group | Maturity Level: 0 | Compartments: Practitioner |
A process where a researcher or organization plans and then executes a series of steps intended to increase the field of healthcare-related knowledge. This includes studies of safety, efficacy, comparative effectiveness and other information about medications, devices, therapies and other interventional and investigative techniques. ResearchStudies involve the gathering of information about human or animal subjects.
This resource is referenced by researchsubject
Structure
Name | Flags | Card. | Type | Description & Constraints |
---|---|---|---|---|
ResearchStudy | DomainResource | Investigation increase healthcare-related patient-independent knowledge | ||
identifier | Σ | 0..* | Identifier | Business Identifer for study |
title | Σ | 0..1 | string | Name for this study |
protocol | Σ | 0..* | Reference(PlanDefinition) | Steps followed in executing study |
partOf | Σ | 0..* | Reference(ResearchStudy) | Part of larger study |
status | ?!Σ | 1..1 | code | draft | in-progress | suspended | stopped | completed | entered-in-error ResearchStudyStatus (Required) |
category | Σ | 0..* | CodeableConcept | Classifications for the study |
focus | Σ | 0..* | CodeableConcept | Drugs, devices, conditions, etc. under study |
contact | Σ | 0..* | ContactDetail | Contact details for the study |
relatedArtifact | 0..* | RelatedArtifact | References and dependencies | |
keyword | Σ | 0..* | CodeableConcept | Used to search for the study |
jurisdiction | Σ | 0..* | CodeableConcept | Geographic region(s) for study Jurisdiction ValueSet (Extensible) |
description | 0..1 | markdown | What this is study doing | |
enrollment | Σ | 0..* | Reference(Group) | Inclusion & exclusion criteria |
period | Σ | 0..1 | Period | When the study began and ended |
sponsor | Σ | 0..1 | Reference(Organization) | Organization responsible for the study |
principalInvestigator | Σ | 0..1 | Reference(Practitioner) | Individual responsible for the study |
site | Σ | 0..* | Reference(Location) | Location involved in study execution |
reasonStopped | Σ | 0..1 | CodeableConcept | Reason for terminating study early |
note | 0..* | Annotation | Comments made about the event | |
arm | 0..* | BackboneElement | Defined path through the study for a subject | |
name | 1..1 | string | Label for study arm | |
code | 0..1 | CodeableConcept | Categorization of arm | |
description | 0..1 | string | Short explanation of study path | |
Documentation for this format |
UML Diagram (Legend)
XML Template
<ResearchStudy xmlns="http://hl7.org/fhir"> <!-- from Resource: id, meta, implicitRules, and language --> <!-- from DomainResource: text, contained, extension, and modifierExtension --> <identifier><!-- 0..* Identifier Business Identifer for study --></identifier> <title value="[string]"/><!-- 0..1 Name for this study --> <protocol><!-- 0..* Reference(PlanDefinition) Steps followed in executing study --></protocol> <partOf><!-- 0..* Reference(ResearchStudy) Part of larger study --></partOf> <status value="[code]"/><!-- 1..1 draft | in-progress | suspended | stopped | completed | entered-in-error --> <category><!-- 0..* CodeableConcept Classifications for the study --></category> <focus><!-- 0..* CodeableConcept Drugs, devices, conditions, etc. under study --></focus> <contact><!-- 0..* ContactDetail Contact details for the study --></contact> <relatedArtifact><!-- 0..* RelatedArtifact References and dependencies --></relatedArtifact> <keyword><!-- 0..* CodeableConcept Used to search for the study --></keyword> <jurisdiction><!-- 0..* CodeableConcept Geographic region(s) for study --></jurisdiction> <description value="[markdown]"/><!-- 0..1 What this is study doing --> <enrollment><!-- 0..* Reference(Group) Inclusion & exclusion criteria --></enrollment> <period><!-- 0..1 Period When the study began and ended --></period> <sponsor><!-- 0..1 Reference(Organization) Organization responsible for the study --></sponsor> <principalInvestigator><!-- 0..1 Reference(Practitioner) Individual responsible for the study --></principalInvestigator> <site><!-- 0..* Reference(Location) Location involved in study execution --></site> <reasonStopped><!-- 0..1 CodeableConcept Reason for terminating study early --></reasonStopped> <note><!-- 0..* Annotation Comments made about the event --></note> <arm> <!-- 0..* Defined path through the study for a subject --> <name value="[string]"/><!-- 1..1 Label for study arm --> <code><!-- 0..1 CodeableConcept Categorization of arm --></code> <description value="[string]"/><!-- 0..1 Short explanation of study path --> </arm> </ResearchStudy>
JSON Template
{ "resourceType" : "ResearchStudy", // from Resource: id, meta, implicitRules, and language // from DomainResource: text, contained, extension, and modifierExtension "identifier" : [{ Identifier }], // Business Identifer for study "title" : "<string>", // Name for this study "protocol" : [{ Reference(PlanDefinition) }], // Steps followed in executing study "partOf" : [{ Reference(ResearchStudy) }], // Part of larger study "status" : "<code>", // R! draft | in-progress | suspended | stopped | completed | entered-in-error "category" : [{ CodeableConcept }], // Classifications for the study "focus" : [{ CodeableConcept }], // Drugs, devices, conditions, etc. under study "contact" : [{ ContactDetail }], // Contact details for the study "relatedArtifact" : [{ RelatedArtifact }], // References and dependencies "keyword" : [{ CodeableConcept }], // Used to search for the study "jurisdiction" : [{ CodeableConcept }], // Geographic region(s) for study "description" : "<markdown>", // What this is study doing "enrollment" : [{ Reference(Group) }], // Inclusion & exclusion criteria "period" : { Period }, // When the study began and ended "sponsor" : { Reference(Organization) }, // Organization responsible for the study "principalInvestigator" : { Reference(Practitioner) }, // Individual responsible for the study "site" : [{ Reference(Location) }], // Location involved in study execution "reasonStopped" : { CodeableConcept }, // Reason for terminating study early "note" : [{ Annotation }], // Comments made about the event "arm" : [{ // Defined path through the study for a subject "name" : "<string>", // R! Label for study arm "code" : { CodeableConcept }, // Categorization of arm "description" : "<string>" // Short explanation of study path }] }
Turtle Template
@prefix fhir: <http://hl7.org/fhir/> . [ a fhir:ResearchStudy; fhir:nodeRole fhir:treeRoot; # if this is the parser root # from Resource: .id, .meta, .implicitRules, and .language # from DomainResource: .text, .contained, .extension, and .modifierExtension fhir:ResearchStudy.identifier [ Identifier ], ... ; # 0..* Business Identifer for study fhir:ResearchStudy.title [ string ]; # 0..1 Name for this study fhir:ResearchStudy.protocol [ Reference(PlanDefinition) ], ... ; # 0..* Steps followed in executing study fhir:ResearchStudy.partOf [ Reference(ResearchStudy) ], ... ; # 0..* Part of larger study fhir:ResearchStudy.status [ code ]; # 1..1 draft | in-progress | suspended | stopped | completed | entered-in-error fhir:ResearchStudy.category [ CodeableConcept ], ... ; # 0..* Classifications for the study fhir:ResearchStudy.focus [ CodeableConcept ], ... ; # 0..* Drugs, devices, conditions, etc. under study fhir:ResearchStudy.contact [ ContactDetail ], ... ; # 0..* Contact details for the study fhir:ResearchStudy.relatedArtifact [ RelatedArtifact ], ... ; # 0..* References and dependencies fhir:ResearchStudy.keyword [ CodeableConcept ], ... ; # 0..* Used to search for the study fhir:ResearchStudy.jurisdiction [ CodeableConcept ], ... ; # 0..* Geographic region(s) for study fhir:ResearchStudy.description [ markdown ]; # 0..1 What this is study doing fhir:ResearchStudy.enrollment [ Reference(Group) ], ... ; # 0..* Inclusion & exclusion criteria fhir:ResearchStudy.period [ Period ]; # 0..1 When the study began and ended fhir:ResearchStudy.sponsor [ Reference(Organization) ]; # 0..1 Organization responsible for the study fhir:ResearchStudy.principalInvestigator [ Reference(Practitioner) ]; # 0..1 Individual responsible for the study fhir:ResearchStudy.site [ Reference(Location) ], ... ; # 0..* Location involved in study execution fhir:ResearchStudy.reasonStopped [ CodeableConcept ]; # 0..1 Reason for terminating study early fhir:ResearchStudy.note [ Annotation ], ... ; # 0..* Comments made about the event fhir:ResearchStudy.arm [ # 0..* Defined path through the study for a subject fhir:ResearchStudy.arm.name [ string ]; # 1..1 Label for study arm fhir:ResearchStudy.arm.code [ CodeableConcept ]; # 0..1 Categorization of arm fhir:ResearchStudy.arm.description [ string ]; # 0..1 Short explanation of study path ], ...; ]
Changes since DSTU2
This resource did not exist in Release 2
Structure
Name | Flags | Card. | Type | Description & Constraints |
---|---|---|---|---|
ResearchStudy | DomainResource | Investigation increase healthcare-related patient-independent knowledge | ||
identifier | Σ | 0..* | Identifier | Business Identifer for study |
title | Σ | 0..1 | string | Name for this study |
protocol | Σ | 0..* | Reference(PlanDefinition) | Steps followed in executing study |
partOf | Σ | 0..* | Reference(ResearchStudy) | Part of larger study |
status | ?!Σ | 1..1 | code | draft | in-progress | suspended | stopped | completed | entered-in-error ResearchStudyStatus (Required) |
category | Σ | 0..* | CodeableConcept | Classifications for the study |
focus | Σ | 0..* | CodeableConcept | Drugs, devices, conditions, etc. under study |
contact | Σ | 0..* | ContactDetail | Contact details for the study |
relatedArtifact | 0..* | RelatedArtifact | References and dependencies | |
keyword | Σ | 0..* | CodeableConcept | Used to search for the study |
jurisdiction | Σ | 0..* | CodeableConcept | Geographic region(s) for study Jurisdiction ValueSet (Extensible) |
description | 0..1 | markdown | What this is study doing | |
enrollment | Σ | 0..* | Reference(Group) | Inclusion & exclusion criteria |
period | Σ | 0..1 | Period | When the study began and ended |
sponsor | Σ | 0..1 | Reference(Organization) | Organization responsible for the study |
principalInvestigator | Σ | 0..1 | Reference(Practitioner) | Individual responsible for the study |
site | Σ | 0..* | Reference(Location) | Location involved in study execution |
reasonStopped | Σ | 0..1 | CodeableConcept | Reason for terminating study early |
note | 0..* | Annotation | Comments made about the event | |
arm | 0..* | BackboneElement | Defined path through the study for a subject | |
name | 1..1 | string | Label for study arm | |
code | 0..1 | CodeableConcept | Categorization of arm | |
description | 0..1 | string | Short explanation of study path | |
Documentation for this format |
XML Template
<ResearchStudy xmlns="http://hl7.org/fhir"> <!-- from Resource: id, meta, implicitRules, and language --> <!-- from DomainResource: text, contained, extension, and modifierExtension --> <identifier><!-- 0..* Identifier Business Identifer for study --></identifier> <title value="[string]"/><!-- 0..1 Name for this study --> <protocol><!-- 0..* Reference(PlanDefinition) Steps followed in executing study --></protocol> <partOf><!-- 0..* Reference(ResearchStudy) Part of larger study --></partOf> <status value="[code]"/><!-- 1..1 draft | in-progress | suspended | stopped | completed | entered-in-error --> <category><!-- 0..* CodeableConcept Classifications for the study --></category> <focus><!-- 0..* CodeableConcept Drugs, devices, conditions, etc. under study --></focus> <contact><!-- 0..* ContactDetail Contact details for the study --></contact> <relatedArtifact><!-- 0..* RelatedArtifact References and dependencies --></relatedArtifact> <keyword><!-- 0..* CodeableConcept Used to search for the study --></keyword> <jurisdiction><!-- 0..* CodeableConcept Geographic region(s) for study --></jurisdiction> <description value="[markdown]"/><!-- 0..1 What this is study doing --> <enrollment><!-- 0..* Reference(Group) Inclusion & exclusion criteria --></enrollment> <period><!-- 0..1 Period When the study began and ended --></period> <sponsor><!-- 0..1 Reference(Organization) Organization responsible for the study --></sponsor> <principalInvestigator><!-- 0..1 Reference(Practitioner) Individual responsible for the study --></principalInvestigator> <site><!-- 0..* Reference(Location) Location involved in study execution --></site> <reasonStopped><!-- 0..1 CodeableConcept Reason for terminating study early --></reasonStopped> <note><!-- 0..* Annotation Comments made about the event --></note> <arm> <!-- 0..* Defined path through the study for a subject --> <name value="[string]"/><!-- 1..1 Label for study arm --> <code><!-- 0..1 CodeableConcept Categorization of arm --></code> <description value="[string]"/><!-- 0..1 Short explanation of study path --> </arm> </ResearchStudy>
JSON Template
{ "resourceType" : "ResearchStudy", // from Resource: id, meta, implicitRules, and language // from DomainResource: text, contained, extension, and modifierExtension "identifier" : [{ Identifier }], // Business Identifer for study "title" : "<string>", // Name for this study "protocol" : [{ Reference(PlanDefinition) }], // Steps followed in executing study "partOf" : [{ Reference(ResearchStudy) }], // Part of larger study "status" : "<code>", // R! draft | in-progress | suspended | stopped | completed | entered-in-error "category" : [{ CodeableConcept }], // Classifications for the study "focus" : [{ CodeableConcept }], // Drugs, devices, conditions, etc. under study "contact" : [{ ContactDetail }], // Contact details for the study "relatedArtifact" : [{ RelatedArtifact }], // References and dependencies "keyword" : [{ CodeableConcept }], // Used to search for the study "jurisdiction" : [{ CodeableConcept }], // Geographic region(s) for study "description" : "<markdown>", // What this is study doing "enrollment" : [{ Reference(Group) }], // Inclusion & exclusion criteria "period" : { Period }, // When the study began and ended "sponsor" : { Reference(Organization) }, // Organization responsible for the study "principalInvestigator" : { Reference(Practitioner) }, // Individual responsible for the study "site" : [{ Reference(Location) }], // Location involved in study execution "reasonStopped" : { CodeableConcept }, // Reason for terminating study early "note" : [{ Annotation }], // Comments made about the event "arm" : [{ // Defined path through the study for a subject "name" : "<string>", // R! Label for study arm "code" : { CodeableConcept }, // Categorization of arm "description" : "<string>" // Short explanation of study path }] }
Turtle Template
@prefix fhir: <http://hl7.org/fhir/> . [ a fhir:ResearchStudy; fhir:nodeRole fhir:treeRoot; # if this is the parser root # from Resource: .id, .meta, .implicitRules, and .language # from DomainResource: .text, .contained, .extension, and .modifierExtension fhir:ResearchStudy.identifier [ Identifier ], ... ; # 0..* Business Identifer for study fhir:ResearchStudy.title [ string ]; # 0..1 Name for this study fhir:ResearchStudy.protocol [ Reference(PlanDefinition) ], ... ; # 0..* Steps followed in executing study fhir:ResearchStudy.partOf [ Reference(ResearchStudy) ], ... ; # 0..* Part of larger study fhir:ResearchStudy.status [ code ]; # 1..1 draft | in-progress | suspended | stopped | completed | entered-in-error fhir:ResearchStudy.category [ CodeableConcept ], ... ; # 0..* Classifications for the study fhir:ResearchStudy.focus [ CodeableConcept ], ... ; # 0..* Drugs, devices, conditions, etc. under study fhir:ResearchStudy.contact [ ContactDetail ], ... ; # 0..* Contact details for the study fhir:ResearchStudy.relatedArtifact [ RelatedArtifact ], ... ; # 0..* References and dependencies fhir:ResearchStudy.keyword [ CodeableConcept ], ... ; # 0..* Used to search for the study fhir:ResearchStudy.jurisdiction [ CodeableConcept ], ... ; # 0..* Geographic region(s) for study fhir:ResearchStudy.description [ markdown ]; # 0..1 What this is study doing fhir:ResearchStudy.enrollment [ Reference(Group) ], ... ; # 0..* Inclusion & exclusion criteria fhir:ResearchStudy.period [ Period ]; # 0..1 When the study began and ended fhir:ResearchStudy.sponsor [ Reference(Organization) ]; # 0..1 Organization responsible for the study fhir:ResearchStudy.principalInvestigator [ Reference(Practitioner) ]; # 0..1 Individual responsible for the study fhir:ResearchStudy.site [ Reference(Location) ], ... ; # 0..* Location involved in study execution fhir:ResearchStudy.reasonStopped [ CodeableConcept ]; # 0..1 Reason for terminating study early fhir:ResearchStudy.note [ Annotation ], ... ; # 0..* Comments made about the event fhir:ResearchStudy.arm [ # 0..* Defined path through the study for a subject fhir:ResearchStudy.arm.name [ string ]; # 1..1 Label for study arm fhir:ResearchStudy.arm.code [ CodeableConcept ]; # 0..1 Categorization of arm fhir:ResearchStudy.arm.description [ string ]; # 0..1 Short explanation of study path ], ...; ]
Changes since DSTU2
This resource did not exist in Release 2
Alternate definitions: Master Definition (XML, JSON), XML Schema/Schematron (for ) + JSON Schema, ShEx (for Turtle), JSON-LD (for RDF as JSON-LD),
Path | Definition | Type | Reference |
---|---|---|---|
ResearchStudy.status | Codes that convey the current status of the research study | Required | ResearchStudyStatus |
ResearchStudy.category | Codes that describe the type of research study. E.g. Study phase, Interventional/Observational, blinding type, etc. | Unknown | No details provided yet |
ResearchStudy.focus | Codes for medications, devices, conditions and other interventions | Unknown | No details provided yet |
ResearchStudy.keyword | Words associated with the study that may be useful in discovery | Unknown | No details provided yet |
ResearchStudy.jurisdiction | Countries and regions within which this artifact is targeted for use | Extensible | Jurisdiction ValueSet |
Search parameters for this resource. The common parameters also apply. See Searching for more information about searching in REST, messaging, and services.
Name | Type | Description | Paths | In Common |
category | token | Classifications for the study | ResearchStudy.category | |
date | date | When the study began and ended | ResearchStudy.period | |
focus | token | Drugs, devices, conditions, etc. under study | ResearchStudy.focus | |
identifier | token | Business Identifer for study | ResearchStudy.identifier | |
jurisdiction | token | Geographic region(s) for study | ResearchStudy.jurisdiction | |
keyword | token | Used to search for the study | ResearchStudy.keyword | |
partof | reference | Part of larger study | ResearchStudy.partOf (ResearchStudy) | |
principalinvestigator | reference | Individual responsible for the study | ResearchStudy.principalInvestigator (Practitioner) | |
protocol | reference | Steps followed in executing study | ResearchStudy.protocol (PlanDefinition) | |
site | reference | Location involved in study execution | ResearchStudy.site (Location) | |
sponsor | reference | Organization responsible for the study | ResearchStudy.sponsor (Organization) | |
status | token | draft | in-progress | suspended | stopped | completed | entered-in-error | ResearchStudy.status | |
title | string | Name for this study | ResearchStudy.title |