Integrated Reporting Applications
0.1.1 - ci-build International flag

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

: Patient Context 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:id [ fhir:v "example-PatientContext"] ; # 
  fhir:meta [
    ( fhir:profile [
fhir:v "https://profiles.ihe.net/RAD/IRA/StructureDefinition/patientcontext"^^xsd:anyURI ;
fhir:link <https://profiles.ihe.net/RAD/IRA/StructureDefinition/patientcontext>     ] )
  ] ; # 
  fhir:text [
fhir:status [ fhir:v "generated" ] ;
fhir: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:identifier ( [
fhir:type [
      ( fhir:coding [
fhir:system [ fhir:v "http://terminology.hl7.org/CodeSystem/v2-0203"^^xsd:anyURI ] ;
fhir:code [ fhir:v "MR" ] ;
fhir:display [ fhir:v "Medical Record Number" ]       ] )     ] ;
fhir:system [ fhir:v "http://www.acme.com/identifiers/patient"^^xsd:anyURI ] ;
fhir:value [ fhir:v "1234567" ]
  ] ) ; # 
  fhir:name ( [
fhir:family [ fhir:v "Smith" ] ;
    ( fhir:given [ fhir:v "John" ] )
  ] ) . #