Bundle MedikationTransactionResponse (Bundle)


Profil

NameCanonical
ISiKMedikationTransactionResponsehttps://gematik.de/fhir/isik/v2/Medikation/StructureDefinition/ISiKMedikationTransactionResponse

identifierΣ0..1Identifier
typeS Σ1..1codeBindingFixed Value
timestampΣ0..1instant
totalΣ I0..1unsignedInt
relationΣ1..1string
urlΣ1..1uri
fullUrlS Σ0..1uri
resourceS Σ0..1Resource
statusS Σ1..1string
locationS Σ0..1uri
etagΣ0..1string
lastModifiedΣ0..1instant
outcomeS Σ0..1Resource
signatureΣ0..1Signature

Anmerkungen zu Must-Support-Feldern

FeldnameKurzbeschreibungHinweise
Bundle.typeType des Bundles

fix: transaction-response

Bundle.entryDer einzelne Eintrag zur Interaktion
Bundle.entry.fullUrlvollständige URL der Ressource
Bundle.entry.resourceDie Ressourcen-Instanz der Interaktion
Bundle.entry.responseHTTP-Response des Servers innerhalb der Transaktions-Antwort
Bundle.entry.response.statusHTTP-Statuscode
Bundle.entry.response.locationLocation der Ressource (URL) auf dem Server

Gemäß FHIR-Spezifikation MUSS hier der Pfad zur exakten Version (History) enthalten sein, wenn der Server History unterstützt.

Bundle.entry.response.outcomeOperationOutcome-Ressource zur Rückgabe von Fehler-Details sowie Informationen.

Beispiele

Valides Beispiel für das Profil MedikationTransactionResponse:

{
    "resourceType": "Bundle",
    "id": "ExampleISiKMedikationTransactionResponse",
    "meta": {
        "profile":  [
            "https://gematik.de/fhir/isik/v2/Medikation/StructureDefinition/ISiKMedikationTransactionResponse"
        ]
    },
    "type": "transaction-response",
    "entry":  [
        {
            "fullUrl": "http://my.target.fhir.server.local/MedicationStatement/ExampleISiKMedikationsInformation1",
            "resource": {
                "resourceType": "MedicationStatement",
                "id": "ExampleISiKMedikationsInformation1",
                "meta": {
                    "profile":  [
                        "https://gematik.de/fhir/isik/v2/Medikation/StructureDefinition/ISiKMedikationsInformation"
                    ]
                },
                "dosage":  [
                    {
                        "doseAndRate":  [
                            {
                                "doseQuantity": {
                                    "system": "http://unitsofmeasure.org",
                                    "value": 1,
                                    "unit": "Brausetablette",
                                    "code": "1"
                                }
                            }
                        ],
                        "timing": {
                            "repeat": {
                                "when":  [
                                    "MORN",
                                    "NOON",
                                    "EVE"
                                ]
                            }
                        }
                    }
                ],
                "status": "active",
                "medicationReference": {
                    "reference": "Medication/ExampleISiKMedikament1"
                },
                "subject": {
                    "reference": "Patient/PatientinMusterfrau"
                },
                "context": {
                    "reference": "Encounter/Versorgungsstellenkontakt"
                },
                "effectivePeriod": {
                    "start": "2021-07-01"
                },
                "dateAsserted": "2021-07-01",
                "reasonReference":  [
                    {
                        "reference": "Condition/BehandlungsDiagnoseFreitext"
                    }
                ]
            },
            "response": {
                "status": "201",
                "location": "http://my.fhir.server.local/MedicationStatement/ExampleISiKMedikationsInformation1"
            }
        },
        {
            "fullUrl": "http://my.target.fhir.server.local/Medication/ExampleISiKMedikament1",
            "resource": {
                "resourceType": "Medication",
                "id": "ExampleISiKMedikament1",
                "meta": {
                    "profile":  [
                        "https://gematik.de/fhir/isik/v2/Medikation/StructureDefinition/ISiKMedikament"
                    ]
                },
                "code": {
                    "coding":  [
                        {
                            "system": "http://fhir.de/CodeSystem/bfarm/atc",
                            "code": "V03AB23",
                            "display": "Acetylcystein"
                        }
                    ]
                },
                "status": "active"
            },
            "response": {
                "status": "201",
                "location": "http://my.fhir.server.local/Medication/ExampleISiKMedikament1"
            }
        }
    ]
}

Interaktionen

TransactionResponse-Bundles werden nicht persistiert, sondern ausschließlich im Kontext von FHIR-Transaktionen verwendet, vgl. FHIR RESTful API - Batch/Transaction.