Skip to content

Golden Record Consolidation

Data-governance method — instantiates Source-of-Truth Assignment

Merges many duplicate and conflicting records of the same entity into one consolidated 'golden' record, picking the surviving value field by field with survivorship rules.

Golden Record Consolidation constructs the authoritative representation rather than naming an existing one. When the same entity is scattered across several records that each hold part of the truth — and disagree on the rest — this mechanism clusters those records as one entity and builds a single "golden" view by deciding, field by field, which source's value survives. Its distinguishing move is survivorship: authority is assembled from the best of many, not delegated to one system, and the output carries a trail of which source each surviving field came from.

Example

A hospital holds the same patient three times: an ER registration ("J. Smith", DOB off by a digit), a lab-system record (DOB verified against ID), and a billing record with a newer address and a different phone. Treating them as three people is dangerous; picking one record wholesale throws away the good fields in the others. Golden Record Consolidation clusters the three as one patient, then applies survivorship: the lab's ID-verified DOB wins over the ER typo, the most recent verified address wins, the phone comes from whichever record is non-empty and freshest. It emits one golden patient record — the master patient index entry — plus a reconciliation report showing which source each field came from. Clinicians and billing now read one patient, and the report makes the merge auditable and reversible if a field turns out wrong.

How it works

The method has two distinctive stages. First it matches and clusters candidate duplicates — records similar enough to be the same entity — which requires deciding how alike is "the same." Then it applies survivorship rules field by field: most-recent, most-trusted-source, or most-complete value wins, per field. The result is one consolidated record plus a reconciliation report of what conflicted and which value survived. Unlike a system-of-record designation, no single existing system is crowned; the authoritative record is built, and its trustworthiness rests on the matching being right and the survivorship being defensible.

Tuning parameters

  • Match threshold — how similar records must be to be merged. Loose thresholds risk fusing two distinct entities; strict thresholds leave real duplicates unmerged.
  • Survivorship rules — the per-field precedence of recency versus source-trust versus completeness. This is the core dial and it can differ field by field.
  • Merge versus link — physically consolidate into one stored record, or keep the sources and maintain a virtual golden view over them. Physical is cleaner; virtual is reversible and non-destructive.
  • Auto-merge confidence cutoff — below a confidence level, route the candidate merge to a human instead of fusing automatically.

When it helps, and when it misleads

Its strength is collapsing duplicate chaos into one trustworthy, provenance-tagged view — the difference between three half-right patient records and one you can act on. Its sharpest failure mode is the false merge: fusing two genuinely different entities is worse than leaving duplicates and is painful to unwind, and even within a correct merge, a survivorship rule can silently promote a wrong-but-recent value.[1] The classic misuse is tuning survivorship after the fact to manufacture a flattering record. The discipline that guards against it is preserving provenance and reversibility, and routing low-confidence merges to human review rather than trusting the rules blindly.

How it implements the components

  • competing_representation_inventory — the matching stage gathers and clusters the duplicate records that claim to describe the one entity.
  • authoritative_source — its output is the authoritative record, constructed by field-level survivorship rather than designated.
  • reconciliation_report — records which conflicting values were found and which source each surviving field came from, making the merge auditable.

It does not maintain the stable identifiers used to recognize duplicates (that is Canonical Registry), route a live disagreement through review and escalation (that is Conflict Resolution Workflow), or designate an existing system as governing (that is System-of-Record Designation).

  • Instantiates: Source-of-Truth Assignment — it is the construct-by-merge route to an authoritative source, as opposed to designating one.
  • Consumes: Canonical Registry supplies the canonical identifiers used to cluster records as the same entity.
  • Sibling mechanisms: Canonical Registry · Master Data Management · System-of-Record Designation · Conflict Resolution Workflow · Synchronization Job · Authoritative Policy Repository · Official Record Policy · Change Log and Audit Trail · Access and Update Rights Matrix · Deprecation and Forwarding Notice · Source-Control Main Branch

Notes

Golden Record Consolidation is usually a component of Master Data Management, which governs it — MDM supplies the stewardship and boundaries; this method does the actual merge. Kept separate, a team can improve its survivorship rules without renegotiating the whole governance program.

References

[1] "Survivorship rules" — the field-level logic that selects which candidate value persists into a consolidated (golden) record. Because they are applied automatically at scale, a subtly wrong rule (e.g., "newest always wins") propagates a specific class of error uniformly, which is why provenance and reversibility are kept alongside the merged output.