> ## 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.

# Schema-Beschreibung

export const LastUpdatedDe = ({date}) => {
  const label = "Zuletzt aktualisiert:";
  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>
    </>;
};

## Kernidentifikation

| Feld                | Typ        | Beschreibung                                                 |
| ------------------- | ---------- | ------------------------------------------------------------ |
| `id`                | **UUID**   | Eindeutige Kennung für den standardisierten Produktdatensatz |
| `source_product_id` | **STRING** | Produkt-ID aus der ursprünglichen Katalogübermittlung        |
| `marketplace_id`    | **UUID**   | Kennung für den übermittelnden Marktplatz oder Anbieter      |

## Produktinformationen

| Feld          | Typ        | Beschreibung                                  |
| ------------- | ---------- | --------------------------------------------- |
| `title`       | **STRING** | Bereinigter und standardisierter Produkttitel |
| `description` | **STRING** | Standardisierte Produktbeschreibung           |

## Markendaten

| Feld                   | Typ        | Beschreibung                                                       |
| ---------------------- | ---------- | ------------------------------------------------------------------ |
| `raw_brand_name`       | **STRING** | Markenname wie im ursprünglichen Katalog empfangen                 |
| `brand_id`             | **UUID**   | Erkannte kanonische Marken-ID                                      |
| `standard_brand_name`  | **STRING** | Standardisierter Markenname, der mit der Marken-ID verknüpft ist   |
| `standard_brand_score` | **FLOAT**  | Standardisierter Marken-Score, der mit der Marken-ID verknüpft ist |

## Kategorie-Klassifizierung

| Feld                      | Typ        | Beschreibung                                                           |
| ------------------------- | ---------- | ---------------------------------------------------------------------- |
| `raw_category_name`       | **STRING** | Ursprüngliches Kategorie-Label aus dem Katalog                         |
| `category_id`             | **UUID**   | Zugeordnete Kategorie-ID aus der standardisierten Taxonomie            |
| `standard_category_path`  | **STRING** | Vollständiger Kategoriepfad (z.B. Elektronik → Telefone → Smartphones) |
| `standard_category_score` | **FLOAT**  | Standardisierter Marken-Score, der mit dem Kategoriepfad verknüpft ist |

## Deduplizierung und Qualität

| Feld                | Typ         | Beschreibung                                                                      |
| ------------------- | ----------- | --------------------------------------------------------------------------------- |
| `master_product_id` | **UUID**    | Einheitliche Produkt-ID, die deduplizierte Varianten desselben Produkts darstellt |
| `is_duplicate`      | **BOOLEAN** | Zeigt an, ob das Produkt ein Duplikat eines vorhandenen Artikels ist              |
| `confidence_score`  | **FLOAT**   | Konfidenz-Score (0–1), der die Sicherheit in der Standardisierung anzeigt         |

## Metadaten

| Feld         | Typ           | Beschreibung                                                          |
| ------------ | ------------- | --------------------------------------------------------------------- |
| `created_at` | **TIMESTAMP** | Zeitstempel, wann das Produkt verarbeitet wurde                       |
| `updated_at` | **TIMESTAMP** | Zeitpunkt der letzten Aktualisierung des standardisierten Datensatzes |

***

<LastUpdatedDe date="2025-11-18" />
