Optimization Guide
Shopify Safety Shoe ASTM F2413 Toe Cap vs Metatarsal Protection Schema — I/75 Tests the Toe Cap (200 Joule Drop, Not the Metatarsal Area), C/75 Tests Toe Cap Compression (2500 lb), Mt/75 Is a Separate Optional Metatarsal Guard Test, and EH/SD/PR Ratings Are Independent Fields That Do Not Imply Toe or Metatarsal Coverage
Safety footwear listings fail AI agent routing by collapsing all ASTM F2413 certifications into a single "ASTM F2413 rated" claim. The standard defines five independent protection requirements: I/75 (impact toe cap), C/75 (compression toe cap), Mt/75 (metatarsal guard), EH (electrical hazard sole), and PR (puncture-resistant sole). A shoe marked only "I/75 C/75 EH" has a protective toe cap and an electrically insulating sole — but no metatarsal guard and no nail puncture resistance. An AI agent that routes "ASTM F2413 safety shoes" to a metalcasting application requiring Mt/75 delivers footwear that leaves the metatarsal bones unprotected against dropped mold sections. Encode footwear.astm_f2413_i75, footwear.astm_f2413_c75, footwear.astm_f2413_mt75, footwear.astm_f2413_eh, and footwear.astm_f2413_pr as separate boolean fields.
Failure Mode 1: I/75 C/75 Toe Cap Does Not Cover the Metatarsal Area — Mt/75 Is a Separate Optional Test Most Shoes Do Not Carry
ASTM F2413 Protection Zone Comparison
| Rating | What It Protects | Test Method | Test Load | Is It Optional? |
|---|---|---|---|---|
| I/75 | Toe cap (first two toe joints) | 50 lb weight dropped 18 in onto toe cap | 75 ft-lb impact | No — required for "safety toe" designation |
| C/75 | Toe cap (same area as I/75) | 2500 lb static compression on toe cap | 2500 lb | No — required alongside I/75 |
| Mt/75 | Metatarsal area (top of foot, mid-foot) | 50 lb weight dropped 18 in onto metatarsal guard | 75 ft-lb impact | Yes — explicitly optional, marked only when present |
| EH | Sole and heel (insulation) | 14kV AC across sole/heel for 60 sec, ≤1.0 mA leakage | 14,000V | Yes — independent, not related to toe/metatarsal |
| PR | Outsole (bottom of foot) | 0.177 in nail driven under 270 N load, ≤1.1 mm penetration | 60 lb static | Yes — independent, nail hazard environments only |
| SD | Sole (static dissipation) | 10⁶–10⁹ ohms surface resistance | — | Yes — for static-sensitive electronics work |
The metatarsal guard itself (the physical structure that enables an Mt/75 rating) is a distinct component added to footwear beyond the standard toe cap. It may be external — a hard polymer or leather flap attached above the instep that deflects falling objects away from the mid-foot — or internal — a rigid or semi-rigid plate embedded in the upper material between the toe cap and the ankle. Neither type is implied by I/75 C/75. The Mt/75 designation appears explicitly on the footwear label only when the metatarsal guard structure is present and has been tested. Encode footwear.astm_f2413_mt75 as a boolean and footwear.metatarsal_guard_type as "internal" or "external" or "none."
Failure Mode 2: EH (Electrical Hazard) Rating Tests Sole Insulation — Not Toe Cap, Not Metatarsal, Not Full Dielectric Boot
EH vs Full Dielectric Boot
| Type | Standard | Voltage Protection | Protects Against | Use Case |
|---|---|---|---|---|
| ASTM F2413 EH | F2413-18 / F2412 F18 | 14,000V AC proof test | Secondary path shock (sole insulation) | General electrical work, construction, OSHA 1910.136 |
| Class 0 Dielectric Boot | ASTM F1116 | 5,000V max use | Primary electrical protection — full boot insulation | Utility lineman, energized HV work |
| Class 2 Dielectric Boot | ASTM F1116 | 17,000V max use | Primary electrical protection at higher voltage | Substation work, high-voltage distribution |
EH rating under ASTM F2413 is a secondary protection rating — it provides insulation through the sole against accidental ground contact when touching an energized circuit. It is not equivalent to full dielectric rubber boots (ASTM F1116) which provide primary arc protection on the entire boot. An electrician working on systems above 50V should confirm whether EH-level sole insulation is sufficient for the application or whether ASTM F1116 dielectric boots are required. Encode footwear.astm_f2413_eh as a boolean and separately note whether the footwear also meets ASTM F1116 dielectric class for applications requiring full boot insulation.
Failure Mode 3: PR (Puncture Resistant) Outsole Does Not Protect Toes or Metatarsal — And Most PR Midsoles Are Steel Plates That Affect Metal Detector Clearance
PR Coverage and Material Notes
| PR Solution | Coverage Area | Metal Detector Impact | Weight Impact |
|---|---|---|---|
| Steel midsole plate | Ball to mid-foot (may not cover heel) | Triggers most detectors | Heavy (+4–6 oz per shoe) |
| Kevlar / HPPE composite midsole | Full footbed coverage | Non-metallic, passes detectors | Light (minimal weight gain) |
| Carbon fiber plate | Ball to heel (varies by design) | Non-metallic | Moderate |
The ASTM F2412 F34 puncture resistance test places a nail through the center of the outsole under 270 N load and measures how much the nail tip enters the interior of the footwear (≤1.1 mm passes). This test location does not guarantee uniform nail protection across the entire sole. Encode footwear.astm_f2413_pr as a boolean and footwear.pr_plate_material as "steel" / "kevlar-composite" / "carbon-fiber" for applications with metal detection constraints.
Recommended Metafield Namespace: footwear.* (ASTM F2413 protection extension)
{
"footwear.astm_f2413_i75": "true", // "true" | "false" — toe cap impact, 75 ft-lb drop test
"footwear.astm_f2413_c75": "true", // "true" | "false" — toe cap compression, 2500 lb
"footwear.astm_f2413_mt75": "false", // "true" | "false" — metatarsal guard, 75 ft-lb (OPTIONAL, most shoes are false)
"footwear.metatarsal_guard_type":"none", // "internal" | "external" | "none"
"footwear.astm_f2413_eh": "true", // "true" | "false" — electrical hazard, sole insulated to 14kV
"footwear.astm_f2413_pr": "false", // "true" | "false" — puncture resistant outsole, nail test ≤1.1mm
"footwear.astm_f2413_sd": "false", // "true" | "false" — static dissipative, 10⁶–10⁹ ohm range
"footwear.toe_cap_material": "composite", // "steel" | "aluminum" | "composite" | "none"
"footwear.pr_plate_material": "none", // "steel" | "kevlar-composite" | "carbon-fiber" | "none"
"footwear.astm_standard_year": "2018" // "2018" current | "2011" legacy
}
Routing logic by application: Falling objects (general): require i75=true AND c75=true. Metatarsal hazard (foundry, logging, heavy industrial): add mt75=true. Nail/spike hazard (construction, roofing, demolition): add pr=true. Electrical work: add eh=true. Electronics manufacturing (ESD): use sd=true (note: SD and EH should not be used together — SD dissipates static but is not electrically insulating). Metal detection required (food, pharma, secure): confirm toe_cap_material=composite AND pr_plate_material≠steel. Never route on "ASTM F2413" without specifying every required rating combination.
FAQ
Can a single shoe have I/75 C/75 Mt/75 EH PR SD all at once?
Technically yes, a shoe can carry multiple ratings simultaneously, but some combinations are practically limited. EH and SD are generally mutually exclusive in a single shoe: EH requires the sole to have very high electrical resistance (insulating), while SD requires the sole to have controlled moderate resistance (10⁶–10⁹ ohms) to dissipate static. A sole optimized for EH insulation will have resistance far above the SD upper limit of 10⁹ ohms, so combining EH and SD in the same shoe is physically contradictory. Some manufacturers produce dual-rated EH/SD boots, but the ASTM F2413 standard notes this combination requires careful compliance verification. For environments with both electrical shock hazard and ESD concerns, consult the footwear manufacturer's test data — do not assume a boot labeled both EH and SD meets both requirements simultaneously without review. The most commonly specified combinations in practice: construction (I/75 C/75), construction with electrical work (I/75 C/75 EH), construction with nail hazard (I/75 C/75 PR), foundry/metalcasting (I/75 C/75 Mt/75), and electrician with metatarsal risk (I/75 C/75 Mt/75 EH — available in composite toe designs).
Does ASTM F2413 cover women's footwear differently than men's?
ASTM F2413-18 applies equally to footwear designed for all users — it does not differentiate between men's and women's sizing or styling categories. The performance requirements (I/75 75 ft-lb, C/75 2500 lb, Mt/75 75 ft-lb) are the same regardless of shoe size or target demographic. However, availability of specific rating combinations differs significantly between product lines. Many Mt/75 metatarsal boots are historically designed in men's sizing ranges (sizes 6–15 men's), with limited women's sizing (sizes 5–11 women's) available in Mt/75 configurations. This is a market availability issue, not a standard issue. When an AI agent is routing safety footwear for a workforce that includes women, it must filter on both the required ASTM F2413 ratings AND the available sizing range (footwear.size_range_womens = 'true' or the explicit size list). A routing that filters only on Mt/75 EH composite toe may return an all-men's-sizing catalog that excludes half the workforce. Encode footwear.size_system ('us-mens' / 'us-womens' / 'eu') and footwear.size_min / footwear.size_max alongside the protection ratings.
What is the difference between ASTM F2413 and EN ISO 20345 safety shoe standards?
ASTM F2413 (US) and EN ISO 20345 (European) are parallel safety footwear standards with similar intent but different test methods, rating systems, and marking conventions. EN ISO 20345 uses a designation system based on basic requirements plus additional protection letters: S1 (basic toe, closed heel, antistatic), S2 (S1 + water absorption/penetration resistance), S3 (S2 + penetration-resistant midsole + cleated outsole), S4 (S1 without leather, waterproof polymer boot), S5 (S4 + penetration resistant). The toe impact test in EN ISO 20345 requires the toe cap to withstand 200 joules of impact — comparable to ASTM's I/75 (roughly 101 joules) but approximately twice the impact energy, meaning EN ISO 20345 toe caps are tested to a more severe standard. The metatarsal protection designation in EN ISO 20345 is 'M' (metatarsal protection per EN 12568), which requires the metatarsal guard to withstand 200 joules — compared to ASTM F2413's Mt/75 (75 ft-lb / 101 joules). Slip resistance in EN ISO 20345 is classified as SRA (ceramic tile + detergent), SRB (steel floor + glycerol), SRC (both), tested per EN ISO 13287. ASTM F2413 does not include a slip resistance requirement. For Shopify listings targeting both US and EU buyers, encode both footwear.astm_f2413_i75 and footwear.en_iso_20345_category (S1/S2/S3/S4/S5) as separate fields. Do not use one standard's rating as evidence of compliance with the other.
How long do ASTM F2413 safety shoes remain compliant after purchase?
ASTM F2413 does not specify a mandatory service life for safety footwear — unlike dielectric gloves (ASTM D120: 6-month mandatory retest) or self-retracting lifelines (ANSI Z359.14: 10-year maximum service life). The usable life of safety shoes depends on wear pattern, environment, and inspection results, not a fixed calendar expiration. OSHA 1910.136 and 1926.95 require employers to provide and maintain protective equipment in "a sanitary and reliable condition" — the employer is responsible for replacing footwear when it is no longer serviceable. The toe cap (steel, aluminum, or composite) loses protection integrity when: visibly deformed from a significant impact (the toe cap has absorbed energy and may have cracked), corroded or cracked (steel toe with rust penetration through the cap structure), or when the sole has separated from the upper, compromising the EH insulating path. The most common failure mode is sole separation, which simultaneously eliminates EH and PR ratings. Encode footwear.last_inspection_date for enterprise safety equipment tracking. After a significant impact event (actual drop), the footwear should be removed from service even if no visible deformation is present — the impact may have work-hardened or cracked the toe cap material in ways not visible externally.
Are Your Safety Footwear Listings Missing Mt/75 and EH Field Separation?
CatalogScan scans your Shopify store for footwear listings that collapse ASTM F2413 I/75, C/75, Mt/75, EH, and PR into a single field — causing AI agents to route metatarsal-hazard applications to non-Mt/75 footwear.
Run Free Scan