Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

What is the HL7 ZDS segment used for?

Tags:

hl7

My very old HL7 parser has just hit a snag as it is now getting some messages with a ZDS segment present. It was easy to fix by adding a ZDS object to my parser, but I am trying to find out what it is used for. Googling hasn't helped much. This is a sample

ZDS|PERFORM|p0001236^PATEL^ATEST^^^^^^HHB_INOP_PRSNL^^^^OTHER|20100714101800|CD:653
ZDS|TRANSCRIBE|p0001236^PATEL^ATEST^^^^^^HHB_INOP_PRSNL^^^^OTHER|20100714101800|CD:653
ZDS|SIGN|p0001236^PATEL^ATEST^^^^^^HHB_INOP_PRSNL^^^^OTHER|20100714101912|CD:653

So, I'm interested in what each field is though looking at this sample data, it seems I don't lose much by just dropping the whole segment.

like image 878
Graham Chiu Avatar asked Jul 22 '10 11:07

Graham Chiu


People also ask

What are Z segments?

A Z-segment is a message segment that contains clinical or patient data that is not part of the HL7 standard. Z-segments are part of the reason why the HL7 standard is considered a “flexible” standard. In HL7 messaging, all Z-segments start with the letter “Z”.

How many segments are there in HL7?

Over 120 different HL7 segments are available for use in HL7 messages to communicate health data.

What is the PID segment in HL7?

HL7-Definition V2 The PID segment is used by all applications as the primary means of communicating patient identification information. This segment contains permanent patient identifying and demographic information that, for the most part, is not likely to change frequently.


1 Answers

In HL7, all segments that begin with the letter Z are considered to be custom and are not defined further by the HL7 standard. You will need to find out what system is responsible for generating these ZDS segments and ask the owners of that system to provide you their specification.

like image 128
Scott W Avatar answered Jan 04 '23 11:01

Scott W