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 sct: <http://snomed.info/id/> .
@prefix xsd: <http://www.w3.org/2001/XMLSchema#> .
# - resource -------------------------------------------------------------------
a fhir:Procedure;
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 "Rehab Example" ] ], [
fhir:index 1;
fhir:Extension.url [ fhir:value "http://hl7.org/fhir/StructureDefinition/instance-description" ];
fhir:Extension.valueMarkdown [ fhir:value "This is a rehab example for the *CDMH Procedure Profile*." ] ];
fhir:Meta.profile [
fhir:value "http://hl7.org/fhir/us/cdmh/StructureDefinition/cdmh-procedure";
fhir:index 0;
fhir:link <http://hl7.org/fhir/us/cdmh/StructureDefinition/cdmh-procedure> ]
];
fhir:DomainResource.text [
fhir:Narrative.status [ fhir:value "generated" ];
fhir:Narrative.div "<div xmlns=\"http://www.w3.org/1999/xhtml\"><p><b>Procedure Example</b></p>"
];
fhir:Procedure.status [ fhir:value "completed"];
fhir:Procedure.code [
fhir:Element.extension [
fhir:index 0;
fhir:Element.id [ fhir:value "1" ];
fhir:Extension.url [ fhir:value "http://hl7.org/fhir/us/cdmh/StructureDefinition/cdmh-pcornet-px-source" ];
fhir:Extension.valueCode [ fhir:value "OD" ] ];
fhir:CodeableConcept.coding [
fhir:index 0;
a sct:24165007;
fhir:Coding.system [ fhir:value "http://snomed.info/sct" ];
fhir:Coding.code [ fhir:value "24165007" ];
fhir:Coding.display [ fhir:value "Alcoholism counseling" ] ];
fhir:CodeableConcept.text [ fhir:value "Alcohol rehabilitation" ]
];
fhir:Procedure.subject [
fhir:Reference.reference [ fhir:value "Patient/example" ]
];
fhir:Procedure.performedDateTime [ fhir:value "2002-05-23"^^xsd:date].
# - ontology header ------------------------------------------------------------
a owl:Ontology;
owl:imports fhir:fhir.ttl.