> For the complete documentation index, see [llms.txt](https://docs.dinmo.io/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://docs.dinmo.io/identity-resolution/golden-record.md).

# Golden record

The golden record is the canonical profile produced by [Profile Resolution](/identity-resolution/profile-resolution.md). It contains one row per [`dinmo_id`](/identity-resolution/dinmo-id.md).

Use the golden record when you need a trusted, deduplicated profile table for Customer Hub, Segments, Activations, analytics, or downstream models.

## What the golden record contains

The golden record can include:

* `dinmo_id`, the resolved profile ID
* `last_updated_at`, the latest update timestamp for the resolved profile
* selected identifiers, such as email, phone, user ID, or customer ID
* selected model fields, such as country, consent status, signup date, or last login date

The physical output is exposed in `identity_golden`. See [Output tables](/identity-resolution/profile-resolution/output-tables.md#identity_golden) for the table reference.

## How values are selected

When multiple source records merge into the same profile, DinMo needs to choose one value for each golden field.

This is handled through [survivorship rules](/identity-resolution/survivorship-rules.md), such as:

* Last non null
* Most frequent
* Model Priority Order

## Recommended first fields

Start with fields that are useful and easy to validate:

* email
* phone number
* user ID or customer ID
* country
* consent or subscription status
* signup date or last login date

Keep the first golden record focused. A smaller table is easier to review before activation.

## Validate the golden record

Before using the golden record downstream, validate:

* profile count
* identifier completeness
* high-impact fields such as email and consent
* sample profiles from important matching rules

See [Review and monitor](/identity-resolution/profile-resolution/review-and-monitor.md) for the validation workflow.


---

# Agent Instructions
This documentation is published with GitBook. GitBook is the documentation platform designed so that both humans and AI agents can read, navigate, and reason over technical content effectively. Learn more at gitbook.com.

## Querying This Documentation
If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter:

```
GET https://docs.dinmo.io/identity-resolution/golden-record.md?ask=<question>
```

The question should be specific, self-contained, and written in natural language.
The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
