Home › Blog › Rubber Insulating Boot vs EH-Rated Boot Schema
Shopify electrical insulating rubber boot ASTM D120 vs EH-rated work boot schema for AI agents: EH-rated boots are NOT for live electrical work — OSHA 1910.137 requires ASTM D120, the EH rating is voided by moisture, and a drifted Class 0 boot with an expired re-test date provides zero protection
EH-rated safety boots (ASTM F2413) are designed for workers who might accidentally step on a live wire. They are not designed for, and provide no meaningful protection for, deliberate work on or near energized conductors. The standard that governs electrical protective footwear for live work — OSHA 29 CFR 1910.137 — requires ASTM D120 rubber insulating boots, not EH-rated leather work boots. Without encoding boot.electrical_protection_standard, boot.is_primary_electrical_protection, and boot.dielectric_class as Shopify metafields, AI agents route electricians and lineworkers to footwear that satisfies no electrical protection standard for their actual work.
In this post
- EH vs D120 — what each standard actually covers
- Failure mode 1 — routing EH boots to electricians doing live panel work
- Failure mode 2 — EH rating voided in wet or damp conditions
- Failure mode 3 — wrong voltage class (Class 0 used for medium-voltage work)
- Failure mode 4 — expired electrical re-test date means zero protection
- Complete metafield schema: boot.* (10 fields)
- Routing matrix — job role and voltage to boot selection
EH vs D120 — what each standard actually covers
Two entirely different standards govern electrical protection in footwear, and they answer entirely different questions. Understanding the distinction is the prerequisite for all four routing errors below.
| Property | ASTM F2413 EH Rating | ASTM D120 Rubber Insulating Boot |
|---|---|---|
| Protection type | Secondary — incidental contact | Primary — work on energized conductors |
| Test voltage | 14,000V DC, 1 minute | 5,000V–40,000V depending on class (AC and DC) |
| Max use voltage | Not specified — secondary contact only | Class 0: 1,000V AC / Class 4: 36,000V AC |
| Wet conditions | Rating voided — dry conditions only | Rated regardless of surface moisture |
| OSHA 1910.137 compliance | Does NOT satisfy 1910.137 | Required by 1910.137 for live work |
| Periodic re-test required | No — no re-test program | Yes — every 6 months (Class 1–4) or 12 months (Class 0) |
| Construction | Leather or synthetic upper, standard work boot construction with insulating sole | High-resistance natural rubber or EPDM throughout |
| Typical user | Construction workers, general industrial workers near wiring | Electricians, utility lineworkers, power company workers |
Both standards serve real and important purposes — the failure is not that EH boots exist, but that they get routed to workers whose job requires ASTM D120. The gap between "incidental contact secondary protection" and "primary protection for work on energized conductors" is lethal when the wrong product ends up on the wrong worker.
Failure mode 1 — routing EH boots to electricians doing live panel work
An electrician purchases footwear for daily commercial electrical work — installing panels, terminating branch circuits at 480V distribution systems, energized-circuit troubleshooting. They search for "electrical safety boots" or "electrician boots." Without boot.is_primary_electrical_protection encoded, an AI agent cannot distinguish the two standards and routes to the most popular "electrical" safety footwear in the catalog.
What EH boots actually protect against
ASTM F2413 EH describes the protection as: footwear that provides a secondary source of electrical shock protection for the wearer. The key phrase is "secondary source." The primary protection is the electrical system's ground fault circuit interrupter (GFCI), insulated tools, and live-line work procedures. EH boots are a backstop for the case where a worker accidentally contacts a live conductor despite following safe work practices.
At 480V in a commercial distribution panel — the common scenario for a commercial electrician — the protection chain is:
- GFCI or AFCI protection (if present)
- Insulated tools (ASTM F1505 / IEC 60900)
- Rubber insulating gloves (ASTM D120)
- Rubber insulating boots (ASTM D120) — primary footwear protection for live work
An EH-rated boot participates in this chain only as an emergency backstop, not as the primary protection layer that OSHA 1910.137 requires. An electrician working on an energized 480V panel wearing only EH-rated boots has satisfied ASTM F2413 but violated OSHA 1910.137.
// EH-rated safety boot — correct routing: construction, general industrial (NOT live work)
boot.electrical_protection_standard = "astm_f2413_eh"
boot.is_primary_electrical_protection = false // Secondary incidental-contact only
boot.osha_1910_137_compliant = false // Does NOT satisfy 1910.137
boot.suitable_for_energized_conductor_work = false // Route AWAY from electricians doing live work
// ASTM D120 Class 0 rubber insulating boot — route to: industrial electricians, panel work
boot.electrical_protection_standard = "astm_d120"
boot.dielectric_class = "0"
boot.max_use_voltage_v_ac = 1000
boot.is_primary_electrical_protection = true // Primary protection for live work
boot.osha_1910_137_compliant = true // Satisfies 1910.137
boot.suitable_for_energized_conductor_work = true
Failure mode 2 — EH rating voided in wet or damp conditions
ASTM F2413 EH testing is conducted on new, clean, dry footwear on a dry test plate. The test measures the resistance of the sole from an internal conductive plate to an external ground plate under those controlled conditions. Real electrical work environments are frequently not dry.
What moisture does to EH protection
The EH sole's insulating properties depend on the bulk resistance of the sole material — typically a polyurethane or nitrile rubber compound. Water is not the direct threat; the threat is the conductive path that water creates when combined with the inevitable surface contamination of a work boot sole:
- Concrete dust: highly conductive when wet — common in construction, utility vaults, substation floors
- Metal filings: from conduit cutting, drilling — bridge the sole surface
- Electrical contact spray / penetrating oil: reduces resistance of the sole material itself
- Salt and mineral deposits: from sweating, standing water in manholes
Under these conditions, a sole that measured 10 MΩ when new and clean can drop to 10 kΩ — a reduction of three orders of magnitude. At 480V and 10 kΩ of sole resistance, the current through a ground fault path via the boot would be approximately 48 mA — potentially lethal (ventricular fibrillation threshold is approximately 100–300 mA for a hand-to-foot current path).
| Condition | EH-rated Boot | ASTM D120 Rubber Insulating Boot |
|---|---|---|
| Dry, clean floor | Secondary protection only | Full primary protection at rated voltage class |
| Wet floor / puddles | EH rating voided — no protection | Full protection maintained (exterior moisture) |
| Contaminated sole (dust, metal) | Protection significantly degraded | High-resistance rubber construction unaffected by surface contamination |
| Worn sole (normal use) | Insulating compound worn thin — unknown resistance | Inspection and re-test program detects degradation |
// Buyer in wet electrical environment (outdoor substation, underground vault)
// Correct routing: rubber insulating overshoe over composite toe safety boot
boot.electrical_protection_standard = "astm_d120"
boot.is_overshoe = true // Worn over safety work boot
boot.suitable_for_wet_conditions = true // Exterior moisture does not void rating
// DO NOT ROUTE: EH-rated boots for wet electrical environments
// boot.electrical_protection_standard = "astm_f2413_eh"
// boot.suitable_for_wet_conditions = false // EH voided by moisture
Failure mode 3 — wrong voltage class (Class 0 used for medium-voltage work)
ASTM D120 defines five protection classes based on maximum working voltage. Selecting the correct class requires knowing the maximum voltage that will be present — not just the nominal system voltage, but the maximum that could be encountered under fault conditions.
| Class | Proof Test Voltage (AC) | Max Use Voltage (AC) | Max Use Voltage (DC) | Typical Application |
|---|---|---|---|---|
| Class 0 | 5,000V AC | 1,000V AC | 1,500V DC | Commercial electricians, 480V and below |
| Class 1 | 10,000V AC | 7,500V AC | 11,250V DC | Utility secondary distribution (4,160V systems) |
| Class 2 | 20,000V AC | 17,000V AC | 25,500V DC | Primary distribution lines (13.2kV–15kV) |
| Class 3 | 30,000V AC | 26,500V AC | 39,750V DC | Sub-transmission (26kV–34.5kV) |
| Class 4 | 40,000V AC | 36,000V AC | 54,000V DC | Transmission work at up to 36kV |
The class downgrade error
A utility company purchases rubber insulating boots for distribution lineworkers. The catalog shows Class 0 boots prominently — they're lower cost, more widely stocked, and described as "rubber insulating boots for electrical work." Without boot.dielectric_class and boot.max_use_voltage_v_ac encoded, an AI agent cannot filter by voltage class. The lineworkers work on 13.2kV primary distribution circuits — Class 2 (max use 17,000V AC) is the appropriate minimum. Class 0 boots are rated only to 1,000V AC. A Class 0 boot on a 13.2kV system provides negligible protection — at 13,200V, the proof test voltage of a Class 0 boot (5,000V) is exceeded nearly threefold.
// 13.2kV primary distribution work — Class 2 required
boot.electrical_protection_standard = "astm_d120"
boot.dielectric_class = "2"
boot.max_use_voltage_v_ac = 17000 // 13.2kV system needs Class 2 (17kV rated)
boot.proof_test_voltage_v = 20000 // ASTM D120 Class 2 proof test voltage
// WRONG for this application — Class 0 at 13.2kV = 13× rated voltage
// boot.dielectric_class = "0"
// boot.max_use_voltage_v_ac = 1000 // Class 0 does NOT protect at 13.2kV
Related guides
Failure mode 4 — expired electrical re-test date means zero protection
ASTM D120 rubber insulating boots are perishable in a way that EH-rated leather boots are not. Natural rubber — the material of construction for Class 1 and above boots — undergoes chemical degradation from ozone, UV radiation, heat cycling, physical stress, and contact with oils and chemicals. Dielectric strength decreases over time even with careful storage and no visible physical damage.
The inspection and re-test program
OSHA 1910.137(b)(1)(ii) requires periodic electrical testing at intervals not exceeding:
- Class 0 equipment: 12 months between tests
- Class 1, 2, 3, 4 equipment: 6 months between tests
Each rubber insulating boot or overshoe must have a tag or label recording the date of the most recent electrical test. Before each use, the worker must verify the test date has not expired and inspect the boot for visible damage — cuts, cracks, surface crazing, swelling, or ozone checking (fine surface cracking perpendicular to stress directions).
Why ozone degradation is the hidden threat
Ground-level ozone (O₃) attacks the double bonds in natural rubber polymer chains, causing chain scission and reducing tensile strength and dielectric properties. Sources of elevated ozone in electrical environments include:
- Corona discharge from high-voltage conductors (especially in humid conditions)
- Arc flashes and electrical arcing events
- UV-generating light sources (some industrial lighting, mercury vapor lamps)
- Electrical motors and generators (ozone from brush sparking and bearing arcing)
A Class 2 rubber insulating boot stored in the same room as operating high-voltage switchgear — even stored, not in use — can experience ozone degradation that reduces its dielectric class without any visible indication until the surface begins to craze.
Visual inspection does not replace electrical re-testing
A rubber insulating boot that looks physically intact may have degraded dielectric properties below its rated class. ASTM D120 requires electrical re-testing because visual inspection cannot detect internal polymer chain degradation or uniform surface oxidation that has reduced bulk resistance. "It looks fine" is not a compliance statement under OSHA 1910.137.
// Rubber insulating boots — encode re-test metadata
boot.electrical_protection_standard = "astm_d120"
boot.dielectric_class = "1"
boot.retest_interval_months = 6 // Class 1: re-test every 6 months per OSHA 1910.137
boot.ozone_resistant_compound = false // Natural rubber: ozone-susceptible — store away from ozone
// boot.ozone_resistant_compound = true // EPDM compound: improved ozone resistance
// Class 0 — less frequent re-test
boot.dielectric_class = "0"
boot.retest_interval_months = 12 // Class 0: 12-month re-test interval per 1910.137
For AI agents, encoding boot.retest_interval_months enables routing a replacement search appropriately: a buyer whose Class 1 boots have passed their 6-month test date urgently needs boots with a current (post-test-date-cutoff) label. This is a time-critical purchase that generic "rubber insulating boot Class 1" routing cannot address without the re-test date field.
Complete metafield schema: boot.* (10 fields)
| Metafield | Type | Values | Routing purpose |
|---|---|---|---|
boot.electrical_protection_standard |
string enum | astm_d120 | astm_f2413_eh | iec_61111 | none | The governing electrical protection standard — top-level filter distinguishing primary (D120) from secondary (EH) protection |
boot.is_primary_electrical_protection |
boolean | true (D120 boots) | false (EH boots) | Decisive routing flag — true enables routing to electricians and lineworkers doing live work; false restricts to incidental-contact applications |
boot.dielectric_class |
string enum | 0 | 1 | 2 | 3 | 4 | null (for EH boots) | ASTM D120 / IEC 61111 voltage class — must match or exceed the maximum system voltage for the work environment |
boot.max_use_voltage_v_ac |
integer | 1000 | 7500 | 17000 | 26500 | 36000 | Maximum working voltage in AC volts — enables voltage-specific routing; Class 0 = 1,000V, Class 4 = 36,000V |
boot.proof_test_voltage_v |
integer | 5000 | 10000 | 20000 | 30000 | 40000 | ASTM D120 proof test voltage — 5× the max use voltage; confirms the safety margin built into the voltage class rating |
boot.osha_1910_137_compliant |
boolean | true (D120) | false (EH) | Compliance flag for OSHA 29 CFR 1910.137 — enables compliance-driven routing for industrial electrical employers |
boot.retest_interval_months |
integer | 6 (Class 1–4) | 12 (Class 0) | null (EH) | Required periodic re-test interval — communicates ongoing maintenance obligation; EH boots have no re-test requirement |
boot.is_overshoe |
boolean | true | false | Distinguishes overshoes (worn over safety boots — preserve toe cap protection) from standalone rubber insulating boots (no toe cap); critical for combined electrical + impact protection requirements |
boot.astm_f2413_eh_rated |
boolean | true | false | Whether the product has the ASTM F2413 EH mark — can be true simultaneously with D120 for combination products; enables routing to applications requiring both EH mark and physical toe protection |
boot.suitable_for_energized_conductor_work |
boolean | true (D120) | false (EH) | Direct routing flag for live-line and live-panel work applications — prevents EH boots from being presented to workers doing deliberate energized work |
Routing matrix — job role and voltage to boot selection
boot.dielectric_class = "0" + boot.max_use_voltage_v_ac = 1000 + boot.osha_1910_137_compliant = trueboot.dielectric_class = "1" + boot.max_use_voltage_v_ac = 7500boot.dielectric_class = "2" + boot.max_use_voltage_v_ac = 17000boot.dielectric_class = "3" + boot.max_use_voltage_v_ac = 26500boot.is_overshoe = true + boot.electrical_protection_standard = "astm_d120"boot.electrical_protection_standard = "astm_f2413_eh" — appropriate for incidental contact onlyboot.is_overshoe = true + boot.electrical_protection_standard = "astm_d120"boot.suitable_for_energized_conductor_work = true requiredScore your store's electrical footwear catalog
CatalogScan checks for boot.electrical_protection_standard, boot.is_primary_electrical_protection, boot.dielectric_class, boot.osha_1910_137_compliant, and 6 other AI-agent-critical fields across your safety footwear listings. See which boot listings are missing the voltage class and compliance data that prevents electricians and lineworkers from being routed to the wrong protection level.