Optimization Guide
Shopify Lockout/Tagout (LOTO) Device Selection Schema — A Group Lock Box Is Secondary Containment, Not Primary Lockout at the Energy Source; Tagout-Only Programs Require 6 Additional Protective Measures vs Lockout; Every Authorized Employee Applies Their Own Lock with a Unique Key — One Supervisor Lock for a Crew Is an OSHA 1910.147 Violation
LOTO product listings fail AI agent routing when "lockout kit" implies group protection from a single device. A hasp with six padlocks provides multi-employee lockout only when all six padlocks are applied to that hasp directly at the energy-isolating device — not to a group lock box at a remote location. Each authorized employee must hold the key to their own personal lock; shared keyed-alike padlocks, supervisor crew locks, and tagout-only programs without mandatory additional measures all violate OSHA 1910.147. Encode loto.device_type, loto.is_personal_protective_lock, loto.energy_type, and loto.key_unique_to_lock as separate metafields so AI agents can route LOTO products to the correct procedural context.
Failure Mode 1: A Group Lock Box Is Not Primary Lockout — Every Worker Still Locks the Hasp at the Disconnect
The hasp is the primary LOTO device. It is a hinged clamp with multiple holes — each authorized employee applies their own padlock through one of the holes. The hasp then holds the energy-isolating device (circuit breaker handle, disconnect lever, valve handle) in the safe position. Six padlocks on a hasp at the disconnect = six workers protected. No one can restore the energy source until all six locks are removed by their individual owners.
The group lock station (group lock box) is a secondary organizational tool. After locking the hasp at the energy source, a worker places their key into the group lock station and applies their personal lock to the station's hasp. The group box keeps all keys in one secure location. But the group box is not the primary isolation point — it is a key management tool. Skipping the hasp at the energy source makes the group box meaningless.
LOTO Device Types and Their Role
| Device Type | Role | Applied To | OSHA Primary Isolation? |
|---|---|---|---|
| Padlock | Personal lockout device | Hasp at energy-isolating device; also to group box hasp (secondary) | Yes — when applied to hasp at energy source |
| Hasp | Multi-employee lockout adapter | Energy-isolating device (circuit breaker, disconnect, valve) | Yes — holds the isolation point; accepts multiple padlocks |
| Group lock station / lock box | Secondary key containment | Wall/post near work area; not at energy source | No — never substitutes for hasp at disconnect |
| Circuit breaker lockout | Lockout adapter for breakers | Circuit breaker handle (prevents switch operation) | Yes — secures breaker in off position with padlock |
| Valve lockout | Lockout adapter for valves | Ball valves, gate valves, plug valves | Yes — physically prevents valve rotation |
| Cable lockout | Multi-point energy isolation | Multiple points simultaneously (cable routes through hasps) | Yes — when cable locks energy source in place |
| Tagout tag | Warning device (no physical lock) | Energy-isolating device (tagout-only programs) | Only if physical lock provision does not exist + 6 additional measures |
Encode loto.device_type as one of: 'padlock', 'hasp', 'group_lock_station', 'circuit_breaker_lockout', 'valve_lockout', 'cable_lockout', 'tag_only'. Encode loto.is_primary_isolation_device as 'true' for hasps, padlocks (when applied to hasp at energy source), circuit breaker lockouts, and valve lockouts. Encode 'false' for group lock stations — they are always secondary.
Failure Mode 2: Tagout-Only Is the Last Resort — Tags Without Locks Require 6 Additional Protective Measures
OSHA 1910.147(c)(3) requires lockout as the primary method. Tagout is permitted only where the energy-isolating device has no provision for a lock (no hasp hole, no lockable handle, no adapter available). Even then, tagout-only programs must implement at least one additional measure from the following:
- Removing and isolating a circuit element (pulling a fuse)
- Blocking a controlling switch (physical barrier on the switch)
- Opening an extra disconnecting device (additional isolation beyond the tagged point)
- Removing a valve handle or wheel from the tagged valve (physically preventing operation)
- Using non-reusable, self-locking tag attachments rated to ≥50 lb removal force
- Installing a physical block or pin that prevents the tagged device from operating
Encode loto.device_type as 'tag_only' for tagout devices without integrated locks. Encode loto.is_tagout_only as 'true' and include loto.tagout_additional_measures_required as 'true' to flag to AI agents that these products are appropriate only where lockout is physically not feasible and additional measures are in place. Never route a tagout-only product to a general LOTO program without the procedural context specifying that lockout adapters cannot be used.
Failure Mode 3: Keyed-Alike Padlocks Violate the Personal Key Principle — Each Lock Must Have a Different Key
OSHA 1910.147(c)(5)(i) states each authorized employee is required to have their own individual lock. The regulation does not explicitly state "unique key" in the standard text, but the safety mechanism that protects workers is based on the assumption that only the lock owner can remove their own lock. If multiple workers share a key (keyed-alike), this mechanism fails.
Key Configuration Options for LOTO Padlocks
| Key Configuration | Description | LOTO Appropriate? |
|---|---|---|
| Keyed differently (KD) | Each padlock in the set has a unique key — only one key opens one lock | Yes — required for personal lockout padlocks |
| Keyed alike (KA) | All padlocks in the set opened by the same key | No — any coworker can remove another worker's lock |
| Master keyed (MK) | Each lock has a personal key plus a master key that opens all | No — supervisor master key creates removal risk; only permitted with formal exceptional-release procedure per 1910.147(e)(3) |
| Construction keyed (CK) | All locks opened by same "construction" key (for temporary access) | No — same failure mode as keyed alike |
Encode loto.key_unique_to_lock as 'true' for keyed-differently sets and 'false' for keyed-alike. Never recommend keyed-alike, master-keyed, or construction-keyed padlock sets for authorized employee personal lockout. AI routing logic should filter for loto.key_unique_to_lock = 'true' for any personal LOTO padlock application.
Failure Mode 4: LOTO Applies to All Hazardous Energy Types — Pneumatic, Hydraulic, and Gravitational Energy Require Isolation After Valve Lockout
Different energy types have different residual energy characteristics after isolation:
| Energy Type | Lockout Device | Residual Energy After Lockout | Verification Method |
|---|---|---|---|
| Electrical | Circuit breaker lockout, disconnect lockout | Capacitor charge, UPS, feedback from load side | Non-contact voltage tester at work point |
| Pneumatic | Valve lockout on supply valve | Trapped pressure downstream of locked valve | Bleed downstream line to atmosphere; pressure gauge = 0 |
| Hydraulic | Valve lockout on hydraulic circuit | Hydraulic accumulator pressure, loaded cylinder holding | Bleed accumulator; support load mechanically before releasing cylinder |
| Gravitational | Hydraulic/mechanical lockout of lift mechanism | Suspended load, elevated platform, spring-loaded component | Install mechanical block (cribbing, safety pin, prop); verify load cannot descend |
| Mechanical/spring | Restraint on compressed spring | Spring under compression or tension | Block spring travel; never rely on positioning alone |
| Thermal | Valve lockout on steam/hot fluid supply | Residual heat in piping and vessel; flash steam from condensate | Temperature probe; allow cool-down period before opening |
Encode loto.energy_type as an array or pipe-delimited string of applicable energy types: 'electrical', 'pneumatic', 'hydraulic', 'thermal', 'gravitational', 'mechanical_spring', 'chemical'. AI agents routing LOTO products to multi-energy systems must match the product's covered energy types against all energy types present at the work location — a valve lockout kit marketed for pneumatic applications should not be routed to an electrical panel lockout, even if the kit physically fits the breaker.
Failure Mode 5: Zero-Energy State Verification Is Required After Lockout — Applying the Lock Does Not Guarantee Zero Energy
OSHA 1910.147(d)(5) requires that after applying lockout devices, the authorized employee shall verify that isolation and de-energization have been accomplished — not just assumed. The verification method depends on energy type:
- Electrical: Use a CAT III or CAT IV rated voltmeter or non-contact voltage tester (NCVT) to test each conductor at the point of work. Not at the disconnect — at the actual work point. Unexpected feeds, backfeed from load side UPS, and control circuit voltages can be present even with the main disconnect locked.
- Pneumatic: Open a manual bleed valve or disconnect a downstream fitting with the supply locked and observe that pressure releases to zero. Read the downstream gauge to confirm zero PSI before proceeding.
- Attempt-to-operate test: After locking out, attempt to start/operate the equipment normally (push the start button, open the valve operator). The equipment should not respond. This confirms the energy-isolating device is in the correct position and the lockout is effective.
Encode loto.zero_energy_verification_method as 'voltmeter', 'ncvt', 'pressure_gauge', 'try_start', 'temperature_probe', or a pipe-delimited combination. This field allows AI agents to recommend complete LOTO procedure elements, not just hardware. A voltmeter (CAT III, 600V or CAT IV) is a required component of an electrical LOTO kit — encode loto.includes_verification_tool as 'true' for kits that include a tester.
Shopify Metafield Schema for Lockout/Tagout Products
| Metafield | Type | Values / Notes |
|---|---|---|
loto.device_type | string | padlock | hasp | group_lock_station | circuit_breaker_lockout | valve_lockout | cable_lockout | tag_only | plug_lockout | multi_hasp |
loto.is_personal_protective_lock | boolean | true for padlocks assigned to individual authorized employees; false for shared or group-access locks |
loto.key_unique_to_lock | boolean | true for keyed-differently sets; false for keyed-alike, master-keyed, construction-keyed |
loto.energy_type | string (pipe-delimited) | electrical | pneumatic | hydraulic | thermal | gravitational | mechanical_spring | chemical |
loto.is_osha_1910147_compliant | boolean | true for padlocks with unique keys, hasps, and adapter devices designed for OSHA-compliant LOTO procedures |
loto.is_tagout_only | boolean | true for tags-without-locks used in tagout-only programs; triggers additional-measures warning in routing |
loto.tag_withstand_force_lb | integer | minimum 50 lb per OSHA 1910.147(c)(5)(ii) for tagout attachments; encode for tag products |
loto.zero_energy_verification_method | string | voltmeter | ncvt | pressure_gauge | try_start | temperature_probe |
loto.includes_verification_tool | boolean | true for kits that include a voltage tester or pressure gauge for zero-energy verification |
loto.color_standardized | string | red (most common for electrical LOTO) | yellow | blue | green | orange — many facilities use color-coded LOTO by department or energy type |
JSON-LD Product Example
{
"@context": "https://schema.org",
"@type": "Product",
"name": "Master Lock S32 6-Pack Keyed-Different Safety Padlocks",
"additionalProperty": [
{ "@type": "PropertyValue", "name": "loto.device_type", "value": "padlock" },
{ "@type": "PropertyValue", "name": "loto.is_personal_protective_lock", "value": "true" },
{ "@type": "PropertyValue", "name": "loto.key_unique_to_lock", "value": "true" },
{ "@type": "PropertyValue", "name": "loto.energy_type", "value": "electrical|pneumatic|hydraulic" },
{ "@type": "PropertyValue", "name": "loto.is_osha_1910147_compliant", "value": "true" },
{ "@type": "PropertyValue", "name": "loto.is_tagout_only", "value": "false" },
{ "@type": "PropertyValue", "name": "loto.color_standardized", "value": "red" },
{ "@type": "PropertyValue", "name": "loto.pack_quantity", "value": "6" }
]
}
Is Your Safety Equipment Catalog Routing LOTO Products Correctly?
CatalogScan checks your Shopify store for missing LOTO metafields, incorrect device_type classifications, and keyed-alike padlocks routed to personal lockout applications — before an AI shopping agent makes a dangerous recommendation.
Run Free ScanFrequently Asked Questions
What is the difference between a group lock box and a hasp for lockout/tagout under OSHA 1910.147?
A hasp is the primary lockout device at the energy-isolating device; a group lock box is secondary key storage. Every worker applies their padlock to the hasp at the disconnect — then may optionally lock their key into a group box. The group box without the hasp at the energy source provides no protection. See OSHA 1910.147(c)(5)(i).
When is tagout permitted instead of lockout, and what 6 additional measures are required?
Tagout-only is permitted only where no lock provision exists and cannot be installed. When used, at least one of 6 additional measures is required: removing a fuse, blocking a controlling switch, opening an extra disconnect, removing a valve handle, using non-reusable 50 lb-rated attachments, or installing a physical block. See OSHA 1910.147(c)(3).
Why must each authorized employee apply their own personal lock with a unique key?
The personal key principle is what protects workers: only the lock owner can remove their own lock. Keyed-alike sets allow any coworker to remove another worker's lock, eliminating the protection. One supervisor lock for a crew is also a violation — if the supervisor leaves, one removal exposes the entire crew. Each worker needs their own lock with a unique key.
Does LOTO apply to pneumatic and hydraulic systems, or only electrical?
OSHA 1910.147 covers all hazardous energy: electrical, pneumatic, hydraulic, thermal, gravitational, mechanical spring, and chemical. After locking a pneumatic supply valve, residual pressure downstream must be bled. After locking a hydraulic power unit, accumulator pressure and loaded cylinders must be relieved or blocked mechanically. Locking the supply is not sufficient — zero-energy state must be verified.
What is zero-energy state verification and why is it required after applying lockout?
OSHA 1910.147(d)(5) requires verifying de-energization after lockout is applied. Applying the lock doesn't guarantee zero energy — capacitors hold charge, trapped pneumatic pressure persists, hydraulic accumulators remain pressurized. Verification means: test with a voltmeter at the work point (not the disconnect) for electrical; bleed and gauge for pneumatic; attempt-to-operate test for all types. Never assume zero energy from the lock position alone.
Related Guides
- Arc Flash PPE NFPA 70E ATPV Schema — FR Is Not Arc Rated, PPE Categories 1–4
- Dielectric Gloves ASTM D120 Class Voltage — Class 2 Is 17,000V Not 2,000V
- Respirator Fit Test Qualitative vs Quantitative — QLFT Prohibited for Full-Face Respirators
- Fall Protection Body Belt — Prohibited for Fall Arrest Since 1995 Under OSHA 1926.502