Hackathon - FHIR Implementation Guide For Continuity of Care, published by Jembi Health Systems. This guide is not an authorized publication; it is the continuous build for version 1.0.1 built by the FHIR (HL7® FHIR® Standard) CI Build. This version is based on the current content of https://github.com/jembi/OHIE24-Continuity-of-Care/ and changes regularly. See the Directory of published versions
: Patient - Example 1 - 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 "PatientExample1"] ; #
fhir:meta [
( fhir:profile [
fhir:v "http://ohie.org/fhir/StructureDefinition/hiv-patient"^^xsd:anyURI ;
fhir:link <http://ohie.org/fhir/StructureDefinition/hiv-patient> ] ) ;
( fhir:security [
fhir:system [ fhir:v "http://terminology.hl7.org/CodeSystem/v3-Confidentiality"^^xsd:anyURI ] ;
fhir:code [ fhir:v "R" ] ] )
] ; #
fhir:text [
fhir:status [ fhir:v "generated" ] ;
fhir:div "<div xmlns=\"http://www.w3.org/1999/xhtml\"><p class=\"res-header-id\"><b>Generated Narrative: Patient PatientExample1</b></p><a name=\"PatientExample1\"> </a><a name=\"hcPatientExample1\"> </a><a name=\"PatientExample1-en-US\"> </a><p style=\"border: 1px #661aff solid; background-color: #e6e6ff; padding: 10px;\">Mike John Smith Male, DoB: 1983-05-22 ( http://fhir.health.gov.lk/ips/identifier/phn#personal health number)</p><hr/><table class=\"grid\"><tr><td style=\"background-color: #f3f5da\" title=\"Other Ids (see the one above)\">Other Ids:</td><td colspan=\"3\"><ul><li><code>http://fhir.health.gov.lk/ips/identifier/passport</code>/Passport-1</li><li><code>http://fhir.health.gov.lk/ips/identifier/drivers</code>/Drivers license-1</li><li><code>http://fhir.health.gov.lk/ips/identifier/drivers</code>/Drivers license-2</li><li><code>http://fhir.health.gov.lk/ips/identifier/nic</code>/National identity number-1</li><li><code>http://fhir.health.gov.lk/ips/identifier/scn</code>/Senior citizen number-1</li></ul></td></tr><tr><td style=\"background-color: #f3f5da\" title=\"Ways to contact the Patient\">Contact Detail</td><td colspan=\"3\"><ul><li><a href=\"tel:+27829999999\">+27829999999</a></li><li><a href=\"mailto:someone@something.com\">someone@something.com</a></li><li><a href=\"mailto:someone2@something.com\">someone2@something.com</a></li><li>177 Nawala Road Nugegoda Colombo 32350 LK </li></ul></td></tr></table></div>"
] ; #
fhir:identifier ( [
fhir:system [ fhir:v "http://fhir.health.gov.lk/ips/identifier/phn"^^xsd:anyURI ] ;
fhir:value [ fhir:v "personal health number" ]
] [
fhir:system [ fhir:v "http://fhir.health.gov.lk/ips/identifier/passport"^^xsd:anyURI ] ;
fhir:value [ fhir:v "Passport-1" ]
] [
fhir:system [ fhir:v "http://fhir.health.gov.lk/ips/identifier/drivers"^^xsd:anyURI ] ;
fhir:value [ fhir:v "Drivers license-1" ]
] [
fhir:system [ fhir:v "http://fhir.health.gov.lk/ips/identifier/drivers"^^xsd:anyURI ] ;
fhir:value [ fhir:v "Drivers license-2" ]
] [
fhir:system [ fhir:v "http://fhir.health.gov.lk/ips/identifier/nic"^^xsd:anyURI ] ;
fhir:value [ fhir:v "National identity number-1" ]
] [
fhir:system [ fhir:v "http://fhir.health.gov.lk/ips/identifier/scn"^^xsd:anyURI ] ;
fhir:value [ fhir:v "Senior citizen number-1" ]
] ) ; #
fhir:name ( [
fhir:family [ fhir:v "Smith" ] ;
( fhir:given [ fhir:v "Mike" ] [ fhir:v "John" ] )
] ) ; #
fhir:telecom ( [
fhir:system [ fhir:v "phone" ] ;
fhir:value [ fhir:v "+27829999999" ]
] [
fhir:system [ fhir:v "email" ] ;
fhir:value [ fhir:v "someone@something.com" ]
] [
fhir:system [ fhir:v "email" ] ;
fhir:value [ fhir:v "someone2@something.com" ]
] ) ; #
fhir:gender [ fhir:v "male"] ; #
fhir:birthDate [ fhir:v "1983-05-22"^^xsd:date] ; #
fhir:address ( [
fhir:type [ fhir:v "postal" ] ;
( fhir:line [ fhir:v "177" ] [ fhir:v "Nawala Road" ] ) ;
fhir:city [ fhir:v "Nugegoda" ] ;
fhir:district [ fhir:v "Ampara" ] ;
fhir:state [ fhir:v "Colombo" ] ;
fhir:postalCode [ fhir:v "32350" ] ;
fhir:country [ fhir:v "LK" ]
] ) . #