HL7 Czech Base and Core FHIR IG
1.0.0 - draft Czechia flag

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

: MedicationStatement Example

Raw xml | Download


<MedicationStatement xmlns="http://hl7.org/fhir">
  <id value="example-medicationstatement-czcore"/>
  <meta>
    <profile
             value="https://hl7.cz/fhir/core/StructureDefinition/medicationStatement-cz-core"/>
  </meta>
  <language value="en"/>
  <text>
    <status value="generated"/>
    <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>
  </text>
  <status value="active"/>
  <medicationCodeableConcept>
    <coding>
      <system value="https://sukl.cz/terminology/CodeSystem/dlp-atc"/>
      <code value="C09AA02"/>
      <display value="Enalapril"/>
    </coding>
    <text value="Enalapril 20mg tablets"/>
  </medicationCodeableConcept>
  <subject>🔗 
    <reference value="Patient/PatientExample"/>
    <display value="John Doe"/>
  </subject>
  <effectiveDateTime value="2024-12-01"/>
  <dateAsserted value="2024-12-01"/>
  <informationSource>🔗 
    <reference value="Patient/PatientExample"/>
    <display value="Luigi De Luca"/>
  </informationSource>
  <dosage>
    <text value="Take one tablet daily in the morning"/>
    <timing>
      <repeat>
        <frequency value="1"/>
        <period value="1"/>
        <periodUnit value="d"/>
      </repeat>
    </timing>
    <route>
      <coding>
        <system value="http://snomed.info/sct"/>
        <code value="26643006"/>
        <display value="Oral route"/>
      </coding>
      <coding>
        <system value="http://standardterms.edqm.eu"/>
        <code value="20053000"/>
        <display value="Oral use"/>
      </coding>
    </route>
    <doseAndRate>
      <doseQuantity>
        <value value="20"/>
        <unit value="mg"/>
        <system value="http://unitsofmeasure.org"/>
        <code value="mg"/>
      </doseQuantity>
    </doseAndRate>
  </dosage>
</MedicationStatement>