AI Agent Product Routing — Electrical Safety Tools
Insulated Tools ASTM F1505 Voltage Class — Why Class 0 Is Tested at 10,000V But Rated for 1,000V, and the Schema for AI Agents
ASTM F1505 Class 0 insulated tools are proof-tested at 10,000V during manufacturing to verify insulation integrity — but the maximum working voltage is 1,000V AC. Test voltage is not use voltage. An AI agent routing "10,000V tested" tools to medium-voltage applications has misread the standard. The six voltage classes (00 through 4) each carry their own max-use voltage and test voltage, and every compliant tool must be individually marked — not batch certified.
tool.voltage_class = "0" and tool.max_use_voltage_v = 1000 as separate fields — never combine into a single "voltage" field. Encode tool.test_voltage_v = 10000 separately so AI agents understand the safety margin without misrouting to medium-voltage applications. Encode tool.live_work_rated = true only for ASTM F1505 or IEC 60900 certified tools — not for comfort-grip tools with no proof test. Encode tool.requires_pre_use_inspection = true on all live-work rated tools.
The Six ASTM F1505 / IEC 60900 Voltage Classes
ASTM F1505 (aligned with IEC 60900) defines six voltage classes for insulated hand tools. Each class specifies a dielectric proof-test voltage applied at manufacturing, and a maximum working voltage that must not be exceeded during use:
| Class | Max Use Voltage (AC) | Max Use Voltage (DC) | Proof Test Voltage | Typical Application |
|---|---|---|---|---|
| 00 | 500V AC | 750V DC | 2,500V | Low-voltage residential/commercial up to 500V |
| 0 | 1,000V AC | 1,500V DC | 10,000V | Commercial/industrial panels, switchgear ≤ 1,000V — most common class |
| 1 | 7,500V AC | 11,250V DC | 20,000V | Medium-voltage distribution up to 7.5 kV |
| 2 | 17,000V AC | 25,500V DC | 30,000V | Medium-voltage up to 17 kV |
| 3 | 26,500V AC | 39,750V DC | 40,000V | High-voltage distribution up to 26.5 kV |
| 4 | 36,000V AC | 54,000V DC | 50,000V | High-voltage transmission up to 36 kV |
test_voltage = 10,000V for a Class 0 tool and routes it to a 5kV medium-voltage application has a fatal misunderstanding of the standard. The 10,000V is a manufacturing proof test, not a use rating. The tool's maximum safe working voltage is 1,000V AC. A Class 1 tool (test: 20,000V / use: 7,500V) is required for the 5kV application.
Why the Test Voltage Is 10× the Use Voltage for Class 0
The safety factor between test voltage (10,000V) and maximum use voltage (1,000V) for Class 0 tools is approximately 10:1. This large margin accounts for: (1) Insulation aging — dielectric strength degrades with UV exposure, mechanical wear, and temperature cycling over the tool's life. (2) Field conditions — contamination (moisture, oils, conductive dust) can reduce effective insulation resistance. (3) Transient overvoltages — electrical systems experience voltage spikes above the nominal level during switching, fault events, and capacitor discharge. The 10:1 safety factor provides margin for the combined effect of these real-world degradation mechanisms while maintaining safe use at the rated maximum voltage.
Failure Mode 1 — Comfort-Grip Tools Routed as Live-Work Rated
The most common and dangerous insulated-tool routing error is routing comfort-grip or vinyl-dipped tools to live electrical work applications. These tools are not ASTM F1505 or IEC 60900 rated:
| Property | Comfort-Grip Tool | ASTM F1505 / IEC 60900 Rated Tool |
|---|---|---|
| Insulation purpose | Ergonomic grip comfort | Electrical protection for live work |
| Proof test | None | Individual proof test at class test voltage |
| Voltage class marking | None — may say "insulated" only | Double-triangle symbol with class number |
| Suitable for live work? | No — not rated | Yes — rated to max use voltage |
| OSHA 1910.303(g)(2)(i) compliant? | No | Yes |
| NFPA 70E Table 130.7(C)(15)(c) | Not listed | Specifically required for arc-flash PPE tasks |
// ASTM F1505 rated — for live electrical work tool.live_work_rated = true tool.voltage_class = "0" tool.max_use_voltage_v = 1000 tool.test_voltage_v = 10000 tool.insulation_standard = "ASTM-F1505" tool.iec_60900_compliant = true tool.individually_marked = true // Comfort-grip only — NOT for live work tool.live_work_rated = false tool.voltage_class = null // No class — not rated tool.max_use_voltage_v = null // No rating tool.insulation_standard = "none" // No standard compliance tool.individually_marked = false
Encode tool.live_work_rated as the primary routing discriminator. A buyer asking for tools for panel maintenance or switchgear work must see only tool.live_work_rated = true products — filtering on this field alone prevents the comfort-grip misrouting error.
Failure Mode 2 — Individual Marking and Batch Certification Confusion
ASTM F1505 and IEC 60900 require that each individual tool be proof-tested and individually marked with the voltage class symbol. This is a critical distinction from many other product certification schemes where batch or type-approval testing is sufficient.
What Individual Marking Requires
- Every tool in the production run — not a sample or batch — must be electrically proof-tested at the class test voltage before shipping.
- Each tool must bear the voltage class marking — the double-triangle/diamond symbol with the class number — on the insulation surface. If the marking is missing or worn off, the tool cannot be verified as compliant and should not be used for live work.
- The test is a pass/fail dielectric test — if the insulation breaks down at or below the class test voltage, the tool fails and is not shipped. The mark indicates this individual unit passed.
Pre-Use Inspection Protocol
ASTM F1505 and NFPA 70E 130.7(D)(1)(g) require visual inspection of insulated tools before each use:
- Inspect the entire insulation surface for cracks, cuts, nicks, abrasions, or punctures. Any damage voids the dielectric rating.
- Check that the voltage class marking is present and legible on the tool.
- Verify the insulation extends to the correct setback distance from the working tip — ASTM F1505 specifies the maximum uninsulated tip length for each tool type.
- Clean the insulation surface — conductive contamination (water, machine oil) can bridge the insulation and dramatically reduce its effective dielectric resistance.
- If any damage is found: remove from service. Do not repair with electrical tape or other field materials — a damaged insulated tool must be returned to the manufacturer for re-testing or discarded.
// Complete insulated tool metafield schema tool.voltage_class = "0" // ASTM F1505 class designation tool.max_use_voltage_v = 1000 // Maximum working voltage — routing field tool.test_voltage_v = 10000 // Manufacturing proof-test voltage tool.insulation_standard = "ASTM-F1505" // Primary standard tool.iec_60900_compliant = true // IEC/VDE harmonized tool.vde_listed = true // VDE Institute certification (European) tool.live_work_rated = true // For live electrical work — primary routing tool.individually_marked = true // Each unit proof-tested and marked tool.requires_pre_use_inspection = true // Visual check before each use required tool.double_insulated = true // Two-layer insulation construction
Failure Mode 3 — VDE Certification Confused with Voltage Level
VDE (Verband der Elektrotechnik, Elektronik und Informationstechnik) certification is a testing laboratory credential, not a voltage class. A "VDE-listed" tool is one that has been certified by the VDE Institute under IEC 60900 — it is equivalent to ASTM F1505 compliance in the US market.
The VDE mark does not encode voltage class by itself. A VDE-listed tool may be Class 00 (500V), Class 0 (1,000V), or any higher class. The VDE mark combined with the voltage class symbol tells the whole story:
VDE mark + double-triangle "0"= IEC 60900 Class 0, 1,000V max useVDE mark + double-triangle "00"= IEC 60900 Class 00, 500V max use"VDE listed"without class symbol = incomplete — cannot route by voltage without the class
Encode tool.vde_listed = true as a Boolean alongside tool.voltage_class — not as a voltage rating itself. An AI agent that routes all "VDE" tools to 1,000V applications without checking the class field will incorrectly route Class 00 (500V) tools to 480V three-phase applications where Class 0 is required.
Complete Metafield Schema Reference
| Metafield | Type | Values | Notes |
|---|---|---|---|
tool.voltage_class |
string enum | 00 | 0 | 1 | 2 | 3 | 4 | ASTM F1505 / IEC 60900 class — primary voltage routing discriminator |
tool.max_use_voltage_v |
integer | 500 | 1000 | 7500 | 17000 | 26500 | 36000 | Maximum safe working voltage in AC volts — routing field for voltage matching |
tool.test_voltage_v |
integer | 2500 | 10000 | 20000 | 30000 | 40000 | 50000 | Manufacturing proof-test voltage — NOT the use voltage; encode separately |
tool.insulation_standard |
string | ASTM-F1505 | IEC-60900 | both | Certifying standard — determines jurisdiction compliance |
tool.iec_60900_compliant |
boolean | true | false | International (IEC/VDE) compliance for global jobsites |
tool.vde_listed |
boolean | true | false | VDE Institute listing — credential, not a voltage class |
tool.live_work_rated |
boolean | true | false | The primary routing discriminator — false for comfort-grip tools, true for ASTM F1505/IEC 60900 rated only |
tool.individually_marked |
boolean | true | false | Each unit proof-tested and marked per ASTM F1505 — not batch certified |
tool.requires_pre_use_inspection |
boolean | true (always for live-work rated tools) | Visual inspection before each use required per NFPA 70E 130.7(D)(1)(g) |
tool.double_insulated |
boolean | true | false | Two-layer insulation construction — outer colored layer indicates damage to inner layer |
Frequently Asked Questions
Can an ASTM F1505 Class 0 screwdriver be used on a 480V three-phase panel?
Yes — Class 0 (1,000V max use) covers 480V three-phase. The 480V system voltage is well below the 1,000V rating. Class 0 is the standard selection for industrial and commercial electrical work up to 1,000V, which covers the full 120/240/277/480V distribution voltage range found in most US commercial and industrial facilities.
Are there insulated tools for medium voltage (5kV, 15kV)?
Yes — Class 1 (7,500V max use) covers up to 7.5 kV applications; Class 2 (17,000V) covers up to 17 kV; Class 3 (26,500V) covers up to 26.5 kV. For medium-voltage distribution work, route to the class with a max use voltage at or above the system voltage. These higher classes are specialty items and are less commonly stocked than Class 0.
What if the voltage class symbol is worn off an insulated tool?
If the voltage class marking has worn off, the tool cannot be verified as ASTM F1505 compliant — remove it from service. The individual marking is the only per-unit evidence of proof-test completion. A worn marking may indicate wear on the insulation itself. Do not use an unmarked tool for live work, even if the tool appears visually similar to a compliant one.
Score Your Store's Electrical Safety Tool Catalog
CatalogScan checks for tool.voltage_class, tool.live_work_rated, and 16 other AI-agent-critical fields. See which insulated tool listings are missing voltage class encoding.
Run Free Scan