HL7 Czech Base and Core FHIR IG
1.0.0 - draft
HL7 Czech Base and Core FHIR IG, published by HL7 Czech Republic. This guide is not an authorized publication; it is the continuous build for version 1.0.0 built by the FHIR (HL7® FHIR® Standard) CI Build. This version is based on the current content of https://github.com/HL7-cz/cz-core/ and changes regularly. See the Directory of published versions
{
"resourceType" : "MedicationStatement",
"id" : "example-medicationstatement-czcore",
"meta" : {
"profile" : [
🔗 "https://hl7.cz/fhir/core/StructureDefinition/medicationStatement-cz-core"
]
},
"language" : "en",
"text" : {
"status" : "generated",
"div" : "<div xmlns=\"http://www.w3.org/1999/xhtml\"><p><strong>Medication:</strong> Enalapril 20mg tablets</p><p><strong>Patient:</strong> John Doe</p><p><strong>Status:</strong> Active</p><p><strong>Dosage:</strong> Take one tablet daily in the morning (oral route)</p><p><strong>Informant:</strong> Luigi De Luca</p><p><strong>Date Asserted:</strong> 2024-12-01</p></div>"
},
"status" : "active",
"medicationCodeableConcept" : {
"coding" : [
{
"system" : "https://sukl.cz/terminology/CodeSystem/dlp-atc",
"code" : "C09AA02",
"display" : "Enalapril"
}
],
"text" : "Enalapril 20mg tablets"
},
"subject" : {
🔗 "reference" : "Patient/PatientExample",
"display" : "John Doe"
},
"effectiveDateTime" : "2024-12-01",
"dateAsserted" : "2024-12-01",
"informationSource" : {
🔗 "reference" : "Patient/PatientExample",
"display" : "Luigi De Luca"
},
"dosage" : [
{
"text" : "Take one tablet daily in the morning",
"timing" : {
"repeat" : {
"frequency" : 1,
"period" : 1,
"periodUnit" : "d"
}
},
"route" : {
"coding" : [
{
"system" : "http://snomed.info/sct",
"code" : "26643006",
"display" : "Oral route"
},
{
"system" : "http://standardterms.edqm.eu",
"code" : "20053000",
"display" : "Oral use"
}
]
},
"doseAndRate" : [
{
"doseQuantity" : {
"value" : 20,
"unit" : "mg",
"system" : "http://unitsofmeasure.org",
"code" : "mg"
}
}
]
}
]
}