> ## Documentation Index
> Fetch the complete documentation index at: https://docs.topsort.com/llms.txt
> Use this file to discover all available pages before exploring further.

# Catalog Health

export const LastUpdated = ({date, lang = "en"}) => {
  const translations = {
    en: "Last updated:",
    es: "Última actualización:",
    pt: "Última atualização:",
    fr: "Dernière mise à jour:",
    de: "Zuletzt aktualisiert:"
  };
  const label = translations[lang] || translations.en;
  return <>
<style>{`
.last-updated-component {
display: inline-flex;
align-items: center;
gap: 8px;
padding: 10px 16px;
border-radius: 8px;
margin-top: 12px;
margin-bottom: 16px;
font-size: 14px;
background-color: rgba(0, 0, 0, 0.05);
border: 1px solid rgba(0, 0, 0, 0.12);
color: rgba(0, 0, 0, 0.75);
line-height: 1;
}

        .last-updated-component svg {
          flex-shrink: 0;
          vertical-align: middle;
        }

        .last-updated-component span {
          display: inline-flex !important;
          align-items: center !important;
          line-height: 1 !important;
        }

        [data-theme="dark"] .last-updated-component {
          background-color: #3a3a3a;
          border: 2px solid #888888;
          color: #ffffff;
        }

        [data-theme="dark"] .last-updated-component svg {
          stroke: #ffffff;
        }
      `}</style>
      <div className="last-updated-component">
        <svg width="16" height="16" viewBox="0 0 24 24" fill="none" stroke="currentColor" strokeWidth="2" strokeLinecap="round" strokeLinejoin="round">
          <circle cx="12" cy="12" r="10" />
          <polyline points="12 6 12 12 16 14" />
        </svg>
        <span>
          <strong style={{
    fontWeight: 600
  }}>{label}</strong> 
          <time dateTime={date}>{date}</time>
        </span>
      </div>
    </>;
};

Catalog Health helps marketplace admins identify product data issues that may affect advertising performance.

Open **Catalog** in the Admin Dashboard and select the **Catalog Health** tab.

Catalog Health shows:

* Total product count
* Live product count
* An overall health score
* An overall **Healthy, Warning, or Critical** grade
* Health across four dimensions: **Completeness, Structural integrity, Informativeness, and Freshness**

Select any dimension to see the individual metrics contributing to its health.

## Completeness

Completeness identifies missing product information.

Metrics include:

* Brand missing
* No description
* No image URL
* No marketplace link
* Price absent or zero
* No EAN (GTIN)

## Structural integrity

Structural integrity identifies broken relationships in the catalog.

Metrics include:

* **Category reference error rate:** Failed category references divided by all category references. This is a feed-level error rate and does not represent the percentage of products missing from category pages.
* **Unresolved vendor references:** Vendor entries that do not match a known vendor.

## Informativeness

Informativeness identifies product content that may not provide enough useful information.

Metrics include:

* Description equals name
* Name shorter than 10 characters
* Placeholder name
* Markup in description

## Freshness

Freshness identifies products and feeds that may be out of date.

Metrics include:

* Not updated in 180 days
* Not updated in 365 days
* Days since any live product was last updated

## Scores and grades

Each health dimension has a score from **0.00 to 1.00**, where **1.00 represents the healthiest state**.

Catalog Health also shows an overall health score.

Metrics, dimensions, and the overall catalog are assigned a color-coded grade of **Healthy, Warning, or Critical** so users can quickly identify where attention is needed.

Catalog Health is automatically available to all Topsort clients.

***

<LastUpdated date="2026-09-04" />
