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 "PatientExample3"];
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 "extensions" ];
fhir:Narrative.div "<div xmlns=\"http://www.w3.org/1999/xhtml\"><p><b>Generated Narrative</b></p><blockquote><p><b>US Core Race Extension</b></p><h3>Urls</h3><table class=\"grid\"><tr><td>-</td></tr><tr><td>*</td></tr></table><p><b>value</b>: White Caucasian</p><h3>Urls</h3><table class=\"grid\"><tr><td>-</td></tr><tr><td>*</td></tr></table><p><b>value</b>: <span title=\"{urn:oid:2.16.840.1.113883.6.238 2106-3}\">White</span></p></blockquote><blockquote><p><b>US Core Ethnicity Extension</b></p><h3>Urls</h3><table class=\"grid\"><tr><td>-</td></tr><tr><td>*</td></tr></table><p><b>value</b>: Unknown</p></blockquote><p><b>identifier</b>: id: abc, id: 123456</p><p><b>name</b>: Jane Doe </p><p><b>gender</b>: female</p><p><b>birthDate</b>: 1944-01-29</p><p><b>address</b>: Garland Texas (HOME)</p><p><b>managingOrganization</b>: <span>Good Health Medical Center</span></p></div>"
];
fhir:DomainResource.extension [
fhir:index 0;
fhir:Element.extension [
fhir:index 0;
fhir:Extension.url [ fhir:value "text" ];
fhir:Extension.valueString [ fhir:value "White Caucasian" ] ], [
fhir:index 1;
fhir:Extension.url [ fhir:value "ombCategory" ];
fhir:Extension.valueCoding [
fhir:Coding.system [ fhir:value "urn:oid:2.16.840.1.113883.6.238" ];
fhir:Coding.code [ fhir:value "2106-3" ];
fhir:Coding.display [ fhir:value "White" ] ] ];
fhir:Extension.url [ fhir:value "http://hl7.org/fhir/us/core/StructureDefinition/us-core-race" ]
], [
fhir:index 1;
fhir:Element.extension [
fhir:index 0;
fhir:Extension.url [ fhir:value "text" ];
fhir:Extension.valueString [ fhir:value "Unknown" ] ];
fhir:Extension.url [ fhir:value "http://hl7.org/fhir/us/core/StructureDefinition/us-core-ethnicity" ]
];
fhir:Patient.identifier [
fhir:index 0;
fhir:Identifier.system [ fhir:value "http://example.org/mrn" ];
fhir:Identifier.value [ fhir:value "abc" ]
], [
fhir:index 1;
fhir:Identifier.system [ fhir:value "http://terminology.cibmtr.org/identifier/CRID" ];
fhir:Identifier.value [ fhir:value "123456" ]
];
fhir:Patient.name [
fhir:index 0;
fhir:HumanName.family [ fhir:value "Doe" ];
fhir:HumanName.given [
fhir:value "Jane";
fhir:index 0 ]
];
fhir:Patient.gender [ fhir:value "female"];
fhir:Patient.birthDate [ fhir:value "1944-01-29"^^xsd:date];
fhir:Patient.address [
fhir:index 0;
fhir:Address.use [ fhir:value "home" ];
fhir:Address.city [ fhir:value "Garland" ];
fhir:Address.state [ fhir:value "Texas" ]
];
fhir:Patient.managingOrganization [
fhir:Reference.identifier [
fhir:Identifier.system [ fhir:value "http://terminology.cibmtr.org/identifier/transplant-center" ];
fhir:Identifier.value [ fhir:value "00000" ] ];
fhir:Reference.display [ fhir:value "Good Health Medical Center" ]
].
# - ontology header ------------------------------------------------------------
a owl:Ontology;
owl:imports fhir:fhir.ttl.