Interactive Multimedia Report (IMR)
1.0.1-current - ci-build International flag

Interactive Multimedia Report (IMR), published by IHE Radiology Technical Committee. This is not an authorized publication; it is the continuous build for version 1.0.1-current). This version is based on the current content of https://github.com/IHE/RAD.IMR/ and changes regularly. See the Directory of published versions

: Patient example - 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 "ex-Patient"]; # 
  fhir:DomainResource.text [
     fhir:Narrative.status [ fhir:value "generated" ];
     fhir:Narrative.div "<div xmlns=\"http://www.w3.org/1999/xhtml\"><p style=\"border: 1px #661aff solid; background-color: #e6e6ff; padding: 10px;\"><b>John Smith </b> (no stated gender), DoB Unknown ( Medical Record Number: 1234567)</p><hr/></div>"
  ]; # 
  fhir:Patient.identifier [
     fhir:index 0;
     fhir:Identifier.type [
       fhir:CodeableConcept.coding [
         fhir:index 0;
         fhir:Coding.system [ fhir:value "http://terminology.hl7.org/CodeSystem/v2-0203" ];
         fhir:Coding.code [ fhir:value "MR" ];
         fhir:Coding.display [ fhir:value "Medical Record Number" ]       ]     ];
     fhir:Identifier.system [ fhir:value "http://www.acme.com/identifiers/patient" ];
     fhir:Identifier.value [ fhir:value "1234567" ]
  ]; # 
  fhir:Patient.name [
     fhir:index 0;
     fhir:HumanName.family [ fhir:value "Smith" ];
     fhir:HumanName.given [
       fhir:value "John";
       fhir:index 0     ]
  ]. # 

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

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