Examples of HL7 messages

Does anyone know where to find examples of HL7 QR code messages and other types of HL7 messages in general? I am working on a use case where if a patient receives care at Facility A but then goes to Facility B, EMR in B should be able to request the patient's clinical resume by sending a message to EMR at A I have tried unsuccessfully to find useful examples demonstrating how such a message and response can be implemented.

Thanks in advance.

+3


source to share


5 answers


The Epic Bridge interface docs at open.epic.com have many sample HL7 messages.



+1


source


The following post is an example of an HL7 post

MSH|^~\&||.|||199908180016||ADT^A04|ADT.1.1698593|P|2.7
    PID|1||000395122||LEVERKUHN^ADRIAN^C||19880517180606|M|||6 66TH AVE NE^^WEIMAR^DL^98052||(157)983-3296|||S||12354768|87654321
    NK1|1|TALLIS^THOMAS^C|GRANDFATHER|12914 SPEM ST^^ALIUM^IN^98052|(157)883-6176
    NK1|2|WEBERN^ANTON|SON|12 STRASSE MUSIK^^VIENNA^AUS^11212|(123)456-7890
    IN1|1|PRE2||LIFE PRUDENT BUYER|PO BOX 23523^WELLINGTON^ON^98111|||19601||||||||THOMAS^JAMES^M|F|||||||||||||||||||ZKA535529776

      

The above message is divided into different types of segments ie MSH, PID, NK1, IN1 MSH (message header) . MSH contains the purpose of the HL7 message. It contains fields and is separated by ( | field separator ), it separates the fields in the given segment. The field contains a delimiter called ( ^ component delimiter ). And it contains the Sub-component ( and sub-component ) symbol .



MSH (Message Header) : -It contains the purpose of the message. those. Message ID, seeding application, sending object, receiving application, receiving means, message type, date and time of message received, version of HL7 message, etc. PID (Patient Identification): - It contains information about the patient. specified ID, patient ID, patient name, patient DOB, address, gender, race, date and time of admission, etc. ..

NK1 (Next of Kin) : - the next of kin or relative of a person. It contains information about a relative / friend.

IN1 (Insurance 1) : -This is complete information about the patient who is covered by insurance, such as Medicare, Medicaid, Tricare, Other Insurance, etc. ... It contains insurance planid, insurance company, insurance company address, insured person's name, policy number, etc. ..

+1


source


download a copy of 7edit. the app comes with a lot of samples. and his great tool

0


source


If I were you I would go to HL7.org and download the zip certificate for the HL7 version I needed and grab samples from there.

0


source


Please refer to chapter 5 of HL7 V2.4 documents. There you can see many requests with explanation. I've searched the same for many places, many versions (2.7.2.8) and finally got the real one (2.4). Click here to view hl7.org

0


source







All Articles