I was looking at the document "HL7 Implementation Guide for Clinical Document Architecture, Release 2: Progress Note, Release 1" and it contains LOINC Codes for each section. For example, 51848-0 is the code for Assessment. How can I find out which HL7 segment does this maps to?
HL7 CDA Progress Notes mapping LOINC Codes to HL7 sections
1.4k Views Asked by Nishanth Nair At
3
There are 3 best solutions below
0

LOINC codes are most often mapped to OBR or OBX segments depending on what the message is doing.
http://loinc.org/faq/getting-started/loinc-and-other-standards/
0

There is no direct map between HL7 v3 (CDA) and HL7 v2.x (messages and segments).
CDA Section information might be mapped to OBX segments in some cases, and if the LOINC code corresponds to a type of observation, you can put it in OBX-3: Observation Identifier, and the correspondent value should be on OBX-5: Observation Value.
Just for reference: http://hl7api.sourceforge.net/v25/apidocs/ca/uhn/hl7v2/model/v25/segment/OBX.html
Not sure if this is what you are asking - look at page 24
The CDA element is '
section/code
' - the path down to that point is something likeAll those section LOINC codes map down to a specific '
section
' element in the document body and set the 'code
' element so you know what the section is about.e.g
Spec states must have a section "ASSESSMENT AND PLAN" or two separate sections "PLAN OF TREATMENT" and "ASSESSMENT"
The example in the package helps a lot ans shows "ASSESSMENT AND PLAN" section in use..