Reputation: 13690
We are looking to define a Medication Schedule using the FHIR Medicatation Prescription resource. Data model aside the schedule is as follows:
For example
Amoxicillin 50mg - Orally - From 01/06/2015 to 05/06/2015 3 times a day : 09.00 / 13.00 / 18.00
Does anybody know if this is possible with the existing DSTU2 specification?
Cheers
Upvotes: 1
Views: 247
Reputation: 720
This object is now MedicationOrder
Please see answers / comments here:
MedicationOrder for Times of day
This is hopefully coming soon
Upvotes: 0
Reputation: 16941
Yes, this is possible.
This is possible but only in a laborious way.
You want this to be a MedicationPrescription. Ideally this would be a dosageInstruction.dosageTiming
Timing property, but this element can not (yet?) specify specific Time
s during a day. You will have to create one dosageInstruction.scheduledDateTime
for every occurrence of your prescription.
Upvotes: 1
Reputation: 6793
The Timing data type is intended to support this. It allows you to say "3 times per day" and also enumerate the specific times.
Upvotes: 0