Every 8 hours | - Human readable text
- Dosage
{ "timing": { "repeat": { "frequency": 1, "period": 8, "periodUnit": "h" } } }
|
Every 7 days | - Human readable text
- Dosage
{ "timing": { "repeat": { "frequency": 1, "period": 7, "periodUnit": "d" } } }
|
3 times a day | - Human readable text
- Dosage
{ "timing": { "repeat": { "frequency": 3, "period": 1, "periodUnit": "d" } } }
|
3-4 times a day | - Human readable text
- Dosage
{ "timing": { "repeat": { "frequency": 3, "frequencyMax": 4, "period": 1, "periodUnit": "d" } } }
|
Every 4-6 hours | - Human readable text
- Dosage
{ "timing": { "repeat": { "frequency": 1, "period": 4, "periodMax": 6, "periodUnit": "h" } } }
|
Every 21 days for 1 hour | - Human readable text
- Dosage
{ "timing": { "repeat": { "duration": 1, "durationUnit": "h", "frequency": 1, "period": 21, "periodUnit": "d" } } }
|
Three times a week for 0.5 hour | - Human readable text
- Dosage
{ "timing": { "repeat": { "duration": 0.5, "durationUnit": "h", "frequency": 3, "period": 1, "periodUnit": "wk" } } }
|
With breakfast | - Human readable text
- Dosage
{ "timing": { "repeat": { "when": [ "CM" ] } } }
|
For 5 minutes, 10 minutes before meals | - Human readable text
- Dosage
{ "timing": { "repeat": { "duration": 5, "durationUnit": "min", "when": [ "AC" ], "offset": 10 } } }
|
1 tablet 3 times daily, 30 minutes before meals | - Human readable text
- Dosage
{ "doseAndRate": [ { "doseQuantity": { "value": 1, "unit": "tablet" } } ], "timing": { "repeat": { "frequency": 3, "period": 1, "periodUnit": "d", "when": [ "AC" ], "offset": 30 } } }
|
BID, 30 mins before meal, for next 10 days | - Human readable text
- Dosage
{ "timing": { "repeat": { "frequency": 2, "period": 1, "periodUnit": "d", "when": [ "AC" ], "offset": 30, "boundsDuration": { "value": 10, "code": "d", "system": "http://hl7.org/fhir/ValueSet/duration-units" } } } }
|
TID, for 14 days | - Human readable text
- Dosage
{ "timing": { "repeat": { "frequency": 3, "period": 1, "periodUnit": "d", "boundsDuration": { "value": 14, "code": "d", "system": "http://hl7.org/fhir/ValueSet/duration-units" } } } }
|
BID, start on 7/1/2015 at 1:00 PM | - Human readable text
- Dosage
{ "timing": { "repeat": { "frequency": 2, "period": 1, "periodUnit": "d", "boundsPeriod": { "start": "2015-07-01T13:00:00" } } } }
|
Mon, Wed, Fri Morning | - Human readable text
- Dosage
{ "timing": { "repeat": { "frequency": 1, "period": 1, "periodUnit": "d", "dayOfWeek": [ "mon", "wed", "fri" ], "when": [ "MORN" ] } } }
|
Every day at 10am | - Human readable text
- Dosage
{ "timing": { "repeat": { "frequency": 1, "period": 1, "periodUnit": "d", "timeOfDay": [ "10:00:00" ] } } }
|
Take once, at any time | - Human readable text
- Dosage
{ "timing": { "repeat": { "count": 1 } } }
|
Take every second day, in the morning, until 20 have been taken | - Human readable text
- Dosage
{ "timing": { "repeat": { "frequency": 1, "period": 2, "periodUnit": "d", "when": [ "MORN" ], "count": 20 } } }
|