Stream: implementers
Topic: Heart rate at blood pressure observations
Joakim Antus (Mar 30 2022 at 09:24):
Hi, I have a question regarding heart rate at blood pressure observations. The device we use will always give us a heart rate reading when doing a blood pressure measurement. So, should we create a single observation with components for systolic, diastolic and heart rate or is it better to create a "panel" with two "child" observations, one for blood pressure and one for heart rate?
Vadim Peretokin (Mar 30 2022 at 09:49):
The former is better, have a look at http://hl7.org/fhir/R4/bp.html and the example on http://hl7.org/fhir/R4/observation-example-bloodpressure.json.html
Rob Hausam (Mar 30 2022 at 11:26):
I think whether the former is "better" depends on how the data is intended to be used. If this heart rate measurement will always be used only along with the systolic and diastolic BP measurements, then I agree that is an appropriate use of component and doing it that way would be better (since they are done at the same time and with the same method, etc.). But if the heart would ever be used independently of the BP measurements, then representing it as a "panel" with separate observations should at least be considered. I expect that in your case with the device the heart rate probably won't have an independent use, so using component would make sense - but it's worth giving some thought to it.
Michele Mottini (Mar 30 2022 at 14:06):
I think heart rate should always be a separate Observation, to comply with the vital signs profile (http://hl7.org/fhir/observation-vitalsigns.html), that is what client would be expecting. If you put it in a component of the blood pressure clients most likely would not 'see' it at all
Rob Hausam (Mar 30 2022 at 15:09):
I wasn't thinking about it in regard to the vital signs profile. That's another reason to consider representing it as a separate observation. If the heart rate data in this case has any independent use (actual or potential) as a "vital sign", then it is required for it to conform to the vital signs profile.
Lloyd McKenzie (Mar 30 2022 at 16:49):
"Collected together by the same instrument and method" is a necessary but not sufficient criteria for using 'component'. The other is "cannot be usefully interpreted independently or almost always interpreted and considered together". The latter bit is what allows systolic and diastolic to be sent as components of a single Observation. However, it'd be much harder to argue that's true of blood pressure and heart rate. The first part comes into play a lot for things like microbiology (where you need both organism and sensitivity together to have a complete statement) or genetics (where there are a bunch of properties that together describe a variant).
Rob Hausam (Mar 30 2022 at 21:32):
We're seeing a lot of uses of component which are considerably looser than the criteria that Lloyd quoted - largely based on the "or may provide qualifying information to Observation.code" clause. I agree generally with Lloyd's analysis. But I think that the microbiology identification/ susceptibility scenario isn't as clearly in favor of using component as he thinks it is. :) For one thing, the necessary (but not sufficient) criterion of "Collected together by the same instrument and method" is not true for organism identification and susceptibility results.
Lloyd McKenzie (Mar 31 2022 at 01:36):
Sorry, I misspoke. I didn't mean 'organism', I meant antibiotic. Knowing "susceptible" isn't useful if you don't know "to what". Similarly, knowing "to what" isn't useful if you don't have the susceptibility. The organism is completely orthogonal and would indeed be a separate Observation.
Last updated: Apr 12 2022 at 19:14 UTC