HL7 Czech Base and Core FHIR IG
1.1.0 - ci-build 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.1.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 rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
@prefix sct: <http://snomed.info/id/> .
@prefix xsd: <http://www.w3.org/2001/XMLSchema#> .

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

<http://hl7.org/fhir/MedicationStatement/example-medicationstatement-czcore> a fhir:MedicationStatement ;
  fhir:nodeRole fhir:treeRoot ;
  fhir:Resource.id [ fhir:value "example-medicationstatement-czcore"] ;
  fhir:Resource.meta [
     fhir:Meta.profile [
       fhir:value "https://hl7.cz/fhir/core/StructureDefinition/medicationStatement-cz-core" ;
       fhir:index -1 ;
       fhir:link <https://hl7.cz/fhir/core/StructureDefinition/medicationStatement-cz-core>
     ]
  ] ;
  fhir:Resource.language [ fhir:value "en"] ;
  fhir:DomainResource.text [
     fhir:Narrative.status [ fhir:value "generated" ] ;
     fhir:Narrative.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>"
  ] ;
  fhir:MedicationStatement.status [ fhir:value "active"] ;
  fhir:MedicationStatement.medicationCodeableConcept [
     fhir:CodeableConcept.coding [
       fhir:index -1 ;
       fhir:Coding.system [ fhir:value "https://sukl.cz/terminology/CodeSystem/dlp-lecivepripravky" ] ;
       fhir:Coding.code [ fhir:value "0169879" ] ;
       fhir:Coding.display [ fhir:value "ENALAPRIL VITABALANS 20MG TBL NOB 100" ]
     ] ;
     fhir:CodeableConcept.text [ fhir:value "Enalapril 20mg tablety" ]
  ] ;
  fhir:MedicationStatement.subject [
     fhir:link <http://hl7.org/fhir/Patient/PatientExample> ;
     fhir:Reference.reference [ fhir:value "Patient/PatientExample" ] ;
     fhir:Reference.display [ fhir:value "John Doe" ]
  ] ;
  fhir:MedicationStatement.effectiveDateTime [ fhir:value "2024-12-01"^^xsd:date] ;
  fhir:MedicationStatement.dateAsserted [ fhir:value "2024-12-01"^^xsd:date] ;
  fhir:MedicationStatement.informationSource [
     fhir:link <http://hl7.org/fhir/Patient/PatientExample> ;
     fhir:Reference.reference [ fhir:value "Patient/PatientExample" ] ;
     fhir:Reference.display [ fhir:value "Luigi De Luca" ]
  ] ;
  fhir:MedicationStatement.dosage [
     fhir:index -1 ;
     fhir:Dosage.text [ fhir:value "Take one tablet daily in the morning" ] ;
     fhir:Dosage.timing [
       fhir:Timing.repeat [
         fhir:Timing.repeat.frequency [ fhir:value "1"^^xsd:positiveInteger ] ;
         fhir:Timing.repeat.period [ fhir:value "1"^^xsd:decimal ] ;
         fhir:Timing.repeat.periodUnit [ fhir:value "d" ]
       ]
     ] ;
     fhir:Dosage.route [
       fhir:CodeableConcept.coding [
         fhir:index -1 ;
         a sct:26643006 ;
         fhir:Coding.system [ fhir:value "http://snomed.info/sct" ] ;
         fhir:Coding.code [ fhir:value "26643006" ] ;
         fhir:Coding.display [ fhir:value "perorální podání" ]
       ], [
         fhir:index -1 ;
         fhir:Coding.system [ fhir:value "http://standardterms.edqm.eu" ] ;
         fhir:Coding.code [ fhir:value "20053000" ] ;
         fhir:Coding.display [ fhir:value "Oral use" ]
       ]
     ] ;
     fhir:Dosage.doseAndRate [
       fhir:index -1 ;
       fhir:Dosage.doseAndRate.doseQuantity [
         fhir:Quantity.value [ fhir:value "20"^^xsd:decimal ] ;
         fhir:Quantity.unit [ fhir:value "mg" ] ;
         fhir:Quantity.system [ fhir:value "http://unitsofmeasure.org" ] ;
         fhir:Quantity.code [ fhir:value "mg" ]
       ]
     ]
  ] .

<http://hl7.org/fhir/Patient/PatientExample> a fhir:Patient .

# - ontology header ------------------------------------------------------------

<http://hl7.org/fhir/MedicationStatement/example-medicationstatement-czcore.ttl> a owl:Ontology ;
  owl:imports fhir:fhir.ttl ;
  owl:versionIRI <http://build.fhir.org/MedicationStatement/example-medicationstatement-czcore.ttl> .