Stream: implementers
Topic: Medication protocols
Jose Costa Teixeira (Apr 05 2021 at 11:14):
Is there any experience with describing medication protocols using PlanDefinitions? Could be oncology treatment guidelines, or hypertension treatment protocols...
IMO the way to express this is with a PlanDefinition, which for a patient is instantiated as a CarePlan, which then triggers the prescriptions (or catches up with the Dispenses, Admins, Statements)
@Jame Dang
Jame Dang (Apr 05 2021 at 11:17):
Thank you very much @Jose Costa Teixeira for help me to create the topic
Patrick Werner (Apr 05 2021 at 11:22):
Nice Topic. Currently we are only capturing protocols as Medication.code, in the next steps we are also looking at PlanDefinition
Jame Dang (Apr 05 2021 at 11:26):
I'm trying to use the PlanDefinition for some Regimen, please share us your experience when you work on that @Patrick Werner
Lloyd McKenzie (Apr 05 2021 at 15:56):
@Bryn Rhodes
Bryn Rhodes (Apr 05 2021 at 16:08):
There is an example of a chemotherapy regimen in the specification: http://hl7.org/fhir/plandefinition-example-kdn5-simplified.html
Jame Dang (Apr 05 2021 at 16:42):
@Bryn Rhodes : I read it before and I'm building a more complex regimen for chronic diseases like diabetes which need to use the medicine for long time and may need some level of regimen. Thanks for your support
Bryn Rhodes (Apr 05 2021 at 18:50):
Here's another example, due to @David Hay http://build.fhir.org/ig/HL7NZ/cca/branches/master/index.html
Bryn Rhodes (Apr 05 2021 at 18:59):
There's also some immunization examples, here: http://build.fhir.org/ig/davidhay25/nhip/branches/main/index.html and here: http://hl7.org/fhir/uv/cpg/examples/hep-b/adult-hepb-immunization-forecasting.html
Jame Dang (Apr 06 2021 at 01:03):
Thanks @Bryn Rhodes
Jame Dang (Apr 06 2021 at 04:17):
@Patrick Werner : I have problem with contained serialize like in https://github.com/hapifhir/hapi-fhir/issues/1186, I see your on that thread. How can you resolve this problem, I use the HAPI FHIR 5.3.0 and R4, could you please give me some advice?
Jame Dang (Apr 06 2021 at 04:18):
I mean I cannot encode the contained ( I have tried to add the "#" to the resource ID but cannot help)
Jame Dang (Apr 06 2021 at 04:39):
I tried the use the contained with Patient using the code patient.getManagingOrganization().setReference("#localOrganization");
patient.getContained().add(org); then it is OK. But when I tried with PlanDefinition I cannot found the same property of the Reference to set. That causes me problem (with PlanDefinition). Can you give me some help?
Last updated: Apr 12 2022 at 19:14 UTC