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

: Medikament ohne Stärke-Numerator - 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/Medication-Without-Strength-Numerator> a fhir:Medication ;
  fhir:nodeRole fhir:treeRoot ;
  fhir:Resource.id [ fhir:value "Medication-Without-Strength-Numerator"] ;
  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.text [ fhir:value "Infusion bestehend aus 85mg Doxorubicin aufgeloest zur Verabreichung in 250ml 5-%iger (50 mg/ml) Glucose-Infusionsloesung" ]
  ] ;
  fhir:Medication.status [ fhir:value "active"] ;
  fhir:Medication.form [
     fhir:CodeableConcept.text [ fhir:value "Solution for infusion" ]
  ] ;
  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/bfarm/atc" ] ;
         fhir:Coding.version [ fhir:value "2025" ] ;
         fhir:Coding.code [ fhir:value "L01DB01" ] ;
         fhir:Coding.display [ fhir:value "Doxorubicin" ]
       ]
     ] ;
     fhir:Medication.ingredient.isActive [ fhir:value "true"^^xsd:boolean ] ;
     fhir:Medication.ingredient.strength [
       fhir:Ratio.numerator [
         fhir:Quantity.value [
           fhir:Element.extension [
             fhir:index 0 ;
             fhir:Extension.url [ fhir:value "http://hl7.org/fhir/StructureDefinition/data-absent-reason" ] ;
             fhir:Extension.valueCode [ fhir:value "unknown" ]
           ]
         ] ;
         fhir:Quantity.system [
           fhir:Element.extension [
             fhir:index 0 ;
             fhir:Extension.url [ fhir:value "http://hl7.org/fhir/StructureDefinition/data-absent-reason" ] ;
             fhir:Extension.valueCode [ fhir:value "unknown" ]
           ]
         ] ;
         fhir:Quantity.code [
           fhir:Element.extension [
             fhir:index 0 ;
             fhir:Extension.url [ fhir:value "http://hl7.org/fhir/StructureDefinition/data-absent-reason" ] ;
             fhir:Extension.valueCode [ fhir:value "unknown" ]
           ]
         ]
       ] ;
       fhir:Ratio.denominator [
         fhir:Quantity.value [ fhir:value "1"^^xsd:decimal ]
       ]
     ]
  ] .

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

<http://hl7.org/fhir/Medication/Medication-Without-Strength-Numerator.ttl> a owl:Ontology ;
  owl:imports fhir:fhir.ttl ;
  owl:versionIRI <http://build.fhir.org/Medication/Medication-Without-Strength-Numerator.ttl> .