my tools to help me be more productive
Click on any row, field, or component below to view detailed medical standard explanations.
Select any segment or field on the left to reveal its clinical definition.
Expand the JSON tree nodes below. Click on any property node to view its path and clinical definition.
Select a node in the FHIR tree breakdown to view its standard data schema details.
Bilingual automated mapping between HL7 v2 pipe-delimited standards and modern FHIR JSON schemas.
Learn the core differences between legacy HL7 v2 messages and modern FHIR resource paradigms.
MSH|^~\&|EPIC|HOSP|||2026||ADT^A01|MSG01|P|2.3 EVN|A01|20260813 PID|1||987654321^^^MRN||SMITH^JANE||19850524|F
MSH|^~\&|LIS|LAB|||2026||ORU^R01|MSG02|P|2.3 PID|1||12345^^^MRN||SMITH^JOHN OBR|1|P1||85025^HEMOGLOBIN^LN OBX|1|NM|718-7^HEMOGLOBIN^LN||14.2|g/dL|13.5-17.5|N
MSH|^~\&|CPOE|HOSP|||2026||ORM^O01|MSG03|P|2.3 PID|1||987654321^^^MRN||SMITH^JANE ORC|NW|ORD551|||||1^once OBR|1|ORD551||85025^HEMOGLOBIN^LN
MSH|^~\&|EHR|HOSP|||2026||MDM^T02|MSG04|P|2.3 PID|1||987654321 TXA|1|CN|TX|20260813|||||||||DOC123 OBX|1|ED|||PDF_DATA^Base64^^^JVBERi0xLjQK...
MSH|^~\&|SCHED|HOSP|||2026||SIU^S12|MSG05|P|2.3 SCH|APT992||||||85^CONSULT|||60^MIN|||202608150900 RGS|1|A AIL|1|A|CLINIC_A
MSH|^~\&|LIS|LAB|||2026||VXU^V04|MSG06|P|2.3 PID|1||987654321||SMITH^JANE RXA|0|1|20260813|20260813|110^INFLUENZA^CVX|0.5|mL
MSH|^~\&|BILLING|HOSP|||2026||DFT^P03|MSG07|P|2.3 PID|1||987654321||SMITH^JANE FT1|1|||20260813|20260813|CG|99213^OUTPATIENT VISIT||1|120.00
{
"resourceType": "Patient",
"id": "pat-1",
"name": [{"family": "SMITH", "given": ["JANE"]}],
"gender": "female",
"birthDate": "1985-05-24"
}
{
"resourceType": "Observation",
"status": "final",
"code": {"coding": [{"system": "http://loinc.org", "code": "718-7", "display": "Hemoglobin"}]},
"valueQuantity": {"value": 14.2, "unit": "g/dL"}
}
{
"resourceType": "Encounter",
"status": "finished",
"class": {"system": "http://terminology.hl7.org/CodeSystem/v3-ActCode", "code": "AMB"}
}
{
"resourceType": "Practitioner",
"id": "dr-welby",
"name": [{"family": "WELBY", "given": ["MARCUS"]}]
}
{
"resourceType": "AllergyIntolerance",
"clinicalStatus": {"coding": [{"system": "http://terminology.hl7.org/CodeSystem/allergyintolerance-clinical", "code": "active"}]},
"code": {"text": "Penicillin"}
}
{
"resourceType": "Condition",
"clinicalStatus": {"coding": [{"system": "http://terminology.hl7.org/CodeSystem/condition-clinical", "code": "active"}]},
"code": {"text": "Asthma"}
}
{
"resourceType": "MedicationRequest",
"status": "active",
"intent": "order",
"medicationCodeableConcept": {"text": "Aspirin 81mg"}
}
{
"resourceType": "Procedure",
"status": "completed",
"code": {"text": "Laparoscopic Appendectomy"}
}
| HL7 Segment | Equivalent FHIR Resource | Clinical Purpose |
|---|---|---|
| MSH | MessageHeader / Bundle | |
| PID | Patient | |
| PV1 | Encounter | |
| OBX | Observation | |
| AL1 | AllergyIntolerance | |
| DG1 | Condition | |
| PR1 | Procedure | |
| OBR | DiagnosticReport |