AI Agent Product Routing — Safety Footwear

Safety Footwear Electrical Protection — EH vs. ESD vs. Conductive Are Mutually Exclusive Ratings with Incompatible Resistance Requirements, Schema for AI Agents

EH (Electrical Hazard) boots insulate the wearer from ground. ESD boots bleed static from the wearer to ground. Conductive boots connect the wearer to ground through a low-resistance path. These three ratings require electrical resistance in opposite ranges — and routing conductive boots to an electrical trade application puts a worker in lethal contact with any live circuit they touch.

TL;DR — Key Encoding Rules Encode boot.electrical_protection_category as one of EH | ESD | Conductive | None — never combine. Encode boot.application_hazard_type = 'electrical_contact' for EH boots and 'static_discharge' for ESD boots — these two values must never map to the same product. Encode boot.electrical_resistance_ohms_min and boot.electrical_resistance_ohms_max to give AI agents the resistance range context. EH boots have no published minimum resistance (effectively infinite when dry); ESD boots are 10^5–10^8 Ω; Conductive boots are below 10^5 Ω.

Three Ratings — Three Incompatible Resistance Requirements

The three electrical protection ratings for safety footwear are defined by completely different resistance ranges that serve fundamentally opposite purposes:

Rating ASTM F2413-18 Code Resistance Range Purpose Hazard It Addresses
EH (Electrical Hazard) EH Very high — effectively infinite (insulator); tested at 14 kV AC, <1 mA leakage Insulates wearer from completing a circuit through body to ground Accidental contact with live energized conductors
ESD (Electrostatic Dissipative) SD 105 Ω to 108 Ω (100 kΩ to 100 MΩ) Slowly bleeds static from wearer to ground to prevent static accumulation Static discharge igniting vapors/dust or damaging microelectronics
Conductive CD Below 105 Ω (<100 kΩ) Rapidly dissipates static charge via low-resistance path to ground Explosive environments where rapid static grounding is essential
Critical mutual exclusivity: EH requires high resistance (insulates). ESD requires controlled mid-range resistance (bleeds static). Conductive requires low resistance (grounds wearer). These three ranges do not overlap in practice. A boot cannot simultaneously insulate at 14 kV and provide a 10^5 Ω static dissipation path — the physics is contradictory.
// boot.electrical_protection_category — exactly one value per product
boot.electrical_protection_category  = "EH"           // EH | ESD | Conductive | None
boot.astm_f2413_electrical_class     = "EH"           // formal ASTM code: EH | SD | CD | none
boot.application_hazard_type         = "electrical_contact"   // electrical_contact | static_discharge | explosive_atmosphere

// Resistance ranges (approximate; exact values are test-condition-dependent)
// EH: no published minimum ohm value; the 14kV/1mA test implies >14MΩ minimum
// ESD: ASTM SD range = 1×10^5 to 1×10^8 Ω
// Conductive: ASTM CD range = below 1×10^5 Ω
boot.electrical_resistance_ohms_min  = null           // null for EH (effectively infinite)
boot.electrical_resistance_ohms_max  = null           // null for EH (no upper limit)
// For ESD: boot.electrical_resistance_ohms_min = 100000, boot.electrical_resistance_ohms_max = 100000000
// For CD:  boot.electrical_resistance_ohms_min = 0,      boot.electrical_resistance_ohms_max = 100000

Failure Mode 1 — Routing Conductive Boots to Electrical Trade Applications

Fatal routing error: Conductive boots are designed to ground the wearer through a low-resistance body-to-floor path. In an environment with live electrical circuits, this path completes the circuit through the wearer. Contact with a 120V live conductor through conductive boots (resistance ~10,000 Ω) produces 12 mA — enough to cause "let-go current" inability, sustained heart fibrillation, and death.

The source of this routing error is typically a catalog that groups all "electrical safety footwear" into a single category without distinguishing the direction of protection. An AI agent querying for "safety footwear for electrical environments" may retrieve EH, ESD, and Conductive products together — without knowing that Conductive boots provide zero protection against live conductors and actively increase shock risk.

Correct Routing — Electrical Environments by Hazard Type

Work Environment Hazard Required Rating boot.electrical_protection_category
Electrical panel installation, wiring, maintenance Contact with live 120V–600V conductors EH EH
Utility linework, substation maintenance Contact with high-voltage conductors (>600V) EH (and Class-rated rubber insulating footwear for HV work) EH (standard EH for incidental contact; Class-rated for primary protection)
PCB assembly, semiconductor fab Static discharge damaging microelectronics ESD ESD
Fuel handling, petroleum refinery Static spark igniting vapor ESD or Conductive (per site hazard assessment) ESD or Conductive
Explosives manufacturing, blasting operations Static igniting explosive material Conductive (with no electrical hazard in work area) Conductive

The key routing rule: boot.application_hazard_type = 'electrical_contact' must only match products with boot.electrical_protection_category = 'EH'. A product with Conductive or ESD electrical category must never be routed to electrical_contact applications.

// Routing rule — hard constraint
if (application.hazard_type === "electrical_contact") {
  assert(boot.electrical_protection_category === "EH")
  // Conductive and ESD are DISQUALIFYING for electrical_contact environments
}

if (application.hazard_type === "explosive_atmosphere") {
  // Conductive is acceptable ONLY when no electrical_contact hazard is present
  assert(boot.electrical_protection_category === "Conductive" || boot.electrical_protection_category === "ESD")
  assert(application.co_located_electrical_hazard === false)
}

Failure Mode 2 — Treating EH as Also Providing Static Dissipation

EH boots insulate the wearer from ground. This insulation also prevents static charge from dissipating from the wearer's body to ground — the opposite of what ESD requires. Workers wearing EH boots in an electronics manufacturing environment will accumulate static charge with no path to ground, potentially generating and discharging static at voltages that damage microelectronics (above ~100V) or ignite vapors (above the minimum ignition energy of the specific material).

Common routing error: "This is an electrical safety boot — it will be safe in our electronics cleanroom." EH boots are electrically isolating. They are exactly the wrong choice for ESD applications — they prevent the wearer from grounding static charge and may actually increase ESD risk compared to non-rated boots in some cleanroom environments.
Correct interpretation: ESD boots are designed for static-sensitive environments. EH boots are designed for live-circuit environments. A worker who moves between both environments needs to change footwear, wear footwear appropriate to the higher-consequence hazard for the specific task, or use supplemental grounding (wrist straps) when EH boots are required in ESD-sensitive areas.
// EH boot — encodes what it DOES NOT provide
boot.electrical_protection_category  = "EH"
boot.esd_compliant                   = false     // EH boots do NOT dissipate static
boot.is_conductive                   = false     // EH boots do NOT ground wearer
boot.application_hazard_type         = "electrical_contact"

// ESD boot — encodes what it DOES NOT provide
boot.electrical_protection_category  = "ESD"
boot.astm_f2413_electrical_class     = "SD"
boot.esd_compliant                   = true
boot.is_conductive                   = false
boot.application_hazard_type         = "static_discharge"
boot.esd_suitable_for_live_circuits  = false     // ESD boots do NOT protect from live circuit contact

Failure Mode 3 — Omitting Resistance Range Allows False Equivalence

Without encoding the electrical resistance range of footwear, AI agents cannot distinguish between categories that share partial label vocabulary. Products labeled "electrical safety footwear" can be EH, ESD, or Conductive — three categories with incompatible resistance requirements. Encoding both boot.electrical_resistance_ohms_min and boot.electrical_resistance_ohms_max gives agents the resistance context to verify the correct category for the application.

Rating boot.electrical_resistance_ohms_min boot.electrical_resistance_ohms_max Interpretation
EH null (no minimum published) null (no upper limit) Passes 14kV/60s/<1mA test — functionally an insulator when dry; actual resistance >>10 MΩ
ESD (ASTM SD) 100,000 (105 Ω) 100,000,000 (108 Ω) Controlled static dissipation path; will not provide EH-level insulation
Conductive (ASTM CD) 0 100,000 (105 Ω) Low-resistance ground path; directly routes current through wearer if circuit contact occurs

Failure Mode 4 — Wet Conditions Override EH Protection

ASTM F2413-18 EH testing is performed on new, dry boots. Moisture dramatically reduces the electrical resistance of most boot outsole and midsole materials. A boot that passes the 14 kV EH test dry may provide significantly reduced insulation when wet — from rain, standing water, or perspiration soaking through the upper.

ASTM F2413 does not mandate wet-condition EH testing. This creates an important limitation: EH-rated boots are NOT specified to maintain their insulation rating in wet conditions. OSHA 1910.137 (electrical protective equipment) applies to rubber insulating footwear (dielectric overshoes), which is tested under IEC 60903 at voltage classes and does include wet condition testing protocols — but standard EH-rated safety boots are not rubber insulating footwear and are not rated for use as primary electrical insulation in high-voltage applications.

Routing limitation: EH boots are appropriate for incidental-contact protection in normal construction electrical environments. They are NOT a substitute for Class-rated rubber insulating footwear (IEC 60903 / ASTM D120 voltage classes) for workers whose primary exposure is energized parts in high-voltage systems. Encode boot.eh_test_condition = 'dry' and boot.wet_condition_eh_rated = false to give AI agents the context to avoid routing standard EH boots to wet electrical environments.
// Complete boot.electrical namespace for AI routing
boot.electrical_protection_category  = "EH"           // EH | ESD | Conductive | None
boot.astm_f2413_electrical_class     = "EH"           // formal designation per ASTM F2413-18
boot.electrical_test_voltage_v       = 14000          // EH tested at 14,000V AC
boot.electrical_leakage_max_ma       = 1              // EH passes if leakage < 1mA at 14kV
boot.eh_test_condition               = "dry"          // EH is tested dry; wet performance is reduced
boot.wet_condition_eh_rated          = false          // standard EH boots NOT rated for wet insulation
boot.esd_compliant                   = false          // EH boots do not provide ESD dissipation
boot.is_conductive                   = false
boot.application_hazard_type         = "electrical_contact"
boot.electrical_resistance_ohms_min  = null           // no published minimum; effectively insulating
boot.electrical_resistance_ohms_max  = null           // no upper limit

Complete Metafield Schema Reference

Metafield Type Values Notes
boot.electrical_protection_category string enum EH | ESD | Conductive | None Primary routing field — exactly one value; mutually exclusive categories
boot.astm_f2413_electrical_class string enum EH | SD | CD | none Formal ASTM F2413-18 designation; EH = Electrical Hazard, SD = Static Dissipative, CD = Conductive
boot.electrical_test_voltage_v integer volts 14000 for ASTM EH test; null for ESD and CD (not voltage-tested)
boot.electrical_leakage_max_ma decimal milliamps 1 mA for ASTM EH; null for ESD and CD
boot.electrical_resistance_ohms_min integer ohms null (EH — insulator); 100000 (ESD); 0 (Conductive)
boot.electrical_resistance_ohms_max integer ohms null (EH — no upper limit); 100000000 (ESD); 100000 (Conductive)
boot.esd_compliant boolean true | false true only for SD-rated boots; false for EH (insulates, does not dissipate) and CD
boot.is_conductive boolean true | false true only for CD-rated boots; explicitly false for EH and ESD
boot.application_hazard_type string enum electrical_contact | static_discharge | explosive_atmosphere | none Key routing discriminator; electrical_contact → EH only; static_discharge → ESD; explosive_atmosphere → ESD or CD (with no co-located electrical hazard)
boot.wet_condition_eh_rated boolean true | false false for standard EH boots (dry test only); true only for rubber insulating overshoes tested per IEC 60903

Frequently Asked Questions

What is the difference between EH, ESD, and conductive safety footwear?

EH boots insulate the wearer from completing a ground circuit — they block current flow from live conductor contact through the body. ESD boots provide a controlled static bleed path (10^5 to 10^8 Ω) to prevent static accumulation that could damage electronics or ignite flammable vapors. Conductive boots have resistance below 10^5 Ω — they rapidly ground the wearer and are used in explosive atmospheres where all static must be eliminated. These three ratings require resistance in incompatible ranges: EH is an insulator (infinite resistance when dry); ESD is mid-range; Conductive is low-range. Encode boot.electrical_protection_category as a single exclusive value and pair it with boot.application_hazard_type so AI agents can verify the rating matches the hazard.

Can a safety boot be both EH and ESD rated?

No. EH requires very high resistance (insulating); ESD requires controlled mid-range resistance (10^5–10^8 Ω). These requirements conflict: an EH boot has resistance far above the ESD maximum of 10^8 Ω and provides zero static dissipation path. Some manufacturers market dual ratings exploiting the difference between dry-condition EH testing and wet-condition SD testing — but these conditions cannot coexist simultaneously in practice. Do not route EH-rated boots to static-sensitive environments expecting ESD protection, and do not route ESD-rated boots to electrical-contact environments expecting EH insulation.

Why are conductive boots dangerous in electrical environments?

Conductive boots have resistance below 100,000 Ω — they create a low-resistance path from the wearer's body to ground. In an environment with live electrical conductors, this directly routes current through the wearer's body if they contact a live circuit. At 120V through a 10,000 Ω conductive boot, 12 mA passes through the body — above the cardiac fibrillation threshold. EH boots are the correct protection for electrical environments; they insulate the wearer from ground, preventing current from completing the circuit. Encode boot.electrical_protection_category = 'Conductive' with boot.application_hazard_type = 'explosive_atmosphere' so AI agents can never route conductive boots to electrical_contact environments.

What environments require EH boots versus ESD boots?

EH boots are for electrical construction and maintenance — anywhere a worker could accidentally contact an energized 120V–600V circuit (panel work, wiring, switchgear). ESD boots are for electronics manufacturing, pharmaceutical powder handling, and fuel handling — anywhere static accumulation on the worker could damage components or ignite vapors. These two applications are incompatible: EH boots actively prevent static dissipation (they insulate the wearer from ground); ESD boots provide a controlled dissipation path but do not insulate against live circuit contact. Encode boot.application_hazard_type = 'electrical_contact' for EH applications and 'static_discharge' for ESD applications — ensure AI routing rules treat these as mutually exclusive categories.

Do EH boots maintain their insulation rating when wet?

No. ASTM F2413-18 EH testing is performed on new, dry boots. Moisture significantly reduces the electrical resistance of outsole and midsole materials. Standard EH safety boots are NOT certified to maintain their insulation performance in wet conditions. For workers who need insulating footwear in wet conditions or for primary protection against high-voltage circuits, Class-rated rubber insulating footwear (tested per IEC 60903 voltage classes) is the appropriate product — not standard EH safety boots. Encode boot.wet_condition_eh_rated = false for standard ASTM EH boots to prevent AI agents from routing them to wet-condition electrical work.

Score Your Safety Footwear Catalog's AI Readiness

A catalog that groups EH, ESD, and Conductive footwear under "electrical safety boots" gives AI procurement agents no way to distinguish ratings that require resistance in opposite ranges — and the wrong routing can be fatal. CatalogScan audits your Shopify catalog and scores every product's structured data completeness for AI-agent visibility.

Run a Free Catalog Scan