Stream: research
Topic: capturing a guidelines recommendation
Raheel Sayeed (Mar 25 2021 at 15:31):
There are certain clinical guidelines like AHA ASCVD risk scoring etc that result in certain recommendations that may note the use of certain medications or lab tests or procedures. I've looked at Clinical Practice Guidelines (http://hl7.org/fhir/uv/cpg/), while this is great, We had a minor scoped use case, where we're looking for a specific resource that only holds that "recommended content" for that specific patient. I didn't think it can be Observation
, any particular resource that might be suited for this?
RiskAssessment looks useful?
Bryn Rhodes (Mar 25 2021 at 21:35):
For a specific risk score for a patient, yes, RiskAssessment. For a potential issue, like a drug-drug interaction, DetectedIssue. For a recommendation to perform some action, like a medication or a procedure, one of the request resource with an intent of "proposal".
Bryn Rhodes (Mar 25 2021 at 21:37):
And just to note that CPG can be used just for scoped down content like that, many of the content IGs that currently implement CPG are just a handful of recommendations, or even a calculator. The intent is to provide patterns of usage so that recommendations can be tied back to guidelines (and ultimately supporting evidence) consistently.
Raheel Sayeed (Mar 26 2021 at 02:40):
Thanks Bryn. Because the guideline recommendation would be a medication, I guess I'd use a "MedicationRequest". However, sometimes theres only a broad categorical direction. Like "Use broad spectrum antibiotics", "use high intensity statins" without a specifying the generic medication itself.
Raheel Sayeed (Mar 26 2021 at 15:28):
Perhaps CommunicationRequest
would be more appropriate for the guideline recommendations like 'Physical exercise', 'Diet', etc..
Josh Mandel (Mar 26 2021 at 16:45):
If the aim is "please talk to X about Y" then CommunicationRequest
makes sense. But for guideline telling a patient do something, I'm not sure what the generic recommendation is. There's ServiceRequest
(where you can set ServiceRequest.performer
to be the patient), which is suitable for exercises (explicitly listed in the resource scope).
Josh Mandel (Mar 26 2021 at 16:47):
And for specifics on diet you might want to use NutritionOrder
; but it's a mess to try to slot coarsed-grained guidance into a bunch of different specific FHIR resources (some in Meds, some in Services, some in Nutrition...)
Last updated: Apr 12 2022 at 19:14 UTC