Common Data Models Harmonization, published by HL7 International - Biomedical Research and Regulation Work Group. This is not an authorized publication; it is the continuous build for version 1.0.0). This version is based on the current content of https://github.com/HL7/cdmh/ and changes regularly. See the Directory of published versions
@prefix fhir: <http://hl7.org/fhir/> .
@prefix owl: <http://www.w3.org/2002/07/owl#> .
@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
@prefix xsd: <http://www.w3.org/2001/XMLSchema#> .
# - resource -------------------------------------------------------------------
a fhir:ResearchStudy;
fhir:nodeRole fhir:treeRoot;
fhir:Resource.id [ fhir:value "example"];
fhir:Resource.meta [
fhir:Element.extension [
fhir:index 0;
fhir:Extension.url [ fhir:value "http://hl7.org/fhir/StructureDefinition/instance-name" ];
fhir:Extension.valueString [ fhir:value "ResearchStudy Example" ] ], [
fhir:index 1;
fhir:Extension.url [ fhir:value "http://hl7.org/fhir/StructureDefinition/instance-description" ];
fhir:Extension.valueMarkdown [ fhir:value "This is an example for the *CDMH ResearchStudy Profile*." ] ];
fhir:Meta.profile [
fhir:value "http://hl7.org/fhir/us/cdmh/StructureDefinition/cdmh-researchstudy";
fhir:index 0;
fhir:link <http://hl7.org/fhir/us/cdmh/StructureDefinition/cdmh-researchstudy> ]
];
fhir:DomainResource.text [
fhir:Narrative.status [ fhir:value "generated" ];
fhir:Narrative.div "<div xmlns=\"http://www.w3.org/1999/xhtml\">[Put rendering here]</div>"
];
fhir:ResearchStudy.status [ fhir:value "active"];
fhir:ResearchStudy.enrollment [
fhir:index 0;
fhir:Reference.reference [ fhir:value "Group/example" ]
].
# - ontology header ------------------------------------------------------------
a owl:Ontology;
owl:imports fhir:fhir.ttl.