SIL HIE Implementation Guide
0.1.0 - sil-hie-active
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
{
"resourceType" : "Medication",
"id" : "HIEMedication-example",
"meta" : {
"profile" : [
🔗 "https://nshr.dha.go.ke/fhir/StructureDefinition/hie-medication"
]
},
"text" : {
"status" : "generated",
"div" : "<div xmlns=\"http://www.w3.org/1999/xhtml\"><p><b>Medication Summary</b></p><table><tbody><tr><td><b>Name</b></td><td>Amoxicillin 500 mg capsule</td></tr><tr><td><b>Status</b></td><td>active</td></tr><tr><td><b>Form</b></td><td>Capsule</td></tr><tr><td><b>Identifier</b></td><td>AMOX-500-CAP-30</td></tr><tr><td><b>Amount</b></td><td>30 capsules per package</td></tr><tr><td><b>Ingredient</b></td><td>Amoxicillin, 500 mg per capsule</td></tr><tr><td><b>Manufacturer</b></td><td>Acme Generics Ltd</td></tr><tr><td><b>Batch</b></td><td>LOT-AXC-2025-001, exp 2027-01-31</td></tr></tbody></table></div>"
},
"identifier" : [
{
"use" : "official",
"type" : {
"coding" : [
{
"system" : "http://terminology.hl7.org/CodeSystem/v2-0203",
"code" : "ACSN",
"display" : "Accession ID"
}
]
},
"system" : "http://formulary.example.org/meds",
"value" : "AMOX-500-CAP-30"
}
],
"code" : {
"coding" : [
{
"system" : "http://www.nlm.nih.gov/research/umls/rxnorm",
"code" : "308189",
"display" : "Amoxicillin 500 MG Oral Capsule"
}
],
"text" : "Amoxicillin 500 mg capsule"
},
"status" : "active",
"manufacturer" : {
"reference" : "Organization/manu-001",
"display" : "Acme Generics Ltd"
},
"form" : {
"coding" : [
{
"system" : "http://terminology.hl7.org/CodeSystem/v3-orderableDrugForm",
"code" : "CAP",
"display" : "Capsule"
}
]
},
"amount" : {
"numerator" : {
"value" : 30,
"unit" : "capsule",
"system" : "http://unitsofmeasure.org",
"code" : "1"
},
"denominator" : {
"value" : 1,
"unit" : "package",
"system" : "http://unitsofmeasure.org",
"code" : "1"
}
},
"ingredient" : [
{
"itemCodeableConcept" : {
"coding" : [
{
"system" : "http://snomed.info/sct",
"code" : "372687004",
"display" : "Amoxicillin (substance)"
}
]
},
"isActive" : true,
"strength" : {
"numerator" : {
"value" : 500,
"unit" : "mg",
"system" : "http://unitsofmeasure.org",
"code" : "mg"
},
"denominator" : {
"value" : 1,
"unit" : "capsule",
"system" : "http://unitsofmeasure.org",
"code" : "1"
}
}
}
],
"batch" : {
"lotNumber" : "LOT-AXC-2025-001",
"expirationDate" : "2027-01-31"
}
}