Healthy Route Implementation Guide, published by Savannah Informatics. 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/healthy-route-ig/ and changes regularly. See the Directory of published versions
: Example screening visit - 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 -------------------------------------------------------------------
<http://hl7.org/fhir/Encounter/ExampleScreeningVisit> a fhir:Encounter ;
fhir:nodeRole fhir:treeRoot ;
fhir:id [ fhir:v "ExampleScreeningVisit"] ; #
fhir:meta [
fhir:profile ( [
fhir:v "https://fhir.savannahghi.org/ig/healthy-route/StructureDefinition/hr-encounter"^^xsd:anyURI ;
fhir:link <https://fhir.savannahghi.org/ig/healthy-route/StructureDefinition/hr-encounter>
] )
] ; #
fhir:text [
fhir:status [ fhir:v "extensions" ] ;
fhir:div [ fhir:v "<div xmlns=\"http://www.w3.org/1999/xhtml\"><p class=\"res-header-id\"><b>Generated Narrative: Encounter ExampleScreeningVisit</b></p><a name=\"ExampleScreeningVisit\"> </a><a name=\"hcExampleScreeningVisit\"> </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-hr-encounter.html\">Healthy Route Screening Visit</a></p></div><p><b>Tenant</b>: <code>https://example.org/sid/tenant</code>/site-a</p><p><b>status</b>: Completed</p><p><b>class</b>: <span title=\"Codes:{http://terminology.hl7.org/CodeSystem/v3-ActCode AMB}\">ambulatory</span></p><p><b>subject</b>: <a href=\"Patient-ExampleParticipant.html\">Adhiambo Otieno Female, DoB: 1971-06-02 ( https://fhir.savannahghi.org/sid/optimalhealth-participant#HR-000123)</a></p><p><b>serviceProvider</b>: <a href=\"Organization-ExampleStudySite.html\">Organization Example Teaching Hospital</a></p><h3>Participants</h3><table class=\"grid\"><tr><td style=\"display: none\">-</td><td><b>Actor</b></td></tr><tr><td style=\"display: none\">*</td><td><a href=\"Practitioner-ExampleStudyNurse.html\">Practitioner Wanjiru Achieng </a></td></tr></table><p><b>actualPeriod</b>: 2026-04-14 09:05:00+0300 --> 2026-04-14 11:20:00+0300</p><h3>Locations</h3><table class=\"grid\"><tr><td style=\"display: none\">-</td><td><b>Location</b></td></tr><tr><td style=\"display: none\">*</td><td><a href=\"Location-ExampleRenalClinic.html\">Location Renal Clinic</a></td></tr></table></div>"^^rdf:XMLLiteral ]
] ; #
fhir:extension ( [
fhir:url [ fhir:v "https://fhir.savannahghi.org/ig/healthy-route/StructureDefinition/hr-tenant"^^xsd:anyURI ] ;
fhir:value [
a fhir:Identifier ;
fhir:system [ fhir:v "https://example.org/sid/tenant"^^xsd:anyURI ] ;
fhir:value [ fhir:v "site-a" ]
]
] ) ; #
fhir:status [ fhir:v "completed"] ; #
fhir:class ( [
fhir:coding ( [
fhir:system [ fhir:v "http://terminology.hl7.org/CodeSystem/v3-ActCode"^^xsd:anyURI ] ;
fhir:code [ fhir:v "AMB" ] ;
fhir:display [ fhir:v "ambulatory" ]
] )
] ) ; #
fhir:subject [
fhir:link <http://hl7.org/fhir/Patient/ExampleParticipant> ;
fhir:reference [ fhir:v "Patient/ExampleParticipant" ]
] ; #
fhir:serviceProvider [
fhir:link <http://hl7.org/fhir/Organization/ExampleStudySite> ;
fhir:reference [ fhir:v "Organization/ExampleStudySite" ]
] ; #
fhir:participant ( [
fhir:actor [
fhir:link <http://hl7.org/fhir/Practitioner/ExampleStudyNurse> ;
fhir:reference [ fhir:v "Practitioner/ExampleStudyNurse" ]
]
] ) ; #
fhir:actualPeriod [
fhir:start [ fhir:v "2026-04-14T09:05:00+03:00"^^xsd:dateTime ] ;
fhir:end [ fhir:v "2026-04-14T11:20:00+03:00"^^xsd:dateTime ]
] ; #
fhir:location ( [
fhir:location [
fhir:link <http://hl7.org/fhir/Location/ExampleRenalClinic> ;
fhir:reference [ fhir:v "Location/ExampleRenalClinic" ]
]
] ) . #
<http://hl7.org/fhir/Patient/ExampleParticipant> a fhir:Patient .
<http://hl7.org/fhir/Organization/ExampleStudySite> a fhir:Organization .
<http://hl7.org/fhir/Practitioner/ExampleStudyNurse> a fhir:Practitioner .
<http://hl7.org/fhir/Location/ExampleRenalClinic> a fhir:Location .