-
Notifications
You must be signed in to change notification settings - Fork 516
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Prescription: Titrated drug dose #6432
Comments
Based on some minimal research, FHIR seems to represent the min-dosage as dosage itself & the target dosage as maxDosage. I'm concerned about the terms we use here. Could you please comment. @rithviknishad Please attach the FHIR JSON for Titrated Dosages {
"resourceType": "MedicationRequest",
"id": "titration-example",
"status": "active",
"intent": "order",
"subject": {
"reference": "Patient/123"
},
"medicationCodeableConcept": {
"coding": [{
"system": "http://www.nlm.nih.gov/research/umls/rxnorm",
"code": "XYZ",
"display": "Medicine XYZ"
}]
},
"dosageInstruction": [{
"text": "Administer every 1 hour. Start with 10mg, increase dosage by 10mg with each administration maintaining Heart rate of the patient below 90 bpm. If heart rate goes above 90, do not increase dosage, continue at the previous dosage till heart rate falls below 90, then continue increasing dosage.",
"timing": {
"repeat": {
"frequency": 1,
"period": 1,
"periodUnit": "h"
}
},
"doseAndRate": [{
"doseQuantity": {
"value": 10,
"unit": "mg",
"system": "http://unitsofmeasure.org",
"code": "mg"
},
"type": {
"coding": [{
"system": "http://terminology.hl7.org/CodeSystem/dose-rate-type",
"code": "titrated"
}]
}
}],
"maxDosePerPeriod": {
"value": 50,
"unit": "mg",
"system": "http://unitsofmeasure.org",
"code": "mg"
}
}]
}
|
@gigincg @rithviknishad @GokulramGHV Why I insist on having "start dose and target dose" and NOT min dose and max dose is because : Titration is of 2 kinds. Up-titration and down-titration. Up-titration is when medicine dosage is slowly increased, and down-titration is when patient is being veined off a medication. In the former, the user is moving dosage from min to max, while in the later the reverse. Hence for users indicating dosage as Min and max may be confusing. To know more on Drug Titration, you may refer to the scientific paper; https://www.ncbi.nlm.nih.gov/pmc/articles/PMC7967860/ |
@aparnacoronasafe Should I change the existing "Notes" field to "Instruction on titration" for a titrated prescription, or do we need both the "Notes" and "Instruction on titration" fields for a titrated prescription? |
@GokulramGHV Please create a new field for "Instruction on titration" and retain "Notes" as well. |
@aparnacoronasafe Should I create a separate table in the discharge summary for titrated prescriptions or should I incorporate the titrated prescription fields along with the regular prescriptions table? cc: @rithviknishad |
Separate table is not needed. Dosage column may just show 5mg to 10mg Is something like this possible? |
Is your feature request related to a problem? Please describe.
Dosage in prescription may be Titrated. Especially in ICUs, a lot of medicines tend to have intense side effects and must be administered in precise dosage based on the patient's present condition.
Dosage titration allows doctors to instruct the administration of medicine with an Initial dosage and a target dosage based on parameters set by the doctor. The nurse will start administration as per the initial dosage and slowly increase/decrease dosage to the target dose closely monitoring the patients condition, strictly following the doctors instructions.
Eg: Medicine XYZ, to be administered every 1 hour and the dosage to be titrated between 10 mg to 50mg. And instruction on titration may be "increase dosage by 10mg with each administration maintaining Heart rate of the patient below 90 bpm. If heart rate goes above 90, donot increase dosage, continue at the previous dosage till heart rate falls below 90, then continue increasing dosage"
Describe the solution you'd like
Make the following changes in the Prescription (https://deploy-preview-6396--care-net.netlify.app/facility/015ad911-39b7-4104-b304-bf8178c33830/patient/85497ba2-3319-4acc-829a-d116e8b3136a/consultation/e356715b-5fd3-4cfc-ab45-d64509cb7cb2/prescriptions)
Make the following changes in Medicine Administration Record (https://deploy-preview-6396--care-net.netlify.app/facility/015ad911-39b7-4104-b304-bf8178c33830/patient/85497ba2-3319-4acc-829a-d116e8b3136a/consultation/e356715b-5fd3-4cfc-ab45-d64509cb7cb2/medicines)
The text was updated successfully, but these errors were encountered: