Skip to content

Commit

Permalink
Beispiel: Alle drei Monate am ersten Dienstag
Browse files Browse the repository at this point in the history
  • Loading branch information
Stefan Lang committed Feb 16, 2024
1 parent 443ffce commit 9646662
Show file tree
Hide file tree
Showing 2 changed files with 79 additions and 0 deletions.
Original file line number Diff line number Diff line change
@@ -0,0 +1,54 @@
{
"resourceType": "MedicationStatement",
"id": "ExampleISiKMedikationsInformation5",
"meta": {
"profile": [
"https://gematik.de/fhir/isik/v3/Medikation/StructureDefinition/ISiKMedikationsInformation"
]
},
"dosage": [
{
"doseAndRate": [
{
"doseQuantity": {
"system": "http://unitsofmeasure.org",
"value": 1,
"unit": "Tabl.",
"code": "1"
}
}
],
"timing": {
"repeat": {
"frequency": 1,
"period": 3,
"periodUnit": "mo",
"dayOfWeek": [
"tue"
]
}
},
"patientInstruction": "alle 3 Monate am 1. Dienstag"
}
],
"status": "active",
"medicationCodeableConcept": {
"coding": [
{
"code": "07260796",
"system": "http://fhir.de/CodeSystem/ifa/pzn",
"display": "Vitamin-B12-ratiopharm® N Ampullen zur Injektion"
}
]
},
"subject": {
"reference": "Patient/PatientinMusterfrau"
},
"context": {
"reference": "Encounter/Fachabteilungskontakt"
},
"effectivePeriod": {
"start": "2024-01-22"
},
"dateAsserted": "2024-02-16"
}
25 changes: 25 additions & 0 deletions Resources/input/fsh/ISiKMedikationsInformation.fsh
Original file line number Diff line number Diff line change
Expand Up @@ -340,3 +340,28 @@ Usage: #example
* unit = "Tabl."
* system = $cs-ucum
* code = #1

// Einnahme am ersten Dienstag jedes dritten Monats
Instance: ExampleISiKMedikationsInformation5
InstanceOf: ISiKMedikationsInformation
Usage: #example
* status = #active
* medicationCodeableConcept = $cs-pzn#07260796 "Vitamin-B12-ratiopharm® N Ampullen zur Injektion"
* subject.reference = "Patient/PatientinMusterfrau"
* context.reference = "Encounter/Fachabteilungskontakt"
* effectivePeriod
* start = 2024-01-22
* dateAsserted = 2024-02-16
* dosage
* timing
* repeat
* frequency = 1
* period = 3
* periodUnit = #mo
* dayOfWeek = #tue
* patientInstruction = "alle 3 Monate am 1. Dienstag"
* doseAndRate.doseQuantity
* value = 1
* unit = "Tabl."
* system = $cs-ucum
* code = #1

0 comments on commit 9646662

Please sign in to comment.