CIBMTR Reporting Implementation Guide
0.1.4 - Trial Use 1
This page is part of the CIMBTRReporting (v0.1.4: Trial Use 1) based on FHIR R4. This is the current published version. For a full list of available versions, 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:Patient;
fhir:nodeRole fhir:treeRoot;
fhir:Resource.id [ fhir:value "PatientExample1"];
fhir:Resource.meta [
fhir:Meta.profile [
fhir:value "http://fhir.nmdp.org/ig/cibmtr-reporting/StructureDefinition/cibmtr-patient";
fhir:index 0;
fhir:link <http://fhir.nmdp.org/ig/cibmtr-reporting/StructureDefinition/cibmtr-patient> ];
fhir:Meta.security [
fhir:index 0;
fhir:Coding.system [ fhir:value "http://terminology.cibmtr.org/codesystem/transplant-center" ];
fhir:Coding.code [ fhir:value "rc_00000" ];
fhir:Coding.display [ fhir:value "00000 Good Health Medical Center" ] ]
];
fhir:DomainResource.text [
fhir:Narrative.status [ fhir:value "generated" ];
fhir:Narrative.div "<div xmlns=\"http://www.w3.org/1999/xhtml\"><p><b>Generated Narrative</b></p><p><b>identifier</b>: id: abc</p><p><b>name</b>: John Doe </p><p><b>gender</b>: male</p></div>"
];
fhir:Patient.identifier [
fhir:index 0;
fhir:Identifier.system [ fhir:value "http://example.org/mrn" ];
fhir:Identifier.value [ fhir:value "abc" ]
];
fhir:Patient.name [
fhir:index 0;
fhir:HumanName.family [ fhir:value "Doe" ];
fhir:HumanName.given [
fhir:value "John";
fhir:index 0 ]
];
fhir:Patient.gender [ fhir:value "male"].
# - ontology header ------------------------------------------------------------
a owl:Ontology;
owl:imports fhir:fhir.ttl.