Implementation Guide
TIFlow - Verordnungen für Arzneimittel
Version 2.0.0-ballot.2 - ballot

: Beispiel-Medikament mit Einheiten - TTL Representation

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/Medication/ExampleUnitMedication> a fhir:Medication ;
  fhir:nodeRole fhir:treeRoot ;
  fhir:Resource.id [ fhir:value "ExampleUnitMedication"] ;
  fhir:Resource.meta [
     fhir:Meta.profile [
       fhir:value "https://gematik.de/fhir/erp/StructureDefinition/GEM_ERP_PR_Medication|2.0" ;
       fhir:index 0 ;
       fhir:link <https://gematik.de/fhir/erp/StructureDefinition/GEM_ERP_PR_Medication|2.0>
     ]
  ] ;
  fhir:Medication.code [
     fhir:CodeableConcept.coding [
       fhir:index 0 ;
       fhir:Coding.system [ fhir:value "http://fhir.de/CodeSystem/ifa/pzn" ] ;
       fhir:Coding.code [ fhir:value "08585997" ]
     ] ;
     fhir:CodeableConcept.text [ fhir:value "Prospan® Hustensaft 100ml N1" ]
  ] ;
  fhir:Medication.status [ fhir:value "active"] ;
  fhir:Medication.amount [
     fhir:Ratio.numerator [
       fhir:Quantity.value [ fhir:value "1"^^xsd:decimal ] ;
       fhir:Quantity.system [ fhir:value "http://bfarm.de/DimensionsloseEinheiten" ] ;
       fhir:Quantity.code [ fhir:value "Packungen" ]
     ] ;
     fhir:Ratio.denominator [
       fhir:Quantity.value [ fhir:value "1"^^xsd:decimal ]
     ]
  ] ;
  fhir:Medication.ingredient [
     fhir:index 0 ;
     fhir:Medication.ingredient.itemCodeableConcept [
       fhir:CodeableConcept.coding [
         fhir:index 0 ;
         fhir:Coding.system [ fhir:value "http://fhir.de/CodeSystem/ask" ] ;
         fhir:Coding.code [ fhir:value "11704" ]
       ] ;
       fhir:CodeableConcept.text [ fhir:value "Efeublätter, TE mit Ethanol/Ethanol-Wasser" ]
     ] ;
     fhir:Medication.ingredient.strength [
       fhir:Ratio.numerator [
         fhir:Quantity.value [ fhir:value "7"^^xsd:decimal ] ;
         fhir:Quantity.system [ fhir:value "http://unitsofmeasure.org" ] ;
         fhir:Quantity.code [ fhir:value "ml" ]
       ] ;
       fhir:Ratio.denominator [
         fhir:Quantity.value [ fhir:value "1"^^xsd:decimal ]
       ]
     ]
  ] .

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

<http://hl7.org/fhir/Medication/ExampleUnitMedication.ttl> a owl:Ontology ;
  owl:imports fhir:fhir.ttl ;
  owl:versionIRI <http://build.fhir.org/Medication/ExampleUnitMedication.ttl> .