Recording Imprecise Heart Rates: Difference between revisions

From IHE Wiki
Jump to navigation Jump to search
Lkm13 (talk | contribs)
No edit summary
Lkm13 (talk | contribs)
 
(2 intermediate revisions by the same user not shown)
Line 1: Line 1:
==Tip:==
==Tip:==


It is sometimes necessary to record imprecise values of physical quantities such as Heart Rate.  This is possible through flavors of null values and the abstract type quantity (QTY) specialization of physical quantities.  Further information about how to represent this is defined in the V3 specification.  This may be found at [http://www.hl7.org/v3ballot/html/welcome/environment/index.htm]
It is sometimes necessary to record imprecise values of physical quantities such as Heart Rate.  This is possible through flavors of null values and the abstract type quantity (QTY) specialization of physical quantities.  Further information about how to represent this is defined in the V3 specification.  This may be found on the HL7 [http://www.hl7.org/v3ballot/html/welcome/environment/index.htm V3 ballot website]
under the topics  
under the topics  


* Foundation->Data Types (Abstract)->Introduction->Data Value (Any)->Exceptional Value Detail
* Foundation->Data Types (Abstract)->Introduction->Data Value (Any)->Exceptional Value Detail
* Foundation->Data Types (Abstract)->Basic Types->Abstract Type Quantity (QTY)


Some examples include:
Some examples include:
Line 22: Line 21:


'''Heart Rate as a range "120-160" '''
'''Heart Rate as a range "120-160" '''
after discussion, more clinical precision is needed. Do not represent as a range.
'''Heart Rate with interpretation: "140" "Normal" '''
  <observation>
  <observation>
   <value xsi:type='IVL_PQ'>
   :
      <low value='120' unit='/min'/>
  <value value='140' unit='/min'/>
      <high value='160' unit='/min'/>
  <interpretationCode code='Normal'/>
  </value>
  </observation>
  </observation>
Heart Rate with interpretation: "140" "Low"

Latest revision as of 14:11, 26 July 2007

Tip:

It is sometimes necessary to record imprecise values of physical quantities such as Heart Rate. This is possible through flavors of null values and the abstract type quantity (QTY) specialization of physical quantities. Further information about how to represent this is defined in the V3 specification. This may be found on the HL7 V3 ballot website under the topics

  • Foundation->Data Types (Abstract)->Introduction->Data Value (Any)->Exceptional Value Detail

Some examples include:

Heart Rate "Absent"

<observation>
  :
  <value xsi:type='PQ' value='0' unit='/min'/>
</observation> 

Heart Rate unknown as "Not heard"

<observation>
  :
  <value xsi:type='PQ' nullFlavor='ASKU'>
</observation>

Heart Rate as a range "120-160"

after discussion, more clinical precision is needed. Do not represent as a range.

Heart Rate with interpretation: "140" "Normal"

<observation>
  :
  <value value='140' unit='/min'/>
  <interpretationCode code='Normal'/>
</observation>