How the signature timestamp prints on a signed note

The Provider Attestation block on every signed progress note prints when the note was signed and in which timezone. This page explains what the printed value means, why it may not match your local clock exactly, and what changed on August 27, 2026.

What the signature line prints

For a signed note, the timestamp line reads:

Aug 25, 2026, 11:07 PM EDT

Three parts, all load-bearing:

For an unsigned note, the line reads:

Not recorded

That value is a legal statement about the record, not a placeholder. The note has never been signed.

What changed on August 27, 2026

The Provider Attestation timestamp used to print in two indefensible shapes on the note PDF:

Both defects are fixed. The write path was already correct; this was a render-only fix. No stored data changed.

Why device timezone, not facility timezone

Every facility record carries a timezone column, and the obvious choice would be to render every signature in the facility's zone so that the printed string does not depend on who clicked download. The choice was made against it — for one specific reason that outweighs the consistency benefit.

The facility.timezone column defaults to America/New_York and is set at facility creation. Nothing forces it to stay correct if a facility relocates or if the initial value was never reviewed. In production, four facilities have the wrong zone stored — including At Home Wound Care, an Oklahoma facility whose configuration still reads Eastern. Those four facilities hold 29 of 74 signed notes (39%). Rendering from the facility zone would print a confident wrong zone onto a legal document — worse than printing an unlovely one that the reader can interpret.

The device clock is chosen because it needs no supporting data to be right. The zone abbreviation is what makes the choice safe: every printed copy is a self-describing statement about the same instant. Two copies with different abbreviations still describe the same moment; the reader can reconstruct one from the other.

What this means when you compare two copies of the same note

Occasionally a note is downloaded twice from two different devices set to two different zones. In production, 3 of 74 signed notes fall in a window where two US timezones disagree on the calendar day. Both copies are correct. Both are legally defensible. The zone abbreviation is how you tell they describe the same instant — line up the two strings, apply the offset, they match.

If a Home Health agency, auditor, or payer questions why two copies of the same signed note carry different times, the answer is:

There is nothing to reconcile in the underlying data.

What was deleted

The PDF renderer used to have a legacy fallback path that stamped new Date() — today's date on the machine running the render — as the signature date whenever the stored signed_at was missing. It ran precisely when the primary renderer had thrown. That fallback fabricated a signature date onto an unsigned clinical record. Deleted. There is no path today that prints a synthesized signature date; if the note is unsigned, the line reads Not recorded.

The signature timestamp is written when the provider clicks Sign in step 17 of the Visit Wizard. If you sign a note and the timestamp does not appear on the PDF, check that the note is actually signed — a locked note is not the same as a signed note. See the Provider Attestation reference for the exact behavior.

Auto-rendered from related: in frontmatter.

ESC