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 AppointmentResponse - 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:AppointmentResponse ;
fhir:nodeRole fhir:treeRoot ;
fhir:id [ fhir:v "HIEAppointmentResponse-example"] ; #
fhir:meta [
( fhir:profile [
fhir:v "https://nshr.dha.go.ke/fhir/StructureDefinition/hie-appointmentresponse"^^xsd:anyURI ;
fhir:l <https://nshr.dha.go.ke/fhir/StructureDefinition/hie-appointmentresponse> ] )
] ; #
fhir:text [
fhir:status [ fhir:v "generated" ] ;
fhir:div [ fhir:v "<div xmlns=\"http://www.w3.org/1999/xhtml\"><p><b>Appointment Response</b></p><p>Primary performer accepted the booking. Confirms a 30 minute window.</p><table><thead><tr><th align=\"left\">Field</th><th align=\"left\">Value</th></tr></thead><tbody><tr><td>Appointment</td><td>HIEAppointment APT-2025-0001</td></tr><tr><td>Actor</td><td>Dr. John Clinician (HIEPractitioner/pr-001)</td></tr><tr><td>Status</td><td>accepted</td></tr><tr><td>Start</td><td>2025-11-20T09:00:00+03:00</td></tr><tr><td>End</td><td>2025-11-20T09:30:00+03:00</td></tr><tr><td>Role</td><td>primary performer</td></tr><tr><td>Comment</td><td>Confirmed, please arrive 10 minutes early</td></tr></tbody></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:l <http://terminology.hl7.org/CodeSystem/v2-0203> ] ;
fhir:code [ fhir:v "FILL" ] ;
fhir:display [ fhir:v "Filler Identifier" ] ] ) ] ;
fhir:system [
fhir:v "http://example.org/appointment-responses"^^xsd:anyURI ;
fhir:l <http://example.org/appointment-responses> ] ;
fhir:value [ fhir:v "APR-2025-0001" ]
] ) ; #
fhir:appointment [
fhir:l fhir:Appointment/HIEAppointment-example ;
fhir:reference [ fhir:v "Appointment/HIEAppointment-example" ] ;
fhir:display [ fhir:v "Booked GP consult" ]
] ; #
fhir:start [ fhir:v "2025-11-20T09:00:00+03:00"^^xsd:dateTime] ; #
fhir:end [ fhir:v "2025-11-20T09:30:00+03:00"^^xsd:dateTime] ; #
fhir:participantType ( [
( fhir:coding [
fhir:system [
fhir:v "http://terminology.hl7.org/CodeSystem/participant-type"^^xsd:anyURI ;
fhir:l <http://terminology.hl7.org/CodeSystem/participant-type> ] ;
fhir:code [ fhir:v "PPRF" ] ;
fhir:display [ fhir:v "primary performer" ] ] )
] ) ; #
fhir:actor [
fhir:l fhir:HIEPractitioner/pr-001 ;
fhir:reference [ fhir:v "HIEPractitioner/pr-001" ] ;
fhir:display [ fhir:v "Dr. John Clinician" ]
] ; #
fhir:participantStatus [ fhir:v "accepted"] ; #
fhir:comment [ fhir:v "Confirmed, please arrive 10 minutes early"] . #