SGHI FHIR Profile 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/sil_fhir_profile_ig/ and changes regularly. See the Directory of published versions
: Example SGHI Organization - 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:Organization ;
fhir:nodeRole fhir:treeRoot ;
fhir:id [ fhir:v "ExampleSGHIOrganization"] ; #
fhir:meta [
( fhir:profile [
fhir:v "https://fhir.slade360.co.ke/fhir/StructureDefinition/sghi-organization"^^xsd:anyURI ;
fhir:link <https://fhir.slade360.co.ke/fhir/StructureDefinition/sghi-organization> ] )
] ; #
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: Organization ExampleSGHIOrganization</b></p><a name=\"ExampleSGHIOrganization\"> </a><a name=\"hcExampleSGHIOrganization\"> </a><div style=\"display: inline-block; background-color: #d9e0e7; padding: 6px; margin: 4px; border: 1px solid #8da1b4; border-radius: 5px; line-height: 60%\"><p style=\"margin-bottom: 0px\"/><p style=\"margin-bottom: 0px\">Profile: <a href=\"StructureDefinition-sghi-organization.html\">SGHI Organization</a></p></div><p><b>identifier</b>: Passport number/123456789 (use: official, )</p><p><b>active</b>: true</p><p><b>type</b>: <span title=\"Codes:\">Healthcare Provider</span></p><p><b>name</b>: SGHI Healthcare Organization</p><h3>Contacts</h3><table class=\"grid\"><tr><td style=\"display: none\">-</td><td><b>Purpose</b></td><td><b>Name</b></td><td><b>Telecom</b></td><td><b>Address</b></td></tr><tr><td style=\"display: none\">*</td><td><span title=\"Codes:\">Administrative</span></td><td>Jane Doe</td><td><a href=\"tel:+254717355900\">+254717355900</a>, <a href=\"mailto:admin@sghi.org\">admin@sghi.org</a></td><td>Nairobi 98765 Kenya (work)</td></tr></table></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:code [ fhir:v "PPN" ] ;
fhir:display [ fhir:v "Passport number" ] ] ) ] ;
fhir:system [ fhir:v "http://terminology.hl7.org/CodeSystem/v2-0203"^^xsd:anyURI ] ;
fhir:value [ fhir:v "123456789" ]
] ) ; #
fhir:active [ fhir:v true] ; #
fhir:type ( [
( fhir:coding [
fhir:code [ fhir:v "prov" ] ;
fhir:display [ fhir:v "Healthcare Provider" ] ] )
] ) ; #
fhir:name [ fhir:v "SGHI Healthcare Organization"] ; #
fhir:contact ( [
fhir:purpose [
( fhir:coding [
fhir:code [ fhir:v "ADMIN" ] ;
fhir:display [ fhir:v "Administrative" ] ] ) ] ;
( fhir:name [
fhir:text [ fhir:v "Jane Doe" ] ] ) ;
( fhir:telecom [
fhir:system [ fhir:v "phone" ] ;
fhir:value [ fhir:v "+254717355900" ] ;
fhir:use [ fhir:v "work" ] ] [
fhir:system [ fhir:v "email" ] ;
fhir:value [ fhir:v "admin@sghi.org" ] ;
fhir:use [ fhir:v "work" ] ] ) ;
fhir:address [
fhir:use [ fhir:v "work" ] ;
fhir:type [ fhir:v "physical" ] ;
fhir:city [ fhir:v "Nairobi" ] ;
fhir:postalCode [ fhir:v "98765" ] ;
fhir:country [ fhir:v "Kenya" ] ]
] ) . #