FHIR © HL7.org  |  FHIRsmith 4.0.1  |  Server Home  |  XIG Home  |  XIG Stats  | 

FHIR IG analytics

Packagede.gematik.isik
Resource TypeMedication
IdMedication-ParacetamolInfusion.json
FHIR VersionR4

Resources that use this resource

No resources found


Resources that this resource uses

No resources found


Narrative

Note: links and images are rebased to the (stated) source

Motivation: 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.

Medikament: Paracetamol 10 mg/ml in Glukose 5 %

Form: Infusionslösung

Wirkstoffe:

  • Paracetamol: 10 mg/ml (aktiv)
  • Glukose 5 %: Trägerlösung (inaktiv)

Gesamtmenge: 100 ml (entspricht 1000 mg Paracetamol)

Hinweis: Rezepturen bestehen aus mehreren Bestandteilen. Dieses Beispiel zeigt, wie man sie mit Medication.ingredient korrekt modelliert.


Source1

{
  "resourceType": "Medication",
  "id": "ParacetamolInfusion",
  "meta": {
    "profile": [
      "https://gematik.de/fhir/isik/StructureDefinition/ISiKMedikament"
    ]
  },
  "ingredient": [
    {
      "strength": {
        "numerator": {
          "system": "http://unitsofmeasure.org",
          "value": 10,
          "code": "mg",
          "unit": "mg"
        },
        "denominator": {
          "system": "http://unitsofmeasure.org",
          "value": 1,
          "code": "mL",
          "unit": "mL"
        }
      },
      "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",
            "code": "N02BE01",
            "display": "Paracetamol",
            "version": "2024"
          }
        ],
        "text": "Paracetamol"
      },
      "isActive": true
    },
    {
      "itemCodeableConcept": {
        "coding": [
          {
            "code": "03710676",
            "system": "http://fhir.de/CodeSystem/ifa/pzn",
            "display": "Ecoflac® plus Glucose 5 % (100 ml)"
          }
        ]
      },
      "isActive": false
    }
  ],
  "amount": {
    "denominator": {
      "system": "http://unitsofmeasure.org",
      "value": 1,
      "unit": "Beutel",
      "code": "1"
    },
    "numerator": {
      "value": 100,
      "code": "mL",
      "system": "http://unitsofmeasure.org",
      "unit": "mL"
    }
  },
  "text": {
    "status": "additional",
    "div": "<!-- snip (see above) -->"
  },
  "status": "active",
  "code": {
    "text": "Paracetamol 10 mg/ml in Glukose 5 %"
  },
  "form": {
    "coding": [
      {
        "system": "http://standardterms.edqm.eu",
        "code": "11210000",
        "display": "Solution for infusion"
      }
    ],
    "text": "Infusionslösung"
  }
}