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

: PatientExample2 - TTL Representation

Raw ttl | Download


@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 "PatientExample2"];
  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, id: 123456</p><p><b>name</b>: Jane Doe </p><p><b>gender</b>: female</p></div>"
  ];
  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"].

# - ontology header ------------------------------------------------------------

 a owl:Ontology;
  owl:imports fhir:fhir.ttl.