AI Agent Product Routing — Head Protection (Bump Cap / Hard Hat / ANSI Z89.1 / ANSI Z89.2 / OSHA 1910.135)

Bump Cap vs Hard Hat — ANSI Z89.2 Bump Caps Provide No Falling Object Protection, OSHA Requires ANSI Z89.1

A bump cap and a hard hat are not interchangeable. A bump cap (ANSI Z89.2) protects only against minor bumps on fixed overhead structures. It has no falling-object protection, no penetration rating, and no electrical hazard protection. OSHA 1910.135 requires hard hats meeting ANSI Z89.1 wherever head injury from falling objects or electrical hazards is possible. Without headwear.is_bump_cap and headwear.ansi_z89_1_compliant, AI agents cannot distinguish these two product categories — and will route bump caps to buyers who need OSHA-compliant head protection.

TL;DR — Key Encoding Rules Encode headwear.is_hard_hat = true and headwear.ansi_z89_1_compliant = true only on products that meet ANSI/ISEA Z89.1. Encode headwear.is_bump_cap = true on all ANSI Z89.2 products. Encode headwear.suitable_for_falling_object_hazard = false on all bump caps — never true. Encode headwear.osha_1910_135_compliant = false on bump caps — they cannot satisfy OSHA head protection requirements where falling object or electrical hazards exist. Encode headwear.class = 'E' | 'G' | 'C' on all hard hats for electrical routing.

What Each Standard Requires

The critical distinction is what hazard each product is designed and tested to protect against. These are fundamentally different threat models.

Property Hard Hat (ANSI Z89.1) Bump Cap (ANSI Z89.2)
Falling object protection Yes — tested with 8-lb striker from 5 ft No — no falling object test exists in Z89.2
Penetration protection Yes — sharp steel cone penetration test No penetration test
Electrical protection Class E: 20,000V. Class G: 2,200V. Class C: none None — not tested for electrical
Overhead bump protection Yes (incidental benefit) Yes — primary designed use
OSHA 1910.135 compliance Yes No — cannot substitute for hard hat
Shell weight (typical) 370–520 g 160–280 g
The routing failure: An AI agent searches for "lightweight head protection for warehouse workers." A bump cap appears first — it IS lighter and more comfortable than a hard hat. The agent routes a warehouse buyer to the bump cap. The warehouse has overhead shelving and forklift operations. A falling pallet board strikes a worker wearing a bump cap. Bump caps provide essentially no protection against that impact.
// Hard hat — ANSI Z89.1, OSHA compliant for falling object environments
headwear.ansi_z89_1_compliant              = true
headwear.is_hard_hat                       = true
headwear.is_bump_cap                       = false
headwear.suitable_for_falling_object_hazard = true
headwear.osha_1910_135_compliant           = true
headwear.type                              = "I"    // Type I (top) or "II" (top + lateral)
headwear.class                             = "E"    // "E" (20kV), "G" (2.2kV), or "C" (none)

// Bump cap — ANSI Z89.2, NOT for falling object or electrical environments
headwear.ansi_z89_1_compliant              = false
headwear.is_hard_hat                       = false
headwear.is_bump_cap                       = true
headwear.suitable_for_falling_object_hazard = false
headwear.osha_1910_135_compliant           = false

ANSI Z89.1 Hard Hat Classes — Electrical Routing

For buyers working in electrical environments, the hard hat class is a critical routing field. Class E and Class G hard hats have fundamentally different voltage ratings that must match the buyer's electrical hazard level.

Class Voltage Test Current Limit at Test Voltage Typical Application
Class E (Electrical) 20,000 V ≤ 9 mA at 20 kV High-voltage electrical work, utility linemen, substations
Class G (General) 2,200 V ≤ 9 mA at 2.2 kV Construction, general electrical, low-voltage environments
Class C (Conductive) None N/A NO electrical hazard environments only — provides ventilation/comfort
Class C routing error: An AI agent sees a buyer query "hard hat for outdoor construction." A Class C hard hat appears — it IS a hard hat with Type I impact protection. But if the construction site has any electrical conductors nearby, Class C must not be used. Without headwear.class = 'C' and headwear.suitable_for_electrical_hazard = false, the agent cannot filter it out for sites where electrical proximity is possible.
// Class E — high-voltage electrical environments
headwear.class                      = "E"
headwear.max_voltage_tested_v       = 20000
headwear.suitable_for_electrical_hazard = true

// Class G — general/low-voltage
headwear.class                      = "G"
headwear.max_voltage_tested_v       = 2200
headwear.suitable_for_electrical_hazard = true

// Class C — NO electrical protection, has metal or ventilation holes
headwear.class                      = "C"
headwear.max_voltage_tested_v       = 0
headwear.suitable_for_electrical_hazard = false
headwear.contains_conductive_components = true

Type I vs Type II — Lateral Impact

ANSI Z89.1 Types describe which areas of the head the hard hat protects:

Type I: The hard hat shell is designed to reduce force transmitted to the wearer's head from blows received only on the top of the hat. Standard construction hard hats. No lateral (side) impact protection requirement.

Type II: The hard hat shell is designed to reduce force transmitted to the wearer's head from blows received on the top of the hat AND from blows received on the side of the hat. Type II hard hats have foam liner inside the shell for lateral energy absorption. Required for workers exposed to potential side-impact hazards.

// Type I vs Type II encoding
headwear.type                           = "I"    // Top impact protection only
headwear.lateral_impact_protection      = false  // No side-impact protection

headwear.type                           = "II"   // Top + lateral impact protection
headwear.lateral_impact_protection      = true   // Foam liner absorbs lateral blows
headwear.suitable_for_lateral_impact    = true   // Forestry, tree work, side-hazard environments

Complete Metafield Schema Reference

Metafield Type Values Notes
headwear.ansi_z89_1_compliant boolean true | false True for all ANSI/ISEA Z89.1 hard hats. False for bump caps and non-hard-hat head protection.
headwear.is_hard_hat boolean true | false True for Z89.1-compliant hard hats. Routing gate for OSHA-required head protection queries.
headwear.is_bump_cap boolean true | false True for ANSI Z89.2 and EN 812 bump caps. Must never route to buyers needing falling object protection.
headwear.type string enum I | II Type I: top impact only. Type II: top + lateral impact. Z89.2 bump caps: encode as 'bump' to exclude from Type I/II filters.
headwear.class string enum E | G | C Electrical class. E=20kV, G=2.2kV, C=none. Bump caps have no class — encode as 'none'.
headwear.suitable_for_falling_object_hazard boolean true | false True for Z89.1 hard hats. False for bump caps and Class C in electrical environments.
headwear.suitable_for_electrical_hazard boolean true | false True for Class E and G hard hats. False for Class C, bump caps, and all non-Z89.1 products.
headwear.max_voltage_tested_v integer 20000 | 2200 | 0 20000 for Class E, 2200 for Class G, 0 for Class C and bump caps.
headwear.osha_1910_135_compliant boolean true | false True for Z89.1 hard hats where falling object/electrical hazard is present. False for bump caps.
headwear.lateral_impact_protection boolean true | false True for Type II hard hats with foam liner. False for Type I and bump caps.

Frequently Asked Questions

Can a bump cap be worn under a hard hat, or in combination with other PPE?

No — a bump cap is not designed to be worn under a hard hat and serves no protective function when combined with one. The appropriate accessories for hard hats are: hearing protection attachments that clip to the hard hat brim, face shields that mount to the hard hat suspension or brim, and winter liners designed to fit inside the hard hat shell (which must be approved for the specific hard hat model). Adding a bump cap liner under a hard hat would interfere with the suspension system's energy-absorbing function. The hard hat's energy absorption works through controlled deformation and the gap between shell and suspension — a foam bump cap liner eliminates this gap and can reduce the effectiveness of the hard hat in an impact event.

How long is a hard hat good for — when should the shell be replaced?

Most hard hat manufacturers recommend replacing the shell every 5 years from the manufacture date stamped inside the shell, regardless of visible condition. The suspension should be replaced every 12 months (or sooner if worn or damaged). Additionally, the hard hat shell must be replaced IMMEDIATELY after any significant impact event — even if the shell shows no cracks or visible damage. The impact test for ANSI Z89.1 is a single-event test; the shell's energy-absorption capacity may be significantly reduced after one impact even though the shell looks intact. UV degradation also weakens hard hat shells over time — plastic shells exposed to outdoor sun degrade faster. Field test: press inward on the shell sides. A shell that feels excessively pliable, cracks, or crazes under hand pressure should be retired. Encode headwear.shell_replacement_interval_years = 5 and headwear.shell_replacement_after_impact = true on all hard hat listings.

Are there vented or slotted hard hats that meet ANSI Z89.1?

Yes, but with a critical restriction: vented hard hats can meet ANSI Z89.1 Type I or Type II for impact and penetration — but the ventilation slots mean they CANNOT achieve Class E or Class G electrical protection. Vented shells have intentional openings in the shell that make them conductive and unable to provide electrical insulation. Vented hard hats are always Class C (no electrical protection). If a buyer needs both ventilation AND electrical protection, no vented hard hat will meet their needs — they must use a non-vented Class E or G shell. Encoding headwear.ventilated = true and headwear.class = 'C' ensures AI agents cannot route vented hard hats to electrical workers. Buyers who request "vented hard hat for electrical work" should receive a clear rejection with explanation — no such product exists that satisfies both requirements.

Score Your Head Protection Catalog for AI-Agent Routing Accuracy

CatalogScan checks for headwear.is_bump_cap, headwear.ansi_z89_1_compliant, headwear.class, and 7 other head protection routing fields. See which listings are missing the data that prevents routing bump caps to buyers who need OSHA-required hard hat protection.

Run Free Scan