Types of bolus : This page shows how the extension should be updated for different types of bolus types. In the MedicationAdministration - ext admin-type extension the data is updated according to the bolus type.
PUMP_STANDARD : This is most common type of bolus used is a normal bolus, which is similar that would have been used with injections.
{
"url": "http://roche.com/fhir/rdc/StructureDefinition/medication-administration-dosage/admin-type",
"valueCodeableConcept": {
"coding": [
{
"system": "http://roche.com/fhir/rdc/cs",
"code": "bolusStd",
"display": "Standard bolus"
}
]
}
}
PUMP_EXTENDED : Extended bolus delivers the insulin over a set amount of time decided by the pump user.
{
"url": "http://roche.com/fhir/rdc/StructureDefinition/medication-administration-dosage/admin-type",
"valueCodeableConcept": {
"coding": [
{
"system": "http://roche.com/fhir/rdc/cs",
"code": "bolusExt",
"display": "Extended bolus"
}
]
}
}
PUMP_MULTIWAVE : This is Combining a standard and extended bolus: the multiwave or dual-wave bolus option delivers a rapid bolus followed by a slower, steady release of insulin.
{
"url": "http://roche.com/fhir/rdc/StructureDefinition/medication-administration-dosage/admin-type",
"valueCodeableConcept": {
"coding": [
{
"system": "http://roche.com/fhir/rdc/cs",
"code": "bolusMul",
"display": "Multiwave bolus"
}
]
}
}