@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 xsd: <http://www.w3.org/2001/XMLSchema#> .

# - resource -------------------------------------------------------------------

<https://gematik.de/fhir/isik/Medication/ExampleISiKMedikament4> a fhir:Medication ;
  fhir:nodeRole fhir:treeRoot ;
  fhir:id [ fhir:v "ExampleISiKMedikament4"] ; # 
  fhir:meta [
     fhir:profile ( [
       fhir:v "https://gematik.de/fhir/isik/StructureDefinition/ISiKMedikament"^^xsd:anyURI ;
       fhir:l <https://gematik.de/fhir/isik/StructureDefinition/ISiKMedikament>
     ] )
  ] ; # 
  fhir:text [
     fhir:status [ fhir:v "additional" ] ;
     fhir:div [ fhir:v "<div xmlns=\"http://www.w3.org/1999/xhtml\">Medikamentenrezeptur aus Fertigarzneimitteln</div>"^^rdf:XMLLiteral ]
  ] ; # 
  fhir:status [ fhir:v "active"] ; # 
  fhir:form [
     fhir:text [ fhir:v "Tabletten" ]
  ] ; # 
  fhir:ingredient ( [
     fhir:item [
       a fhir:CodeableConcept ;
       fhir:coding ( [
         fhir:system [
           fhir:v "http://fhir.de/CodeSystem/ifa/pzn"^^xsd:anyURI ;
           fhir:l <http://fhir.de/CodeSystem/ifa/pzn>
         ] ;
         fhir:code [ fhir:v "00266040" ] ;
         fhir:display [ fhir:v "IBU-ratiopharm® 400 mg akut Schmerztabletten 20 St." ]
       ] )
     ] ;
     fhir:isActive [ fhir:v true ] ;
     fhir:strength [
       fhir:numerator [
         fhir:value [ fhir:v "400"^^xsd:decimal ] ;
         fhir:unit [ fhir:v "mg" ] ;
         fhir:system [
           fhir:v "http://unitsofmeasure.org"^^xsd:anyURI ;
           fhir:l <http://unitsofmeasure.org>
         ] ;
         fhir:code [ fhir:v "mg" ]
       ] ;
       fhir:denominator [
         fhir:value [ fhir:v "1"^^xsd:decimal ] ;
         fhir:unit [ fhir:v "Tablette" ] ;
         fhir:system [
           fhir:v "http://unitsofmeasure.org"^^xsd:anyURI ;
           fhir:l <http://unitsofmeasure.org>
         ] ;
         fhir:code [ fhir:v "1" ]
       ]
     ]
  ] [
     fhir:item [
       a fhir:CodeableConcept ;
       fhir:coding ( [
         fhir:system [
           fhir:v "http://fhir.de/CodeSystem/ifa/pzn"^^xsd:anyURI ;
           fhir:l <http://fhir.de/CodeSystem/ifa/pzn>
         ] ;
         fhir:code [ fhir:v "01126111" ] ;
         fhir:display [ fhir:v "Paracetamol-ratiopharm® 500 mg 20 St." ]
       ] )
     ] ;
     fhir:isActive [ fhir:v true ] ;
     fhir:strength [
       fhir:numerator [
         fhir:value [ fhir:v "500"^^xsd:decimal ] ;
         fhir:unit [ fhir:v "mg" ] ;
         fhir:system [
           fhir:v "http://unitsofmeasure.org"^^xsd:anyURI ;
           fhir:l <http://unitsofmeasure.org>
         ] ;
         fhir:code [ fhir:v "mg" ]
       ] ;
       fhir:denominator [
         fhir:value [ fhir:v "1"^^xsd:decimal ] ;
         fhir:unit [ fhir:v "Tablette" ] ;
         fhir:system [
           fhir:v "http://unitsofmeasure.org"^^xsd:anyURI ;
           fhir:l <http://unitsofmeasure.org>
         ] ;
         fhir:code [ fhir:v "1" ]
       ]
     ]
  ] ) . # 

# -------------------------------------------------------------------------------------

