ISiK Medikation Implementierungsleitfaden
Version 6.0.0-rc - ballot

: ParacetamolInfusion - JSON Representation

Raw json | Download

{
  "resourceType" : "Medication",
  "id" : "ParacetamolInfusion",
  "meta" : {
    "profile" : [
      🔗 "https://gematik.de/fhir/isik/StructureDefinition/ISiKMedikament"
    ]
  },
  "text" : {
    "status" : "additional",
    "div" : "<div xmlns=\"http://www.w3.org/1999/xhtml\"><div><p><b>Motivation:</b> Dieses Beispiel zeigt, wie Rezepturen als ISiK-Medikation in FHIR R4 abgebildet werden können. Es demonstriert die Kombination eines Wirkstoffs mit einer Trägerlösung.</p><p><b>Medikament:</b> Paracetamol 10 mg/ml in Glukose 5 %</p><p><b>Form:</b> Infusionslösung</p><p><b>Wirkstoffe:</b></p><ul><li><b>Paracetamol:</b> 10 mg/ml (aktiv)</li><li><b>Glukose 5 %:</b> Trägerlösung (inaktiv)</li></ul><p><b>Gesamtmenge:</b> 100 ml (entspricht 1000 mg Paracetamol)</p><p><b>Hinweis:</b> Rezepturen bestehen aus mehreren Bestandteilen. Dieses Beispiel zeigt, wie man sie mit <code>Medication.ingredient</code> korrekt modelliert.</p></div></div>"
  },
  "code" : {
    "text" : "Paracetamol 10 mg/ml in Glukose 5 %"
  },
  "status" : "active",
  "form" : {
    "coding" : [
      {
        "system" : "http://standardterms.edqm.eu",
        "code" : "11210000",
        "display" : "Solution for infusion"
      }
    ],
    "text" : "Infusionslösung"
  },
  "amount" : {
    "numerator" : {
      "value" : 100,
      "unit" : "mL",
      "system" : "http://unitsofmeasure.org",
      "code" : "mL"
    },
    "denominator" : {
      "value" : 1,
      "unit" : "Beutel",
      "system" : "http://unitsofmeasure.org",
      "code" : "1"
    }
  },
  "ingredient" : [
    {
      "extension" : [
        {
          "url" : "http://fhir.de/StructureDefinition/WirkstofftypEX",
          "valueCoding" : {
            "system" : "http://fhir.de/CodeSystem/WirkstofftypCS",
            "code" : "IN"
          }
        }
      ],
      "itemCodeableConcept" : {
        "coding" : [
          {
            "system" : "http://fhir.de/CodeSystem/bfarm/atc",
            "version" : "2024",
            "code" : "N02BE01",
            "display" : "Paracetamol"
          }
        ],
        "text" : "Paracetamol"
      },
      "isActive" : true,
      "strength" : {
        "numerator" : {
          "value" : 10,
          "unit" : "mg",
          "system" : "http://unitsofmeasure.org",
          "code" : "mg"
        },
        "denominator" : {
          "value" : 1,
          "unit" : "mL",
          "system" : "http://unitsofmeasure.org",
          "code" : "mL"
        }
      }
    },
    {
      "itemCodeableConcept" : {
        "coding" : [
          {
            "system" : "http://fhir.de/CodeSystem/ifa/pzn",
            "code" : "03710676",
            "display" : "Ecoflac® plus Glucose 5 % (100 ml)"
          }
        ]
      },
      "isActive" : false
    }
  ]
}