Skip to content

Commit

Permalink
Weitere Beispiele ergänzt
Browse files Browse the repository at this point in the history
  • Loading branch information
Stefan Lang committed Feb 20, 2024
1 parent 9646662 commit 0c88b30
Show file tree
Hide file tree
Showing 11 changed files with 502 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -59,6 +59,20 @@ Einfaches Zytostatikum-Therapieschema (Chemotherapie):
Einnahme zu allen Mahlzeiten incl. Zwischenmahlzeiten:
{{json:ExampleISiKMedikationsInformation4}}
Komplexes Beispiel: Medikation zur Behandlung von Morbus Parkinson; Medikationsliste und zugehörige Einzelmedikationen.
{{json:ExampleISiKMedikationsListeParkinson}}
{{json:ExampleISiKMedikationsInformationParkinson1}}
{{json:ExampleISiKMedikationsInformationParkinson2}}
{{json:ExampleISiKMedikationsInformationParkinson3}}
{{json:ExampleISiKMedikationsInformationParkinson4}}
{{json:ExampleISiKMedikationsInformationParkinson5}}
## Interaktionen
Für die Ressource MedicationStatement MÜSSEN die REST-Interaktionen "READ", "CREATE" und "UPDATE" implementiert werden.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,10 @@ Valides Beispiel für das Profil MedikationsListe:

{{json:ExampleISiKMedikationsListe}}

Beispiel für eine Medikationsliste zur Behandlung von Morbus Parkinson (vgl. auch die vollständige Darstellung unter {{pagelink:ImplementationGuide/markdown/Datenobjekte/Profile_MedikationsInformation.md}}):

{{json:ExampleISiKMedikationsListeParkinson}}

### Interaktionen

Für die Ressource List MÜSSEN die REST-Interaktionen "READ", "CREATE" und "UPDATE" implementiert werden.
Expand Down
Original file line number Diff line number Diff line change
@@ -0,0 +1,58 @@
{
"resourceType": "List",
"id": "ExampleISiKMedikationsListeParkinson",
"meta": {
"profile": [
"https://gematik.de/fhir/isik/v3/Medikation/StructureDefinition/ISiKMedikationsListe"
]
},
"code": {
"coding": [
{
"system": "http://terminology.hl7.org/CodeSystem/list-example-use-codes",
"code": "medications"
}
]
},
"status": "current",
"mode": "working",
"subject": {
"reference": "Patient/PatientinMusterfrau"
},
"encounter": {
"reference": "Encounter/Fachabteilungskontakt"
},
"date": "2024-02-20",
"entry": [
{
"date": "2024-02-20",
"item": {
"reference": "MedicationStatement/ExampleISiKMedikationsInformationParkinson1"
}
},
{
"date": "2024-02-20",
"item": {
"reference": "MedicationStatement/ExampleISiKMedikationsInformationParkinson2"
}
},
{
"date": "2024-02-20",
"item": {
"reference": "MedicationStatement/ExampleISiKMedikationsInformationParkinson3"
}
},
{
"date": "2024-02-20",
"item": {
"reference": "MedicationStatement/ExampleISiKMedikationsInformationParkinson4"
}
},
{
"date": "2024-02-20",
"item": {
"reference": "MedicationStatement/ExampleISiKMedikationsInformationParkinson5"
}
}
]
}
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@
"reference": "Encounter/Fachabteilungskontakt"
},
"effectivePeriod": {
"start": "2024-01-22"
"start": "2024-02-16"
},
"dateAsserted": "2024-02-16"
}
Original file line number Diff line number Diff line change
@@ -0,0 +1,55 @@
{
"resourceType": "MedicationStatement",
"id": "ExampleISiKMedikationsInformationParkinson1",
"meta": {
"profile": [
"https://gematik.de/fhir/isik/v3/Medikation/StructureDefinition/ISiKMedikationsInformation"
]
},
"dosage": [
{
"doseAndRate": [
{
"doseQuantity": {
"system": "http://unitsofmeasure.org",
"value": 1,
"unit": "Tbl.",
"code": "1"
}
}
],
"timing": {
"repeat": {
"timeOfDay": [
"18:00:00"
]
}
}
}
],
"status": "active",
"medicationCodeableConcept": {
"coding": [
{
"code": "00003056",
"system": "http://fhir.de/CodeSystem/ifa/pzn",
"display": "Stalevo® 100 mg/25 mg/200 mg"
}
]
},
"subject": {
"reference": "Patient/PatientinMusterfrau"
},
"context": {
"reference": "Encounter/Fachabteilungskontakt"
},
"effectivePeriod": {
"start": "2024-02-20"
},
"dateAsserted": "2024-02-20",
"reasonReference": [
{
"reference": "Condition/DiagnoseParkinson"
}
]
}
Original file line number Diff line number Diff line change
@@ -0,0 +1,55 @@
{
"resourceType": "MedicationStatement",
"id": "ExampleISiKMedikationsInformationParkinson2",
"meta": {
"profile": [
"https://gematik.de/fhir/isik/v3/Medikation/StructureDefinition/ISiKMedikationsInformation"
]
},
"dosage": [
{
"doseAndRate": [
{
"doseQuantity": {
"system": "http://unitsofmeasure.org",
"value": 1,
"unit": "Tbl.",
"code": "1"
}
}
],
"timing": {
"repeat": {
"timeOfDay": [
"22:00:00"
]
}
}
}
],
"status": "active",
"medicationCodeableConcept": {
"coding": [
{
"code": "09339154",
"system": "http://fhir.de/CodeSystem/ifa/pzn",
"display": "Quetiapin HEXAL® 50 mg"
}
]
},
"subject": {
"reference": "Patient/PatientinMusterfrau"
},
"context": {
"reference": "Encounter/Fachabteilungskontakt"
},
"effectivePeriod": {
"start": "2024-02-20"
},
"dateAsserted": "2024-02-20",
"reasonReference": [
{
"reference": "Condition/DiagnoseParkinson"
}
]
}
Original file line number Diff line number Diff line change
@@ -0,0 +1,55 @@
{
"resourceType": "MedicationStatement",
"id": "ExampleISiKMedikationsInformationParkinson3",
"meta": {
"profile": [
"https://gematik.de/fhir/isik/v3/Medikation/StructureDefinition/ISiKMedikationsInformation"
]
},
"dosage": [
{
"doseAndRate": [
{
"doseQuantity": {
"system": "http://unitsofmeasure.org",
"value": 1,
"unit": "FTbl.",
"code": "1"
}
}
],
"timing": {
"repeat": {
"timeOfDay": [
"18:00:00"
]
}
}
}
],
"status": "active",
"medicationCodeableConcept": {
"coding": [
{
"code": "03395803",
"system": "http://fhir.de/CodeSystem/ifa/pzn",
"display": "Madopar® 125 mg"
}
]
},
"subject": {
"reference": "Patient/PatientinMusterfrau"
},
"context": {
"reference": "Encounter/Fachabteilungskontakt"
},
"effectivePeriod": {
"start": "2024-02-20"
},
"dateAsserted": "2024-02-20",
"reasonReference": [
{
"reference": "Condition/DiagnoseParkinson"
}
]
}
Original file line number Diff line number Diff line change
@@ -0,0 +1,55 @@
{
"resourceType": "MedicationStatement",
"id": "ExampleISiKMedikationsInformationParkinson4",
"meta": {
"profile": [
"https://gematik.de/fhir/isik/v3/Medikation/StructureDefinition/ISiKMedikationsInformation"
]
},
"dosage": [
{
"doseAndRate": [
{
"doseQuantity": {
"system": "http://unitsofmeasure.org",
"value": 1,
"unit": "Tbl.",
"code": "1"
}
}
],
"timing": {
"repeat": {
"timeOfDay": [
"22:00:00"
]
}
}
}
],
"status": "active",
"medicationCodeableConcept": {
"coding": [
{
"code": "11119856",
"system": "http://fhir.de/CodeSystem/ifa/pzn",
"display": "Entacapon HEC 200 mg"
}
]
},
"subject": {
"reference": "Patient/PatientinMusterfrau"
},
"context": {
"reference": "Encounter/Fachabteilungskontakt"
},
"effectivePeriod": {
"start": "2024-02-20"
},
"dateAsserted": "2024-02-20",
"reasonReference": [
{
"reference": "Condition/DiagnoseParkinson"
}
]
}
Original file line number Diff line number Diff line change
@@ -0,0 +1,55 @@
{
"resourceType": "MedicationStatement",
"id": "ExampleISiKMedikationsInformationParkinson5",
"meta": {
"profile": [
"https://gematik.de/fhir/isik/v3/Medikation/StructureDefinition/ISiKMedikationsInformation"
]
},
"dosage": [
{
"doseAndRate": [
{
"doseQuantity": {
"system": "http://unitsofmeasure.org",
"value": 1,
"unit": "Tbl.",
"code": "1"
}
}
],
"timing": {
"repeat": {
"timeOfDay": [
"22:00:00"
]
}
}
}
],
"status": "active",
"medicationCodeableConcept": {
"coding": [
{
"code": "04855419",
"system": "http://fhir.de/CodeSystem/ifa/pzn",
"display": "LevoCarb 200/50 ret - 1 A Pharma®"
}
]
},
"subject": {
"reference": "Patient/PatientinMusterfrau"
},
"context": {
"reference": "Encounter/Fachabteilungskontakt"
},
"effectivePeriod": {
"start": "2024-02-20"
},
"dateAsserted": "2024-02-20",
"reasonReference": [
{
"reference": "Condition/DiagnoseParkinson"
}
]
}
Loading

0 comments on commit 0c88b30

Please sign in to comment.