SIL HIE Implementation Guide
0.1.0 - sil-hie-active

SIL HIE Implementation Guide, published by Kathurima Kimathi. This guide is not an authorized publication; it is the continuous build for version 0.1.0 built by the FHIR (HL7® FHIR® Standard) CI Build. This version is based on the current content of https://github.com/savannahghi/hie-fhir-ig-profile/ and changes regularly. See the Directory of published versions

: Example HIE Patient - TTL Representation

Raw ttl | Download


@prefix fhir: <http://hl7.org/fhir/> .
@prefix owl: <http://www.w3.org/2002/07/owl#> .
@prefix rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> .
@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 "HIEPatient-example"] ; # 
  fhir:meta [
    ( fhir:profile [
fhir:v "https://nshr.dha.go.ke/fhir/StructureDefinition/hie-patient"^^xsd:anyURI ;
fhir:l <https://nshr.dha.go.ke/fhir/StructureDefinition/hie-patient>     ] )
  ] ; # 
  fhir:text [
fhir:status [ fhir:v "generated" ] ;
fhir:div [ fhir:v "<div xmlns=\"http://www.w3.org/1999/xhtml\"><p><b>Patient Summary</b></p><table><tbody><tr><td><b>Name</b></td><td>Jane Patient</td></tr><tr><td><b>Identifier</b></td><td>MRN-12345 (http://example.org/mrn)</td></tr><tr><td><b>Active</b></td><td>true</td></tr><tr><td><b>Gender</b></td><td>female</td></tr><tr><td><b>Date of birth</b></td><td>1990-04-05</td></tr><tr><td><b>Marital status</b></td><td>Married</td></tr><tr><td><b>Managing organization</b></td><td>Acme Health Center (Organization/org-001)</td></tr><tr><td><b>General practitioner</b></td><td>Dr. John Clinician (HIEPractitioner/pr-001)</td></tr></tbody></table><p><b>Telecom</b></p><ul><li>Phone, mobile, rank 1: +254700000001</li><li>Email, home: jane.patient@example.org</li></ul><p><b>Contacts</b></p><table><thead><tr><th align=\"left\">Name</th><th align=\"left\">Relationship</th><th align=\"left\">Telecom</th><th align=\"left\">Organization</th></tr></thead><tbody><tr><td>Mary Patient</td><td>Mother</td><td>+254700000002 (mobile)</td><td>Acme Health Center (Organization/org-001)</td></tr></tbody></table><p><b>Communication</b></p><ul><li>Language: English, preferred</li></ul><p><b>Links</b></p><ul><li>Refer: Patient/p-duplicate-001 (Duplicate index record)</li></ul></div>"^^rdf:XMLLiteral ]
  ] ; # 
  fhir:identifier ( [
fhir:use [ fhir:v "official" ] ;
fhir:type [
      ( fhir:coding [
fhir:system [
fhir:v "http://terminology.hl7.org/CodeSystem/v2-0203"^^xsd:anyURI ;
fhir:l <http://terminology.hl7.org/CodeSystem/v2-0203>         ] ;
fhir:code [ fhir:v "MR" ] ;
fhir:display [ fhir:v "Medical record number" ]       ] )     ] ;
fhir:system [
fhir:v "http://example.org/mrn"^^xsd:anyURI ;
fhir:l <http://example.org/mrn>     ] ;
fhir:value [ fhir:v "MRN-12345" ]
  ] ) ; # 
  fhir:active [ fhir:v true] ; # 
  fhir:name ( [
fhir:use [ fhir:v "official" ] ;
fhir:text [ fhir:v "Jane Patient" ] ;
fhir:family [ fhir:v "Patient" ] ;
    ( fhir:given [ fhir:v "Jane" ] )
  ] ) ; # 
  fhir:telecom ( [
fhir:system [ fhir:v "phone" ] ;
fhir:value [ fhir:v "+254700000001" ] ;
fhir:use [ fhir:v "mobile" ] ;
fhir:rank [ fhir:v "1"^^xsd:positiveInteger ]
  ] [
fhir:system [ fhir:v "email" ] ;
fhir:value [ fhir:v "jane.patient@example.org" ] ;
fhir:use [ fhir:v "home" ]
  ] ) ; # 
  fhir:gender [ fhir:v "female"] ; # 
  fhir:birthDate [ fhir:v "1990-04-05"^^xsd:date] ; # 
  fhir:maritalStatus [
    ( fhir:coding [
fhir:system [
fhir:v "http://terminology.hl7.org/CodeSystem/v3-MaritalStatus"^^xsd:anyURI ;
fhir:l <http://terminology.hl7.org/CodeSystem/v3-MaritalStatus>       ] ;
fhir:code [ fhir:v "M" ] ;
fhir:display [ fhir:v "Married" ]     ] )
  ] ; # 
  fhir:contact ( [
    ( fhir:relationship [
      ( fhir:coding [
fhir:system [
fhir:v "http://terminology.hl7.org/CodeSystem/v3-RoleCode"^^xsd:anyURI ;
fhir:l <http://terminology.hl7.org/CodeSystem/v3-RoleCode>         ] ;
fhir:code [ fhir:v "MTH" ] ;
fhir:display [ fhir:v "Mother" ]       ] )     ] ) ;
fhir:name [
fhir:text [ fhir:v "Mary Patient" ]     ] ;
    ( fhir:telecom [
fhir:system [ fhir:v "phone" ] ;
fhir:value [ fhir:v "+254700000002" ] ;
fhir:use [ fhir:v "mobile" ]     ] ) ;
fhir:organization [
fhir:l fhir:Organization/org-001 ;
fhir:reference [ fhir:v "Organization/org-001" ] ;
fhir:display [ fhir:v "Acme Health Center" ]     ]
  ] ) ; # 
  fhir:communication ( [
fhir:language [
      ( fhir:coding [
fhir:system [
fhir:v "urn:ietf:bcp:47"^^xsd:anyURI ;
fhir:l <urn:ietf:bcp:47>         ] ;
fhir:code [ fhir:v "en" ] ;
fhir:display [ fhir:v "English" ]       ] )     ] ;
fhir:preferred [ fhir:v true ]
  ] ) ; # 
  fhir:generalPractitioner ( [
fhir:l fhir:HIEPractitioner/pr-001 ;
fhir:reference [ fhir:v "HIEPractitioner/pr-001" ] ;
fhir:display [ fhir:v "Dr. John Clinician" ]
  ] ) ; # 
  fhir:managingOrganization [
fhir:l fhir:Organization/org-001 ;
fhir:reference [ fhir:v "Organization/org-001" ] ;
fhir:display [ fhir:v "Acme Health Center" ]
  ] ; # 
  fhir:link ( [
fhir:other [
fhir:l fhir:Patient/p-duplicate-001 ;
fhir:reference [ fhir:v "Patient/p-duplicate-001" ] ;
fhir:display [ fhir:v "Duplicate index record" ]     ] ;
fhir:type [ fhir:v "refer" ]
  ] ) . #