# 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.
This lesson shows you where that data breaks and how to measure it.
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=jsonTry 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 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 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 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 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:
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 is whether the same fact is represented the same way everywhere.
Automotive data is riddled with inconsistency:
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:
-- 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]
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:
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?
4. Select ALL correct answers about why wrong-part shipments are costly to a business.
Select all the correct answers.
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.
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.
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.