FHIR IG analytics| Package | de.gematik.isik |
| Resource Type | Medication |
| Id | Medication-ParacetamolInfusion.json |
| FHIR Version | R4 |
No resources found
No resources found
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:
Gesamtmenge: 100 ml (entspricht 1000 mg Paracetamol)
Hinweis: Rezepturen bestehen aus mehreren Bestandteilen. Dieses Beispiel zeigt, wie man sie mit Medication.ingredient korrekt modelliert.
{
"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"
}
}