-
Notifications
You must be signed in to change notification settings - Fork 7
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #54 from hl7au/47-MedicationRequest-irvine
47 medication request irvine
- Loading branch information
Showing
2 changed files
with
99 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,98 @@ | ||
{ | ||
"resourceType": "MedicationRequest", | ||
"id": "klacid", | ||
"meta": { | ||
"profile": [ | ||
"http://hl7.org.au/fhir/core/StructureDefinition/au-core-medicationrequest" | ||
] | ||
}, | ||
"contained": [ | ||
{ | ||
"resourceType": "Medication", | ||
"id": "med1", | ||
"meta": { | ||
"profile": [ | ||
"http://hl7.org.au/fhir/core/StructureDefinition/au-core-medication" | ||
] | ||
}, | ||
"code": { | ||
"coding": [ | ||
{ | ||
"system": "http://snomed.info/sct", | ||
"code": "27908011000036108", | ||
"display": "clarithromycin 250 mg tablet, 100" | ||
} | ||
], | ||
"text": "clarithromycin 250 mg tablet, 100" | ||
}, | ||
"form": { | ||
"coding": [ | ||
{ | ||
"system": "http://snomed.info/sct", | ||
"code": "154011000036109", | ||
"display": "tablet" | ||
} | ||
], | ||
"text": "tablet" | ||
} | ||
} | ||
], | ||
"status": "completed", | ||
"intent": "order", | ||
"medicationReference": { | ||
"reference": "#med1" | ||
}, | ||
"subject": { | ||
"reference": "Patient/irvine-ronny-lawrence" | ||
}, | ||
"encounter": { | ||
"reference": "Encounter/discharge-1" | ||
}, | ||
"authoredOn": "2023-02-20T18:19:00+10:00", | ||
"requester": { | ||
"reference": "PractitionerRole/nursepractitioner-haywood-byron" | ||
}, | ||
"reasonCode": [ | ||
{ | ||
"coding": [ | ||
{ | ||
"system": "http://snomed.info/sct", | ||
"code": "3731000119107", | ||
"display": "Idiopathic hypersomnia" | ||
} | ||
] | ||
} | ||
], | ||
"dosageInstruction": [ | ||
{ | ||
"text": "1 Twice a Day\\nBefore meals", | ||
"timing": { | ||
"repeat": { | ||
"frequency": 2, | ||
"period": 1, | ||
"periodUnit": "d" | ||
} | ||
}, | ||
"asNeededBoolean": false, | ||
"route": { | ||
"coding": [ | ||
{ | ||
"system": "http://snomed.info/sct", | ||
"code": "26643006", | ||
"display": "Oral route" | ||
} | ||
] | ||
}, | ||
"doseAndRate": [ | ||
{ | ||
"doseQuantity": { | ||
"value": 1, | ||
"unit": "TAB", | ||
"system": "http://terminology.hl7.org/CodeSystem/v3-orderableDrugForm", | ||
"code": "TAB" | ||
} | ||
} | ||
] | ||
} | ||
] | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters