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 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 sct: <http://snomed.info/id/> .
@prefix xsd: <http://www.w3.org/2001/XMLSchema#> .

# - resource -------------------------------------------------------------------

 a fhir:MedicationStatement ;
  fhir:nodeRole fhir:treeRoot ;
  fhir:id [ fhir:v "example-medicationstatement-czcore"] ; # 
  fhir:meta [
    ( fhir:profile [
fhir:v "https://hl7.cz/fhir/core/StructureDefinition/medicationStatement-cz-core"^^xsd:anyURI ;
fhir:link <https://hl7.cz/fhir/core/StructureDefinition/medicationStatement-cz-core>     ] )
  ] ; # 
  fhir:language [ fhir:v "en"] ; # 
  fhir:text [
fhir:status [ fhir:v "generated" ] ;
fhir:div [ fhir:v "<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>"^^rdf:XMLLiteral ]
  ] ; # 
  fhir:status [ fhir:v "active"] ; # 
  fhir:medication [
a fhir:CodeableConcept ;
    ( fhir:coding [
fhir:system [ fhir:v "https://sukl.cz/terminology/CodeSystem/dlp-atc"^^xsd:anyURI ] ;
fhir:code [ fhir:v "C09AA02" ] ;
fhir:display [ fhir:v "Enalapril" ]     ] ) ;
fhir:text [ fhir:v "Enalapril 20mg tablets" ]
  ] ; # 
  fhir:subject [
fhir:reference [ fhir:v "Patient/PatientExample" ] ;
fhir:display [ fhir:v "John Doe" ]
  ] ; # 
  fhir:effective [
a fhir:dateTime ;
fhir:v "2024-12-01"^^xsd:date
  ] ; # 
  fhir:dateAsserted [ fhir:v "2024-12-01"^^xsd:date] ; # 
  fhir:informationSource [
fhir:reference [ fhir:v "Patient/PatientExample" ] ;
fhir:display [ fhir:v "Luigi De Luca" ]
  ] ; # 
  fhir:dosage ( [
fhir:text [ fhir:v "Take one tablet daily in the morning" ] ;
fhir:timing [
fhir:repeat [
fhir:frequency [ fhir:v "1"^^xsd:positiveInteger ] ;
fhir:period [ fhir:v "1"^^xsd:decimal ] ;
fhir:periodUnit [ fhir:v "d" ]       ]     ] ;
fhir:route [
      ( fhir:coding [
a sct:26643006 ;
fhir:system [ fhir:v "http://snomed.info/sct"^^xsd:anyURI ] ;
fhir:code [ fhir:v "26643006" ] ;
fhir:display [ fhir:v "Oral route" ]       ] [
fhir:system [ fhir:v "http://standardterms.edqm.eu"^^xsd:anyURI ] ;
fhir:code [ fhir:v "20053000" ] ;
fhir:display [ fhir:v "Oral use" ]       ] )     ] ;
    ( fhir:doseAndRate [
fhir:dose [
a fhir:Quantity ;
fhir:value [ fhir:v "20"^^xsd:decimal ] ;
fhir:unit [ fhir:v "mg" ] ;
fhir:system [ fhir:v "http://unitsofmeasure.org"^^xsd:anyURI ] ;
fhir:code [ fhir:v "mg" ]       ]     ] )
  ] ) . #