I need a way of saying where we are currently within a dose of medication.
Like 5 execution out of 7
or Dose Administration number 5
Does anyone know how to express this in the event objects or elsewhere?
I need a way of saying where we are currently within a dose of medication.
Like 5 execution out of 7
or Dose Administration number 5
Does anyone know how to express this in the event objects or elsewhere?
Have you checked the MedicationAdministration resource? It has a 'note' field where you could put this in, and also a text field for the dosage.
I put in a change ticket for this functionality within FHIR, but for now I am saving it in Medical Administration Event History:
But I have to extend action to have quantity.
http://hl7.org/fhir/medicationadministration.html
"medicationAdministration":{
"eventHistory":[{
"action":{
"coding": [{
"system": "http://www.kindred.com/proTouch",
"code": "lastDelivery",
"display": "Last Delivery"
}],
"dateTime":"2016-09-22 13:06:20"
}
},{
"action":{
"coding": [{
"system": "http://www.kindred.com/proTouch",
"code": "dosesAdministered",
"display": "Doses Administered"
}]
"quantity":2
}
}]
}