2

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?

devjme
  • 684
  • 6
  • 12

2 Answers2

0

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.

Mirjam Baltus
  • 2,035
  • 9
  • 13
  • I think the text field is for a hand written dosage instruction, from what I see here: http://hl7.org/fhir/medicationadministration.html but the note might work. – devjme Nov 28 '16 at 13:57
-1

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
            }
        }]
    }
devjme
  • 684
  • 6
  • 12