Stream: Medication
Topic: timing.repeat error in examples
Olivier Boux (Nov 17 2021 at 12:19):
I think there is an error in the expression of the Timing
of one of the Dose
in the example medicationdispense0319 (Dispense for Azithromycin (NDC code) - completed with multiple dosage lines) and in the MedciationRequest
to which it refers (example medrx0302).
"sequence": 2,
"text": "One tablet daily for 4 days",
. . .
"timing": {
"repeat": {
"frequency": 4,
"period": 1,
"periodUnit": "d"
}
},
timing
means 4 times a day and not 1 time a day for 4 days.
for 4 days must be carried by repeat.bounds:boundsDuration
.
Ce qui donnerait:
"timing": {
"repeat": {
"boundsDuration": {
"value": 4,
"unit": "days",
"system": "http://unitsofmeasure.org",
"code": "d"
},
"frequency": 1,
"period": 1,
"periodUnit": "d"
}
},
Melva Peters (Nov 17 2021 at 14:49):
@Olivier Boux please submit a Jira Issue and I will fix
Olivier Boux (Nov 17 2021 at 18:18):
Jira created: https://jira.hl7.org/browse/FHIR-34328
Last updated: Apr 12 2022 at 19:14 UTC