KISUMUHIEFHIRIG, published by intellisoftkenya. 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/IntelliSOFT-Consulting/Kisumu-County-HIE-FHIR-IG/ and changes regularly. See the Directory of published versions
: Example – KCHIP Current Medication - 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:MedicationStatement ;
fhir:nodeRole fhir:treeRoot ;
fhir:id [ fhir:v "KCHIPMedicationStatementExample"] ; #
fhir:meta [
( fhir:profile [
fhir:v "http://fhir.kisumuhealth.co.ke/StructureDefinition/kchip-medication-statement"^^xsd:anyURI ;
fhir:link <http://fhir.kisumuhealth.co.ke/StructureDefinition/kchip-medication-statement> ] )
] ; #
fhir:text [
fhir:status [ fhir:v "generated" ] ;
fhir:div [ fhir:v "<div xmlns=\"http://www.w3.org/1999/xhtml\"><p class=\"res-header-id\"><b>Generated Narrative: MedicationStatement KCHIPMedicationStatementExample</b></p><a name=\"KCHIPMedicationStatementExample\"> </a><a name=\"hcKCHIPMedicationStatementExample\"> </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-kchip-medication-statement.html\">KCHIP Current Medication</a></p></div><p><b>status</b>: Active</p><p><b>medication</b>: <span title=\"Codes:\">Methyldopa 250mg</span></p><p><b>subject</b>: <a href=\"Patient-KisumuPatientExample.html\">Achieng Grace Odhiambo Female, DoB: 1990-04-23 ( http://moh.kenya/identifier/nationalID-no#12345678)</a></p><p><b>effective</b>: 2026-04-20 --> (ongoing)</p><p><b>reasonCode</b>: <span title=\"Codes:\">Hypertension in pregnancy</span></p><h3>Dosages</h3><table class=\"grid\"><tr><td style=\"display: none\">-</td><td><b>Text</b></td></tr><tr><td style=\"display: none\">*</td><td>250mg orally twice daily</td></tr></table></div>"^^rdf:XMLLiteral ]
] ; #
fhir:status [ fhir:v "active"] ; #
fhir:medication [
a fhir:CodeableConcept ;
fhir:text [ fhir:v "Methyldopa 250mg" ]
] ; #
fhir:subject [
fhir:reference [ fhir:v "Patient/KisumuPatientExample" ]
] ; #
fhir:effective [
a fhir:Period ;
fhir:start [ fhir:v "2026-04-20"^^xsd:date ]
] ; #
fhir:reasonCode ( [
fhir:text [ fhir:v "Hypertension in pregnancy" ]
] ) ; #
fhir:dosage ( [
fhir:text [ fhir:v "250mg orally twice daily" ]
] ) . #