Beispiele

ExampleISiKMedikationsVerabreichung

Einfache Einnahme:

MedicationAdministration
<MedicationAdministration xmlns="http://hl7.org/fhir">
    <id value="ExampleISiKMedikationsVerabreichung" />
    <meta>
        <profile value="https://gematik.de/fhir/isik/StructureDefinition/ISiKMedikationsVerabreichung" />
    </meta>
    <status value="completed" />
    <medicationReference>
        <reference value="Medication/ExampleISiKMedikament1" />
    </medicationReference>
    <subject>
        <reference value="Patient/PatientinMusterfrau" />
    </subject>
    <context>
        <reference value="Encounter/Fachabteilungskontakt" />
    </context>
    <effectiveDateTime value="2021-07-01" />
    <dosage>
        <dose>
            <value value="1" />
            <unit value="Tablette" />
            <system value="http://unitsofmeasure.org" />
            <code value="1" />
        </dose>
    </dosage>
</MedicationAdministration>
{
    "resourceType": "MedicationAdministration",
    "id": "ExampleISiKMedikationsVerabreichung",
    "meta": {
        "profile":  [
            "https://gematik.de/fhir/isik/StructureDefinition/ISiKMedikationsVerabreichung"
        ]
    },
    "dosage": {
        "dose": {
            "system": "http://unitsofmeasure.org",
            "value": 1,
            "unit": "Tablette",
            "code": "1"
        }
    },
    "status": "completed",
    "medicationReference": {
        "reference": "Medication/ExampleISiKMedikament1"
    },
    "subject": {
        "reference": "Patient/PatientinMusterfrau"
    },
    "context": {
        "reference": "Encounter/Fachabteilungskontakt"
    },
    "effectiveDateTime": "2021-07-01"
}

ExampleISiKMedikationsVerabreichung2

Zytostatika-Infusion:

MedicationAdministration
<MedicationAdministration xmlns="http://hl7.org/fhir">
    <id value="ExampleISiKMedikationsVerabreichung2" />
    <meta>
        <profile value="https://gematik.de/fhir/isik/StructureDefinition/ISiKMedikationsVerabreichung" />
    </meta>
    <status value="completed" />
    <medicationReference>
        <reference value="Medication/ExampleISiKMedikament9" />
    </medicationReference>
    <subject>
        <reference value="Patient/PatientinMusterfrau" />
    </subject>
    <context>
        <reference value="Encounter/Fachabteilungskontakt" />
    </context>
    <effectiveDateTime value="2024-01-22" />
    <dosage>
        <dose>
            <value value="1" />
            <unit value="Beutel" />
            <system value="http://unitsofmeasure.org" />
            <code value="1" />
        </dose>
    </dosage>
</MedicationAdministration>
{
    "resourceType": "MedicationAdministration",
    "id": "ExampleISiKMedikationsVerabreichung2",
    "meta": {
        "profile":  [
            "https://gematik.de/fhir/isik/StructureDefinition/ISiKMedikationsVerabreichung"
        ]
    },
    "dosage": {
        "dose": {
            "system": "http://unitsofmeasure.org",
            "value": 1,
            "unit": "Beutel",
            "code": "1"
        }
    },
    "status": "completed",
    "medicationReference": {
        "reference": "Medication/ExampleISiKMedikament9"
    },
    "subject": {
        "reference": "Patient/PatientinMusterfrau"
    },
    "context": {
        "reference": "Encounter/Fachabteilungskontakt"
    },
    "effectiveDateTime": "2024-01-22"
}

ExampleISiKMedikationsVerabreichung3

Verabreichung einer Infusion mit Angabe der Dosierungs-Rate in zwei Varianten (Quantity und Ratio):

MedicationAdministration
<MedicationAdministration xmlns="http://hl7.org/fhir">
    <id value="ExampleISiKMedikationsVerabreichung3" />
    <meta>
        <profile value="https://gematik.de/fhir/isik/StructureDefinition/ISiKMedikationsVerabreichung" />
    </meta>
    <status value="completed" />
    <medicationReference>
        <reference value="Medication/ExampleISiKMedikament9" />
    </medicationReference>
    <subject>
        <reference value="Patient/PatientinMusterfrau" />
    </subject>
    <context>
        <reference value="Encounter/Fachabteilungskontakt" />
        <identifier>
            <value value="0123456789" />
        </identifier>
    </context>
    <effectiveDateTime value="2021-07-01" />
    <note>
        <text value="Testnotiz" />
    </note>
    <dosage>
        <text value="1L Infusion mit Rate 50ml/h" />
        <site>
            <coding>
                <system value="http://snomed.info/sct" />
                <code value="6073002" />
                <display value="Structure of ligament of left superior vena cava" />
            </coding>
        </site>
        <route>
            <coding>
                <system value="http://standardterms.edqm.eu" />
                <code value="20045000" />
                <display value="Intravenous use" />
            </coding>
        </route>
        <dose>
            <value value="1000" />
            <unit value="mL" />
            <system value="http://unitsofmeasure.org" />
            <code value="mL" />
        </dose>
        <rateQuantity>
            <value value="50" />
            <unit value="mL/h" />
            <system value="http://unitsofmeasure.org" />
            <code value="mL/h" />
        </rateQuantity>
    </dosage>
</MedicationAdministration>
{
    "resourceType": "MedicationAdministration",
    "id": "ExampleISiKMedikationsVerabreichung3",
    "meta": {
        "profile":  [
            "https://gematik.de/fhir/isik/StructureDefinition/ISiKMedikationsVerabreichung"
        ]
    },
    "dosage": {
        "dose": {
            "system": "http://unitsofmeasure.org",
            "value": 1000,
            "unit": "mL",
            "code": "mL"
        },
        "rateQuantity": {
            "system": "http://unitsofmeasure.org",
            "value": 50,
            "unit": "mL/h",
            "code": "mL/h"
        },
        "text": "1L Infusion mit Rate 50ml/h",
        "site": {
            "coding":  [
                {
                    "code": "6073002",
                    "system": "http://snomed.info/sct",
                    "display": "Structure of ligament of left superior vena cava"
                }
            ]
        },
        "route": {
            "coding":  [
                {
                    "code": "20045000",
                    "system": "http://standardterms.edqm.eu",
                    "display": "Intravenous use"
                }
            ]
        }
    },
    "status": "completed",
    "medicationReference": {
        "reference": "Medication/ExampleISiKMedikament9"
    },
    "subject": {
        "reference": "Patient/PatientinMusterfrau"
    },
    "context": {
        "reference": "Encounter/Fachabteilungskontakt",
        "identifier": {
            "value": "0123456789"
        }
    },
    "effectiveDateTime": "2021-07-01",
    "note":  [
        {
            "text": "Testnotiz"
        }
    ]
}

ExampleISiKMedikationsVerabreichung4

MedicationAdministration
<MedicationAdministration xmlns="http://hl7.org/fhir">
    <id value="ExampleISiKMedikationsVerabreichung4" />
    <meta>
        <profile value="https://gematik.de/fhir/isik/StructureDefinition/ISiKMedikationsVerabreichung" />
    </meta>
    <status value="completed" />
    <medicationReference>
        <reference value="Medication/ExampleISiKMedikament2" />
    </medicationReference>
    <subject>
        <reference value="Patient/PatientinMusterfrau" />
    </subject>
    <context>
        <reference value="Encounter/Fachabteilungskontakt" />
        <identifier>
            <value value="0123456789" />
        </identifier>
    </context>
    <effectiveDateTime value="2021-07-01" />
    <note>
        <text value="Testnotiz" />
    </note>
    <dosage>
        <text value="1L Infusion mit Rate 50ml/h" />
        <site>
            <coding>
                <system value="http://snomed.info/sct" />
                <code value="6073002" />
                <display value="Structure of ligament of left superior vena cava" />
            </coding>
        </site>
        <route>
            <coding>
                <system value="http://standardterms.edqm.eu" />
                <code value="20045000" />
                <display value="Intravenous use" />
            </coding>
        </route>
        <dose>
            <value value="1000" />
            <unit value="mL" />
            <system value="http://unitsofmeasure.org" />
            <code value="mL" />
        </dose>
        <rateRatio>
            <numerator>
                <value value="50" />
                <unit value="mL" />
                <system value="http://unitsofmeasure.org" />
                <code value="mL" />
            </numerator>
            <denominator>
                <value value="1" />
                <unit value="h" />
                <system value="http://unitsofmeasure.org" />
                <code value="h" />
            </denominator>
        </rateRatio>
    </dosage>
</MedicationAdministration>
{
    "resourceType": "MedicationAdministration",
    "id": "ExampleISiKMedikationsVerabreichung4",
    "meta": {
        "profile":  [
            "https://gematik.de/fhir/isik/StructureDefinition/ISiKMedikationsVerabreichung"
        ]
    },
    "dosage": {
        "dose": {
            "system": "http://unitsofmeasure.org",
            "value": 1000,
            "unit": "mL",
            "code": "mL"
        },
        "rateRatio": {
            "numerator": {
                "system": "http://unitsofmeasure.org",
                "value": 50,
                "unit": "mL",
                "code": "mL"
            },
            "denominator": {
                "system": "http://unitsofmeasure.org",
                "value": 1,
                "unit": "h",
                "code": "h"
            }
        },
        "text": "1L Infusion mit Rate 50ml/h",
        "site": {
            "coding":  [
                {
                    "code": "6073002",
                    "system": "http://snomed.info/sct",
                    "display": "Structure of ligament of left superior vena cava"
                }
            ]
        },
        "route": {
            "coding":  [
                {
                    "code": "20045000",
                    "system": "http://standardterms.edqm.eu",
                    "display": "Intravenous use"
                }
            ]
        }
    },
    "status": "completed",
    "medicationReference": {
        "reference": "Medication/ExampleISiKMedikament2"
    },
    "subject": {
        "reference": "Patient/PatientinMusterfrau"
    },
    "context": {
        "reference": "Encounter/Fachabteilungskontakt",
        "identifier": {
            "value": "0123456789"
        }
    },
    "effectiveDateTime": "2021-07-01",
    "note":  [
        {
            "text": "Testnotiz"
        }
    ]
}