Example MedicationStatement
resources on how certain scenarios can be stated.
Only the parts relevant to the dosage are shown, Patient and Medication references as well as dates should be present as well.
Medication is taken, as directed:
{
"resourceType": "MedicationStatement",
...
"status": "in-progress",
"wasNotGiven": false
}
Medication is taken but differently than directed:
{
"resourceType": "MedicationStatement",
...
"status": "in-progress",
"wasNotGiven": false,
"modifierExtension": [{
"url": "http://fhir-registry.smarthealthit.org/StructureDefinition/taking-differently-than-directed",
"valueBoolean": true
}]
}
Medication is not taken:
{
"resourceType": "MedicationStatement",
...
"status": "completed",
"wasNotGiven": true
}
Not sure whether medication is taken:
{
"resourceType": "MedicationStatement",
...
"status": "in-progress",
"wasNotGiven": true,
"modifierExtension": [{
"url": "http://fhir-registry.smarthealthit.org/StructureDefinition/not-sure-whether-taken-or-not",
"valueBoolean": true
}]
}