Understanding HL7 v2 OBR-7: Observation Date/Time in Practice
OBR-7 marks when the specimen was collected or the observation actually happened — not when the order was placed and not when the result was filed. Dashboards that plot turnaround time using the wrong timestamp will report numbers that look plausible but are quietly wrong.
OBR-7 is the seventh field of the HL7 v2 OBR segment — the Observation Date/Time, typically representing the collection or observation time for the study, distinct from order time and result time.
What this field contains
Example
OBR-7 carries 20260726090000 — the specimen collection time for this order. Synthetic order — not a real patient.
Where this trips people up
Turnaround-time reporting built on the assumption that OBR-7 always arrives with full second-level precision breaks the moment a sending system truncates the timestamp to date-hour-minute or, in older feeds, date only. Parsing code that blindly slices fixed character positions out of the string then reads garbage seconds or shifts the whole value. Parse HL7 timestamps by declared length, not fixed offsets.