Leaders Insights
Leaders Insights

Stay at the top of your field, a little every day.

DomainsMarketingDataFinanceAI
ResourcesLearnTestToolsBlogGlossary
© 2026 Leaders Insights — All rights reserved.
Tracks/Data in automotive/Data landscape, quality and metrics/Data quality where it hurts: parts catalogs and build accuracy
3/5+150 XP

Data landscape, quality and metrics

5Mapping the automotive data landscape: from VIN to dealer DMS+1506The core datasets: sales, registrations, and the parc+1507Data quality where it hurts: parts catalogs and build accuracy+1508Governance and lineage across the OEM-supplier-dealer chain+1509Analytics benchmarks that matter: from days-in-inventory to churn+150

Data quality where it hurts: parts catalogs and build accuracy

# Data qualityData qualityThe degree to which data is fit for purpose: accurate, complete, consistent, timely, valid and unique. Poor quality data undermines analytics, reporting and AI.View full definition → where it hurts: parts catalogs and build accuracy

A customer orders brake pads for a 2019 Ford F-150. The pads arrive. They do not fit. The truck has a heavy-duty tow package that changed the caliper, and the parts catalog never recorded that option. Multiply that single mismatch across millions of orders per year, and you have one of the most expensive data qualitydata qualityThe degree to which data is fit for purpose: accurate, complete, consistent, timely, valid and unique. Poor quality data undermines analytics, reporting and AI.View full definition → problems in the automotive world.

Wrong-part shipments cost money three times: the return, the reship, and the lost customer trust. And almost every one of them traces back to bad data somewhere between a Vehicle Identification Number (VIN) and a bill of materials (BOM).

This lesson shows you where that data breaks and how to measure it.

The two datasets that decide whether a part fits

The VIN and its decode

The VIN is the 17-character code stamped on every vehicle. It is not random. Characters 1 to 3 identify the manufacturer, 4 to 8 describe the model and engine, character 10 is the model year, and the rest encode the plant and serial number.

The US National Highway Traffic Safety Administration (NHTSA) runs a free VIN decoder that turns a VIN into structured attributes. You can query it directly:

https://vpic.nhtsa.dot.gov/api/vehicles/DecodeVin/1FTFW1E50KFA00000?format=json

Try the NHTSA vPIC API yourself. It returns make, model, body class, engine, and more. The catch: it decodes the base vehicle. It does not always know which optional package a specific unit was built with. That gap is where mismatches begin.

The bill of materials (BOM)

The BOM is the recipe: every part, sub-assembly, and quantity that goes into a vehicle or a repair. An "as-built" BOM records what was actually installed on a specific VIN at the plant. An "as-maintained" BOM tracks what is on the vehicle now, after service and recalls.

When the catalog links a VIN to the wrong BOM, or to a BOM missing the tow package, the wrong caliper gets shipped.

The parts master: your single source of truth

The parts master is the central table describing every part number: its description, supersessions (when part A is replaced by part B), fitment (which vehicles it fits), and cross-references to competitor numbers.

If the parts master is dirty, everything downstream is dirty: the e-commerce catalog, the dealer ordering system, the warehouse pick lists.

Three data qualitydata qualityThe degree to which data is fit for purpose: accurate, complete, consistent, timely, valid and unique. Poor quality data undermines analytics, reporting and AI.View full definition → dimensions govern it: completeness, accuracy, and consistency. Let us define and measure each with an automotive example.

Completeness: are the fields populated?

Completeness is the percentage of required fields that actually contain a value.

Take a fitment table with 500,000 part-to-vehicle rows. Each row should have: part number, year, make, model, engine, and trim qualifier. Suppose 60,000 rows are missing the trim qualifier (the field that would have flagged the tow package).

Worked calculation:

Completeness = (populated rows / total rows) × 100
Completeness = (500,000 - 60,000) / 500,000 × 100
Completeness = 88%

An 88% completeness score on a fitment-critical field is dangerous. Those 60,000 rows are exactly where wrong-part shipments hide. Industry practitioners often target 98%+ on safety-critical and fitment-critical fields (this is a common internal benchmark, not a regulated figure, as of 2026).

Completeness is cheap to measure and the first thing to check. Missing data is easier to spot than wrong data.

Accuracy: is the value correct?

Accuracy is whether the stored value matches reality. A field can be 100% complete and still 100% wrong.

Example: a part number is coded as fitting the "2019 F-150 3.5L EcoBoost" when it actually fits only the 5.0L V8. The field is populated (complete) but false (inaccurate).

Accuracy is harder to measure because you need a trusted reference to compare against. Options:

  • Compare catalog fitment to the manufacturer's official as-built data.
  • Compare against a validated third-party standard.
  • Use return data: parts with high return-for-fitment rates flag likely accuracy errors.

A practical proxy metric: fitment error rate = wrong-part returns attributed to catalog error / total shipments. If a distributor ships 2,000,000 parts a year and 24,000 come back tagged "does not fit, catalog error," the fitment error rate is 1.2%. Reducing that by even 0.3 points removes 6,000 painful returns.

For standardized parts data, many suppliers in North America use the Auto Care Association's ACES and PIES standards, which define common formats for fitment (ACES) and product content (PIES). Conforming to a standard does not guarantee accuracy, but it removes an entire class of translation errors.

Consistency: does the data agree with itself?

Consistency is whether the same fact is represented the same way everywhere.

Automotive data is riddled with inconsistency:

  • The engine is "3.5L EcoBoost" in one system, "3.5 EB" in another, "V6 Twin-Turbo 3.5" in a third.
  • A supersession chain says part A replaces B, while another table says B replaces A (a loop).
  • The e-commerce site shows the part in stock; the warehouse system shows it discontinued.

Consistency is measured as the percentage of records that match across systems, or the count of conflicting records.

Example check for supersession loops in a parts master:

sql
-- Find part numbers that supersede each other (a bad loop)
SELECT a.old_part, a.new_part
FROM supersessions a
JOIN supersessions b
  ON a.old_part = b.new_part
 AND a.new_part = b.old_part;

Any rows returned are contradictions that will send an ordering system into confusion. A healthy parts master returns zero.

🎬 [VIDEO: "What is Master Data ManagementMaster Data ManagementMaster Data Management (MDM) is the discipline of creating and maintaining a single, consistent, trusted version of an organization's core business entities like customers, products, and suppliers.View full definition →?" — youtube.com — a short, plain-language explainer on why a single source of truth matters for product and parts data]

Governance: who owns the fix?

Metrics only help if someone owns them. Data governanceData governanceData governance is the set of policies, roles, and processes that ensure data is accurate, secure, well-defined, and used responsibly across an organization.View full definition → is the set of roles, rules, and processes that keep data trustworthy.

In a parts operation this usually means:

  • A data stewarddata stewardA business-side owner responsible for the quality, consistency and appropriate use of data in their domain.View full definition → owns the parts master and signs off on new part numbers.
  • Validation rules run at data entry (for example, no fitment row saved without a trim qualifier).
  • A golden record policy decides which system wins when two disagree (often the manufacturer as-built feed).

Without governance, completeness drifts down every quarter as staff paste in quick fixes. With governance, the 88% completeness above becomes a tracked KPIKPIKey Performance Indicator, a measurable value that shows how effectively you're achieving a specific objective, tracked over time against a target.View full definition → with an owner and a target.

Knowledge check

1. A brake pad ordered for a specific truck does not fit because the vehicle had an optional tow package that changed the caliper. What does this scenario most directly illustrate about VIN decoding?

2. Why does a wrong-part shipment represent a data quality problem rather than simply a logistics problem?

3. What is the key conceptual difference between an 'as-built' BOM and an 'as-maintained' BOM?

MULTIPLE CHOICE

4. Select ALL correct answers about why wrong-part shipments are costly to a business.

Select all the correct answers.

MULTIPLE CHOICE

5. Select ALL correct answers about the roles of the VIN and the BOM in determining whether a part fits.

Select all the correct answers.

Putting it together: a parts master scorecard

Here is a simple monthly scorecard a distributor might run. All figures below are illustrative examples, not measured industry values.

| Dimension | Metric | Result | Target |

|-----------|--------|--------|--------|

| Completeness | Trim qualifier populated | 88% | 98% |

| Accuracy | Fitment error rate (returns) | 1.2% | under 0.8% |

| Consistency | Supersession loops | 14 loops | 0 |

| Consistency | Engine name standardized | 91% | 99% |

Read it top to bottom and the story is clear: the biggest fitment risk is the missing trim data, and the supersession loops are actively breaking orders. That is where the steward spends this month.

Notice what this scorecard does NOT include: no revenue, no margin, no return on equity. Data qualityData qualityThe degree to which data is fit for purpose: accurate, complete, consistent, timely, valid and unique. Poor quality data undermines analytics, reporting and AI.View full definition → is measured in data terms. The financial impact (fewer returns, higher first-time-fit rate) follows, but the metrics themselves stay in the data discipline.

A note on scale and regions

Vehicle complexity keeps rising, which raises the stakes. A modern vehicle can have tens of thousands of individual parts, and option combinations push the number of possible build configurations very high. The exact counts vary by model and are hard to verify, so treat any single figure with caution.

Both US and European parts operations face the same core problem, but the reference data differs. In the US, the NHTSA VIN decoder and Auto Care ACES/PIES standards dominate. In Europe, the standard equivalent for aftermarket cataloging is TecDoc, maintained by TecAlliance, widely used across European distributors as of 2026. Same discipline, different authoritative sources.

Key Takeaways

  • Wrong-part shipments are a data problem before they are a logistics problem. The failure usually lives in the VIN-to-BOM link or a missing fitment qualifier.
  • Measure three dimensions separately. Completeness (is it filled in), accuracy (is it correct), and consistency (does it agree with itself) fail in different ways and need different checks.
  • Complete does not mean accurate. A 100% populated fitment field can still be 100% wrong. Use return data as a proxy for accuracy.
  • Use industry standards to kill translation errors. ACES/PIES in North America and TecDoc in Europe remove whole categories of inconsistency.
  • Metrics need an owner. A data stewarddata stewardA business-side owner responsible for the quality, consistency and appropriate use of data in their domain.View full definition →, entry-time validation rules, and a golden-record policy turn a one-time cleanup into a stable quality score.

Previous

The core datasets: sales, registrations, and the parc

Next

Governance and lineage across the OEM-supplier-dealer chain