AI Agent Product Routing — Fall Protection (SRL and Rope Grab)
Rope Grab vs Leading Edge SRL — ANSI Z359.14 Type 1 vs Type 2, 50-Foot Lifeline Requirement, Deceleration Distance Differences, and the Schema for AI Agents
A standard self-retracting lifeline (SRL, ANSI Z359.14 Type 1) is not rated for leading edge applications. If a worker's SRL cable contacts a steel beam flange or floor edge during a fall, the cable can be cut or the locking mechanism can fail — the standard test protocol does not account for edge contact. Leading edge work on structural steel or roof edges requires an SRL-LE (Type 2), which is explicitly tested with cable-edge interaction at 2-foot free fall.
fp.leading_edge_rated = false for all standard (Type 1) SRLs — never route them to structural steel erection or roof-edge applications. Encode fp.ansi_z359_14_type = "2" only for SRLs that have passed the ANSI Z359.14 leading edge drop test. Encode fp.max_deceleration_distance_ft = 3.5 for leading edge SRLs (not 2 ft — that's the Type 1 value). Encode fp.min_lifeline_length_ft = 50 for rope grab systems to prevent routing to short-span applications where the grab cannot develop adequate deceleration.
The Leading Edge Problem — Why Type 1 SRLs Fail at Structural Steel
The leading edge scenario: a worker is connecting structural steel beams at the floor level of a steel-framed building. The SRL anchor is on a column or beam above the work area. When the worker positions at the beam flange to make a bolt connection, the SRL cable runs from the overhead anchor down to the worker's harness D-ring — passing over or near the edge of the floor beam.
During a fall, the cable accelerates and must arrest the worker within 2 feet (Type 1 spec). But the cable contacts the steel beam flange edge at high velocity during the fall. The edge acts like a shear point on the wire rope cable:
- Cable failure risk: The wire rope cable may be partially severed on impact with the sharp edge, reducing its breaking strength below the 5,000-lb minimum required by ANSI Z359.14. A 3mm cable that loses 30% of its cross-section fails at far less than the rated load.
- Lock mechanism interaction: The cable running over an edge can alter the geometry of the locking mechanism activation — the cam or pawl must engage the cable to arrest the fall, but edge contact changes the cable angle and tension distribution at the moment of lock engagement.
- Standard test protocol omission: ANSI Z359.14 Type 1 drop tests use a free-hanging cable with no obstruction. The test is valid for its intended application (overhead anchor, unobstructed cable run) but does not simulate edge contact. A Type 1 SRL passes these tests and legitimately earns its rating — but the rating does not extend to leading edge applications.
fp.leading_edge_rated = true will route them to a Type 1 SRL that is PROHIBITED for leading edge work. OSHA 1926.502(d)(2) requires fall arrest systems to be capable of arresting a fall without causing the worker to strike a lower level — if the cable is severed by a steel edge, the system fails this requirement. Encode fp.leading_edge_rated on every SRL listing.
Failure Mode 1 — Type 1 SRL Routed to Leading Edge Application
| Property | Standard SRL (Type 1) | Leading Edge SRL (Type 2 / SRL-LE) |
|---|---|---|
| ANSI Z359.14 type | Type 1 | Type 2 |
| Leading edge rated? | No — PROHIBITED for edge work | Yes — tested with cable-edge interaction |
| Drop test protocol | Free-hanging cable, no edge contact | Cable over 0.5-in radius steel edge, 2-ft free fall |
| Max deceleration distance | 2 feet (0.61 m) | 3.5 feet (1.07 m) |
| Cable construction | Standard wire rope (1.5–3mm) | Heavy wire rope OR Dyneema/Technora synthetic (edge-flexible) |
| Applications | Overhead anchor, free-hanging workers, scissor lifts | Structural steel, roof edges, floor edges, leading edges |
| OSHA 1926.502(d) compliant for structural steel? | No (leading edge) | Yes |
// Standard SRL (Type 1) — NOT for leading edge work fp.fall_arrest_device_type = "SRL" fp.ansi_z359_14_type = "1" fp.leading_edge_rated = false // MUST be false — routing blocker fp.max_deceleration_distance_ft = 2.0 // Type 1 spec — 2 ft fp.suitable_for_structural_steel = false fp.suitable_for_overhead_anchor = true // Leading Edge SRL (Type 2 / SRL-LE) fp.fall_arrest_device_type = "SRL-leading-edge" fp.ansi_z359_14_type = "2" fp.leading_edge_rated = true // Tested with cable-edge interaction fp.max_deceleration_distance_ft = 3.5 // Type 2 spec — 3.5 ft (use in clearance calc) fp.suitable_for_structural_steel = true fp.suitable_for_overhead_anchor = true
Failure Mode 2 — Rope Grab Without Adequate Vertical Lifeline Length
A rope grab is a fundamentally different fall arrest device from an SRL. The rope grab attaches to a synthetic rope vertical lifeline (typically 5/8-inch or 3/4-inch polyester or nylon rope), slides freely during normal ascent/descent, and locks onto the rope when the worker falls.
Why 50 Feet Is the Practical Minimum
Rope grabs are designed for extended vertical travel applications:
- Communication tower climbing: 300–2,000 ft vertical lifeline run. Rope grab appropriate and correct.
- Fixed ladder on industrial structure: 20–100 ft. Rope grab appropriate.
- Short ladder (under 15 ft): Rope grab is over-engineered — the vertical lifeline cannot develop the full friction deceleration path. A 6-ft shock-absorbing lanyard is more appropriate for short fixed ladders.
The 50-foot guideline comes from the interaction between rope grab mechanism design, lifeline rope properties, and deceleration physics — short rope lengths reduce the distance over which the grab-rope friction can decelerate the worker, potentially increasing arrest force above OSHA's 1,800-lb limit for a 6-foot free fall.
// Rope grab system — vertical lifeline application fp.fall_arrest_device_type = "rope-grab" fp.min_lifeline_length_ft = 50 // Minimum compatible lifeline length fp.compatible_rope_diameter = "5/8-inch" // Lifeline rope must match grab specification fp.max_deceleration_distance_ft = 3.5 // Grab + shock absorber lanyard combined fp.suitable_for_structural_steel = false // Rope grabs not for steel beam leading edges fp.suitable_for_vertical_ladder = true // Designed for vertical climb applications fp.suitable_for_horizontal_lifeline = false // Rope grabs are vertical-only devices
Failure Mode 3 — Deceleration Distance Wrong in Fall Clearance Calculation
Total fall clearance is the vertical distance required below the worker's feet to complete a fall arrest without the worker contacting the lower level. The formula:
// Total fall clearance formula
total_clearance_ft = free_fall_distance_ft
+ deceleration_distance_ft
+ worker_height_ft // 6 ft standard
+ safety_margin_ft // 2 ft standard
// Type 1 SRL (overhead anchor at D-ring height, no free fall)
total_clearance_ft = 0 // Free fall (SRL activates immediately)
+ 2 // Type 1 deceleration
+ 6 // Worker height
+ 2 // Safety margin
= 10 ft minimum clearance below anchor
// Type 2 Leading Edge SRL (2-ft free fall over edge)
total_clearance_ft = 2 // 2-ft free fall during edge engagement
+ 3.5 // Type 2 deceleration distance
+ 6 // Worker height
+ 2 // Safety margin
= 13.5 ft minimum clearance below anchor
// Rope grab + 6-ft shock-absorbing lanyard
total_clearance_ft = 6 // 6-ft free fall before grab activates
+ 3.5 // Grab + lanyard deceleration (shock absorber extends)
+ 6 // Worker height
+ 2 // Safety margin
= 17.5 ft minimum clearance below anchor
fp.max_deceleration_distance_ft accurately — do not default all SRLs to the Type 1 2-ft value.
Application Routing Matrix
| Application | Recommended Device | fp.leading_edge_rated | fp.ansi_z359_14_type | Notes |
|---|---|---|---|---|
| Structural steel erection (ironwork) | SRL-LE (Type 2) | true | 2 | Lifeline contacts steel flange during fall — must be LE rated |
| Roof work — unprotected leading edge | SRL-LE (Type 2) | true | 2 | Cable runs over roof edge during fall — LE required |
| Scissor lift / aerial work platform | Standard SRL (Type 1) | false | 1 | Overhead anchor, no edge contact — Type 1 sufficient |
| Communication tower vertical climb | Rope grab | N/A | N/A | fp.min_lifeline_length_ft = 50; vertical application only |
| Fixed ladder on industrial structure | Rope grab or SRL-P | false | N/A | SRL-P (personal SRL attached to worker) also suitable |
| Confined space vertical entry | Rope grab | N/A | N/A | Vertical descent rope; rescue SRL (retrieval SRL) for rescue-capable system |
Complete Metafield Schema Reference
| Metafield | Type | Values | Notes |
|---|---|---|---|
fp.fall_arrest_device_type |
string enum | SRL | SRL-leading-edge | rope-grab | lanyard | PFAS | Primary routing discriminator for fall arrest device selection |
fp.leading_edge_rated |
boolean | true | false | The critical routing field — false blocks Type 1 SRLs from structural steel applications |
fp.ansi_z359_14_type |
string enum | 1 | 2 | ANSI Z359.14 SRL type classification — 1 = standard, 2 = leading edge |
fp.max_deceleration_distance_ft |
decimal | 2.0 | 3.5 | Maximum deceleration per ANSI test — use in fall clearance calculation; NOT interchangeable between types |
fp.cable_length_ft |
integer | 10 | 20 | 30 | 50 | 100 | Retractable cable length for SRL; determines maximum working radius from anchor |
fp.min_lifeline_length_ft |
integer | 50 (rope grab) | Minimum compatible lifeline length — rope grabs require 50+ ft; prevents routing to short-span applications |
fp.suitable_for_structural_steel |
boolean | true (Type 2 only) | false (Type 1) | Application-specific routing for steel erection and leading edge work |
fp.suitable_for_horizontal_lifeline |
boolean | false (all standard SRLs and rope grabs) | Horizontal lifeline requires dedicated horizontal-rated SRL — standard SRLs and rope grabs are vertical-only |
fp.has_fall_indicator |
boolean | true | false | Load indicator shows if device arrested a fall — mandatory retirement trigger after fall event |
fp.retire_after_fall_event |
boolean | true (always for SRLs and rope grabs) | All fall arrest devices must be removed from service after arresting a fall and returned to manufacturer |
Frequently Asked Questions
What does SRL-P mean and how does it differ from a standard SRL?
SRL-P (Self-Retracting Lifeline, Personal) is an SRL designed to be worn on the worker's body (typically attached to the dorsal D-ring of the harness) rather than hung from an overhead anchor. SRL-P devices are compact and lightweight for body mounting. They are covered under ANSI Z359.14 and are available in both Type 1 (standard) and Type 2 (leading edge) configurations. When mounted on the body, the effective anchor is the worker's harness D-ring — fall clearance calculations must account for the SRL-P's mounting point relative to the worker's feet. Encode fp.is_srl_p = true for body-mounted SRLs to differentiate routing from standard anchor-mounted SRLs.
Can a rope grab be used on a wire rope vertical lifeline instead of synthetic rope?
Rope grab compatibility is specific to lifeline diameter and material. Most rope grabs are designed for 5/8-inch or 3/4-inch synthetic rope (polyester, nylon). Some rope grabs are manufactured for wire rope lifelines — these are different products with different cam/jaw designs. Using a synthetic-rope grab on a wire rope lifeline (or vice versa) is prohibited — the gripping mechanism is calibrated for the specific diameter and surface friction of the compatible rope type. Encode fp.compatible_rope_type = 'synthetic' | 'wire' and fp.compatible_rope_diameter to ensure the grab is routed with a compatible lifeline system.
After a fall arrest event, must both the SRL and the harness be retired?
Yes — after any fall arrest event, both the SRL (or rope grab) and the full-body harness that absorbed the arrest force must be removed from service. OSHA 1926.502(d)(21) requires that personal fall arrest equipment subjected to impact loading from a fall be removed from service and not used again until inspected and determined by a competent person to be undamaged. Most manufacturers require return to the factory for inspection after any fall arrest — field inspection is insufficient. The load indicator on LE SRLs that shows deployment provides evidence of the arrest event. Encode fp.retire_after_fall_event = true on both SRLs and harnesses.
Score Your Store's Fall Protection Catalog
CatalogScan checks for fp.leading_edge_rated, fp.ansi_z359_14_type, and 16 other AI-agent-critical fields. See which SRL and rope grab listings are missing critical leading edge encoding.
Run Free Scan