Skip to content

Dosierung: Präparatfokussiert stetigeVerabreichung

neumdan edited this page Oct 16, 2024 · 1 revision

Infusion eines Flüssigarzneimittels intravenös

Medikament

Die Medikationsressource beschreibt die Glukose 5%-Infusion. Diese Lösung enthält Anhydrous Glucose (wasserfreie Glukose) in einer Konzentration von 50 Gramm pro Liter. Die Infusion ist in flüssiger Form und wird gemäß den SNOMED CT-Codes als Infusion klassifiziert.

strength.denominator gibt die Einheit der Medikation an (1 Tablette, 500 ml) strength.numerator gibt den Anteil des Ingredients in der Medikation an (=Dosiseinheit)

{
    "resourceType": "Medication",
    "id": "medication-glucose-10-infusion",
    "code": {
        "coding":  [
            {
                "code": "03816558",
                "system": "http://fhir.de/CodeSystem/ifa/pzn",
                "display": "Glucose 10 % B. Braun Ecoflac Plus Infusionslösung, 500 ml"
            },
            {
                "system": "http://fhir.de/CodeSystem/bfarm/atc",
                "code": "B05BA11",
                "display": "Glucose"
            }
        ]
    },
    "form": {
    "coding": [
        {
            "code": "11210000"
            "system": "http://standardterms.edqm.eu",
            "display": "Solution for infusion"
        }
    ]
    },
     "ingredient": [
    {
        "isActive": true,
        "itemCodeableConcept": {
            "coding":  [
                {
                    "code": "12829",
                    "system": "http://fhir.de/CodeSystem/ask",
                    "display": "Glucose"
                },
                {
                    "code": "768547002",
                    "system": "http://snomed.info/sct",
                    "display": "Anhydrous Glucose"
                }
            ]
        },
        "strength": {
            "numerator": {
                "value": 50,
                "unit": "gram",
                "system": "http://unitsofmeasure.org",
                "code": "g"
            },
            "denominator": {
                "value": 500,
                "unit": "milliliter",
                "system": "http://unitsofmeasure.org",
                "code": "mL"
            }
        }
    },
    {
        "itemCodeableConcept": {
            "coding": [
            {
                "system": "http://fhir.de/CodeSystem/ask",
                "code": "00343",
                "display": "Wasser für Injektionswecke"
            }
            ]
        },
    }
  ]
}

%TODO: folgendes noch am obigen anpassen und editieren.

Verordnung

Die Medikationsanfrage bezieht sich auf eine intravenöse Infusion von Glukose 5%, die als kontinuierliche Infusion verabreicht werden soll. Die Verabreichung erfolgt über 100 ml pro Stunde für 10 Stunden täglich. Es wird ein kontinuierliches Infusionsverfahren angewendet, wie es in der Methodik beschrieben ist. Die Infusion besteht aus einer Mischung mit 50 Gramm wasserfreiem Glukose pro 1 Liter Infusionslösung.

{
  "resourceType": "MedicationRequest",
  "id": "57fc1230-ec3a-432a-8898-8a0a719c3487",
  "meta": {
    "profile": [
      "https://fhir.hl7.org.uk/STU3/StructureDefinition/CareConnect-MedicationRequest-1"
    ]
  },
  "contained": [
    {
      "resourceType": "Medication",
      "id": "medication-glucose-10-infusion",
      "code": {
        "text": "Glucose 5% infusion"
      },
      "form": {
        "coding": [
          {
            "system": "http://snomed.info/sct",
            "code": "14964511000001102",
            "display": "Infusion"
          }
        ]
      },
      "ingredient": [
        {
          "itemCodeableConcept": {
            "coding": [
              {
                "system": "http://snomed.info/sct",
                "code": "768547002",
                "display": "Anhydrous Glucose"
              }
            ]
          },
          "amount": {
            "numerator": {
              "value": 50,
              "unit": "gram",
              "system": "http://unitsofmeasure.org",
              "code": "g"
            },
            "denominator": {
              "value": 1,
              "unit": "liter",
              "system": "http://unitsofmeasure.org",
              "code": "L"
            }
          }
        }
      ]
    }
  ],
  "intent": "order",
  "medicationReference": {
    "reference": "#med1"
  },
  "subject": {
    "identifier": {
      "system": "https://fhir.nhs.uk/Id/nhs-number",
      "value": "9999999999"
    }
  },
  "dosageInstruction": [
    {
      "timing": {
        "repeat": {
          "duration": 8,
          "durationUnit": "h"
        }
      },
      "method": {
        "coding": [
          {
            "system": "http://snomed.info/sct",
            "code": "261754007",
            "display": "Continuous infusion"
          }
        ]
      },
      "rateRatio": {
        "numerator": {
          "value": 100,
          "unit": "millilitre",
          "system": "http://unitsofmeasure.org",
          "code": "mL"
        },
        "denominator": {
          "value": 1,
          "unit": "hour",
          "system": "http://unitsofmeasure.org",
          "code": "h"
        }
      }
    }
  ]
}