Medication
1.1.1 - STU Belgium flag

Medication, published by eHealth Platform. This guide is not an authorized publication; it is the continuous build for version 1.1.1 built by the FHIR (HL7® FHIR® Standard) CI Build. This version is based on the current content of https://github.com/hl7-be/medication/ and changes regularly. See the Directory of published versions

: Example Dispense from a hospital pharmacy

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 xsd: <http://www.w3.org/2001/XMLSchema#> .

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

<http://hl7.org/fhir/MedicationDispense/example-dispense-hospital> a fhir:MedicationDispense ;
  fhir:nodeRole fhir:treeRoot ;
  fhir:Resource.id [ fhir:value "example-dispense-hospital"] ;
  fhir:Resource.meta [
     fhir:Meta.versionId [ fhir:value "1" ] ;
     fhir:Meta.profile [
       fhir:value "https://www.ehealth.fgov.be/standards/fhir/medication/StructureDefinition/BeMedicationDispense" ;
       fhir:index -1 ;
       fhir:link <https://www.ehealth.fgov.be/standards/fhir/medication/StructureDefinition/BeMedicationDispense>
     ]
  ] ;
  fhir:Resource.language [ fhir:value "en"] ;
  fhir:DomainResource.text [
     fhir:Narrative.status [ fhir:value "generated" ]
  ] ;
  fhir:MedicationDispense.identifier [
     fhir:index -1 ;
     fhir:Identifier.type [
       fhir:CodeableConcept.coding [
         fhir:index -1 ;
         fhir:Coding.system [ fhir:value "https://www.nexuzhealth.be/fhir/prescription/ambulatory" ] ;
         fhir:Coding.version [ fhir:value "1" ] ;
         fhir:Coding.code [ fhir:value "dguid" ]
       ]
     ] ;
     fhir:Identifier.system [ fhir:value "https://www.gfd-dpp.be/fhir/reference/dguid" ] ;
     fhir:Identifier.value [ fhir:value "1000321345" ]
  ] ;
  fhir:MedicationDispense.status [ fhir:value "completed"] ;
  fhir:MedicationDispense.medicationCodeableConcept [
     fhir:CodeableConcept.coding [
       fhir:index -1 ;
       fhir:Coding.system [ fhir:value "https://www.ehealth.fgov.be/standards/fhir/medication/NamingSystem/cnk-codes" ] ;
       fhir:Coding.code [ fhir:value "2055218" ] ;
       fhir:Coding.display [ ]
     ]
  ] ;
  fhir:MedicationDispense.subject [
     fhir:Reference.identifier [
       fhir:Identifier.system [ fhir:value "https://www.ehealth.fgov.be/standards/fhir/NamingSystem/ssin" ] ;
       fhir:Identifier.value [ fhir:value "64110219106" ]
     ]
  ] ;
  fhir:MedicationDispense.performer [
     fhir:index -1 ;
     fhir:MedicationDispense.performer.actor [
       fhir:Reference.identifier [
         fhir:Identifier.system [ fhir:value "https://www.ehealth.fgov.be/standards/fhir/NamingSystem/nihdi-organization" ] ;
         fhir:Identifier.value [ fhir:value "123123123" ]
       ]
     ]
  ] ;
  fhir:MedicationDispense.authorizingPrescription [
     fhir:index -1 ;
     fhir:Reference.identifier [
       fhir:Identifier.system [ fhir:value "https://www.ehealth.fgov.be/standards/fhir/NamingSystem/prescription-id" ] ;
       fhir:Identifier.value [ fhir:value "BEP1TSRY1XGE" ]
     ] ;
     fhir:Reference.display [ fhir:value "Prescription" ]
  ] ;
  fhir:MedicationDispense.quantity [
     fhir:Quantity.value [ fhir:value "1"^^xsd:decimal ] ;
     fhir:Quantity.unit [ fhir:value "package" ] ;
     fhir:Quantity.system [ fhir:value "http://unitsofmeasure.org" ] ;
     fhir:Quantity.code [ fhir:value "1" ]
  ] ;
  fhir:MedicationDispense.whenHandedOver [ fhir:value "2020-09-21T13:00:00+02:00"^^xsd:dateTime] ;
  fhir:MedicationDispense.dosageInstruction [
     fhir:index -1 ;
     fhir:Dosage.text [ fhir:value "3 x a day" ] ;
     fhir:Dosage.timing [
       fhir:Timing.repeat [
         fhir:Timing.repeat.frequency [ fhir:value "3"^^xsd:positiveInteger ] ;
         fhir:Timing.repeat.period [ fhir:value "1"^^xsd:decimal ] ;
         fhir:Timing.repeat.periodUnit [ fhir:value "d" ]
       ]
     ]
  ] .

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

<http://hl7.org/fhir/MedicationDispense/example-dispense-hospital.ttl> a owl:Ontology ;
  owl:imports fhir:fhir.ttl ;
  owl:versionIRI <http://build.fhir.org/MedicationDispense/example-dispense-hospital.ttl> .