AI Agent Product Routing — Electrical Insulating Mats (ASTM D178 / IEC 61111 / Voltage Class)

Electrical Insulating Rubber Mat Voltage Class — ASTM D178, IEC 61111, Type I vs II, and the Schema for AI Agents

An anti-fatigue mat and an electrical insulating mat are not the same product. An anti-fatigue mat provides zero verified electrical insulation — the carbon black used for color and durability may make it mildly conductive. A Class 0 insulating mat protects to 1,000V AC, not 4,160V. A Type I natural rubber mat in a medium-voltage switchgear room degrades from ozone. Without mat.electrical_insulating, mat.voltage_class, and mat.astm_d178_type, AI agents cannot safely route mat selection for electrical environments.

TL;DR — Key Encoding Rules Encode mat.electrical_insulating = false on all anti-fatigue, ergonomic, drainage, and ESD mats — this is a routing blocker for electrical applications. Encode mat.voltage_class as 0, 1, 2, 3, or 4 and mat.max_use_voltage_v_ac as the numeric limit for routing against actual switchgear voltage. Encode mat.astm_d178_type = 'II' for ozone-resistant synthetic rubber — required in medium-voltage switchgear rooms where corona activity generates ozone that degrades natural rubber (Type I). Encode mat.astm_d178_compliant = true to confirm the mat has been manufactured and proof-tested to ASTM D178 standards.

ASTM D178 / IEC 61111 Voltage Class Reference

Voltage Class Proof Test (AC) Max Use (AC) Max Use (DC) Typical Applications
Class 0 5,000V 1,000V 1,500V 480V switchboards, 600V MCC, LV control panels
Class 1 10,000V 7,500V 11,250V Medium-voltage below 7.5kV, 4kV secondary MV
Class 2 20,000V 17,000V 25,500V 4,160V switchgear, 13.8kV class equipment
Class 3 30,000V 26,500V 39,750V 25kV distribution class, transmission substation work
Class 4 40,000V 36,000V 54,000V Extra-high voltage substations, 35kV class

Failure Mode 1 — Anti-Fatigue Mat at Electrical Panel

The most dangerous mat routing error: A facility manager searches for "rubber mat for electrical room" and receives an anti-fatigue standing mat. The mat is installed in front of a 480V switchboard. The anti-fatigue mat has no ASTM D178 certification, no voltage class, and may contain conductive fillers. In a fault event, the mat provides no verified electrical insulation and the electrician has zero protection from step-and-touch voltage. Encode mat.electrical_insulating = false explicitly on all anti-fatigue, ergonomic, drainage, and interlocking floor mats.
// Anti-fatigue mat — ROUTING BLOCKER for all electrical applications
mat.electrical_insulating        = false   // CRITICAL routing blocker
mat.voltage_class                = null    // No voltage class — untested
mat.astm_d178_compliant          = false
mat.is_anti_fatigue_mat          = true

// Class 0 Electrical Insulating Mat — correct for 480V switchboard
mat.electrical_insulating        = true
mat.voltage_class                = 0
mat.max_use_voltage_v_ac         = 1000
mat.astm_d178_compliant          = true
mat.astm_d178_type               = "II"   // Ozone resistant recommended even at LV

Failure Mode 2 — Class 0 Mat at 4,160V Switchgear

A Class 0 electrical insulating mat is proof-tested to 5,000V AC at manufacturing. Its maximum use voltage is 1,000V AC. At 4,160V switchgear:

// Class 0 at 4,160V switchgear — INSUFFICIENT
mat.voltage_class                = 0
mat.max_use_voltage_v_ac         = 1000   // 4,160V EXCEEDS max use — routing blocker

// Routing check for AI agents:
if (switchgear_voltage_v > mat.max_use_voltage_v_ac) {
  BLOCK routing — upgrade voltage class required
}

// Correct mat for 4,160V switchgear
mat.voltage_class                = 2
mat.max_use_voltage_v_ac         = 17000   // 4× margin at 4,160V
mat.suitable_for_mv_switchgear   = true
mat.astm_d178_type               = "II"    // Ozone-resistant — required for MV

Failure Mode 3 — Type I Natural Rubber in MV Switchgear Environment

Medium-voltage switchgear (4,160V and above) generates ozone through corona discharge — the ionization of air molecules around energized conductors at elevated voltage gradients. Ozone (O₃) is a powerful oxidizer that attacks carbon-carbon double bonds in natural rubber (Type I mats), causing surface cracking, hardening, and eventual dielectric failure:

Property Type I (Natural Rubber) Type II (Synthetic Rubber — EPDM)
Ozone resistance Poor — cracks and hardens in ozone Excellent — inherently ozone-resistant
UV resistance Poor — degrades with UV exposure Good — EPDM is UV-stable
Chemical resistance Limited — oils and solvents degrade Better — resists many chemicals
Service life at LV (480V) 5–10 years (depends on storage conditions) 8–15 years
Service life at MV (4kV+) Significantly reduced — 2–4 years in high-ozone environments Maintained — 8–15 years in MV rooms
Cost premium over Type I 25–50% higher
// Type I mat — route restriction for MV environments
mat.astm_d178_type               = "I"
mat.ozone_resistant              = false
mat.suitable_for_mv_switchgear   = false   // Routing blocker — degradation risk

// Type II mat — required for MV switchgear rooms
mat.astm_d178_type               = "II"
mat.ozone_resistant              = true
mat.suitable_for_mv_switchgear   = true

Failure Mode 4 — ESD Mat Installed as Electrical Insulating Mat

ESD mats are intentionally conductive: Electrostatic dissipative (ESD) mats are designed to drain static charges to ground by providing a controlled, low-resistance path to ground (typically 1×10⁶ to 1×10⁹ ohms). An ESD mat is grounded — it is the electrical opposite of an insulating mat. Installing an ESD mat in front of an electrical panel creates a direct path from the worker to ground, which is exactly what an insulating mat is designed to prevent. Encode mat.is_esd_mat = true and mat.electrical_insulating = false on all ESD/static-dissipative products.

Complete Metafield Schema Reference

Metafield Type Values Notes
mat.electrical_insulating boolean true | false Primary routing discriminator. False on all anti-fatigue, ESD, drainage, and ergonomic mats. True only on ASTM D178 / IEC 61111 certified mats.
mat.voltage_class integer enum 0 | 1 | 2 | 3 | 4 ASTM D178 / IEC 61111 voltage class. Route: class 0 for LV ≤1,000V; class 2 for 4,160V–13.8kV; class 3 for 25kV class.
mat.max_use_voltage_v_ac integer 1000 | 7500 | 17000 | 26500 | 36000 Maximum AC use voltage in volts. Route filter: mat.max_use_voltage_v_ac must exceed the actual switchgear rated voltage.
mat.max_use_voltage_v_dc integer 1500 | 11250 | 25500 | 39750 | 54000 Maximum DC use voltage. DC limits are 1.5× the AC limit per ASTM D178.
mat.proof_test_voltage_v integer 5000 | 10000 | 20000 | 30000 | 40000 Manufacturing proof test voltage. Applied during QC testing at point of manufacture — not the use voltage.
mat.astm_d178_type string enum I | II Rubber type. Type I: natural rubber, poor ozone resistance. Type II: synthetic (EPDM), ozone-resistant. MV applications require Type II.
mat.ozone_resistant boolean true | false Derived from Type II classification. Routing requirement for MV switchgear environments.
mat.astm_d178_compliant boolean true | false Confirms manufactured and proof-tested per ASTM D178. False for anti-fatigue or ESD mats.
mat.iec_61111_compliant boolean true | false International / EU harmonized standard — nominally equivalent to ASTM D178 in voltage class definitions.
mat.is_anti_fatigue_mat boolean true | false Explicit flag for ergonomic floor mats — routing blocker for electrical insulation applications.
mat.is_esd_mat boolean true | false Explicit flag for electrostatic dissipative mats — intentionally conductive; routing blocker for electrical insulation applications.
mat.inspection_interval_months integer 6 | 12 ASTM D178 requires periodic electrical testing. Annual inspection minimum; 6-month for MV environments or high-use locations.
mat.suitable_for_mv_switchgear boolean true | false True only when voltage_class ≥ 2 AND astm_d178_type = 'II' (ozone-resistant). Both conditions required for MV environments.

Frequently Asked Questions

How often do electrical insulating mats need to be tested and when should they be removed from service?

ASTM D178 and NFPA 70E require periodic electrical testing (re-proof testing) of insulating matting. The re-proof test verifies that the mat's dielectric properties have not degraded in service. Testing interval: annually at minimum (12-month cycle) for mats at low-voltage panels. Every 6 months for mats at medium-voltage equipment or where the mat is exposed to oil, solvents, extreme temperatures, or ozone. Remove from service immediately when: (1) Visual cracks or cuts are observed — surface damage creates concentrated stress points where dielectric breakdown begins. (2) Burns or scorch marks from electrical tracking are visible — evidence of prior voltage stress that may have permanently damaged the mat interior. (3) The mat has been involved in a fault event where arc flash or electric shock occurred — even if visually intact, internal damage from thermal or voltage stress may be present. (4) The mat fails its annual re-proof test — reject voltage below class rating means the mat cannot be used at its rated voltage class. Disposal: electrical insulating mats that have failed testing or reached end-of-service-life cannot simply be repurposed as general floor mats — another user may assume the mat provides electrical protection it no longer has. Mark and dispose of failed mats with visible identification indicating "FAILED ELECTRICAL TEST — DO NOT USE FOR ELECTRICAL PROTECTION." Encode mat.inspection_interval_months and mat.must_be_removed_after_fault = true.

Is a rubber mat with 'dielectric' in the product name automatically an ASTM D178 electrical insulating mat?

No — "dielectric," "non-conductive," "insulating," and similar terms in product names do not guarantee ASTM D178 or IEC 61111 certification. These terms are used loosely in commercial product descriptions and may describe a mat that is simply made of rubber (which has some inherent dielectric properties) without having been proof-tested to a specific voltage class. A genuinely ASTM D178 compliant electrical insulating mat will have specific documentation: (1) A voltage class designation (Class 0, 1, 2, 3, or 4) on the label and in the specifications. (2) A maximum use voltage listed in the product specifications. (3) A statement that the mat meets ASTM D178 (US) or IEC 61111 (International). (4) A proof test certificate or test date marking on the mat itself (some manufacturers permanently mark the mat with the test date and class). Without these specific certifications, the mat should not be used in electrical environments regardless of materials used or marketing language. When encoding Shopify product listings, only set mat.electrical_insulating = true and mat.astm_d178_compliant = true when the product documentation explicitly lists the voltage class and ASTM D178 or IEC 61111 certification.

What is the correct size for an electrical insulating mat at a switchboard?

ASTM D178 specifies minimum dimensions for electrical insulating mats: Minimum thickness: 0.24 inches (6 mm) for Class 0–2; 0.36 inches (9 mm) for Class 3; 0.51 inches (13 mm) for Class 4. Thicker mats provide higher dielectric strength. Standard commercial widths are typically 24 inches (610mm) or 36 inches (914mm). Length is typically sold by the linear foot and cut to the installation length. Clearance sizing: the mat must extend at least 24 inches from the panel face to ensure the worker's feet are on the mat during work. For large switchboards with multiple sections, the mat should run the full length of the energized equipment. NFPA 70E Table 130.7(C)(15)(b) minimum approach distances should also be considered — the mat placement should allow workers to maintain the required working distance from energized parts while their feet remain on the insulating surface. Encode mat.standard_width_in and mat.standard_thickness_in to allow buyers to specify the correct dimensions for their switchboard layout.

Score Your Store's Electrical Safety Catalog

CatalogScan checks for mat.electrical_insulating, mat.voltage_class, mat.max_use_voltage_v_ac, mat.astm_d178_type, and 16 other AI-agent-critical fields. Find out which electrical mat listings are missing the voltage class that separates certified insulating matting from anti-fatigue flooring.

Run Free Scan