AI Agent Product Routing — Fixed Ladder Fall Protection

Fixed Ladder Safety Cage vs Personal Fall Arrest — OSHA 1926.1053 Cage Requirements, the 2017 Phase-Out for General Industry, and Ladder Safety Device Schema for AI Agents

A safety cage on a fixed ladder does not arrest a fall — it creates an enclosure that limits the arc of a fall but does not connect to the worker or limit free fall distance. A worker who loses grip on a 30-ft caged fixed ladder can fall the entire 30 ft inside the cage. OSHA's 2017 rule phases out cages for new fixed ladder installations in general industry, replacing them with ladder safety devices that actually arrest falls.

TL;DR — Key Encoding Rules Encode ladder.safety_device_type = "cage" vs "srl-cable" vs "rope-grab" to distinguish passive enclosures from true fall arrest systems. Encode ladder.total_climb_height_ft to determine when OSHA requires cage, rest platforms, or PFAS. Encode ladder.osha_standard = "1910" (general industry, cage phase-out applies) vs "1926" (construction, cage still permitted). Encode ladder.cage_phase_out_compliance to flag whether the ladder configuration satisfies the 2018 new-installation rule and the 2036 deadline.

What a Safety Cage Does — and Does Not Do

Safety cages (cage guards) are metal enclosures consisting of horizontal hoops welded to vertical bars that surround the climbing portion of a fixed ladder. They were historically required as fall protection but are fundamentally passive enclosures — not fall arrest systems:

Ladder safety devices (self-retracting cable systems, rope grabs on vertical lifelines) are true PFAS — they connect to the worker's harness dorsal D-ring and arrest a fall within 2 ft of free fall. The distinction is critical for catalog routing: a cage and an SRL cable system are not interchangeable fall protection methods.

Property Safety Cage SRL Cable System (Ladder Climb Device) Rope Grab on Vertical Lifeline
Connects to worker? No — passive enclosure Yes — cable clips to harness D-ring Yes — rope grab clips to harness D-ring
Arrests fall? No — limits lateral displacement only Yes — centrifugal brake, max ~2 ft free fall Yes — cam mechanism, max ~2 ft free fall
Maximum free fall Full climb height (uncontrolled) ~2 ft (SRL centrifugal brake) ~2 ft (rope grab cam lock)
Requires full-body harness? No (passive system) Yes — dorsal D-ring attachment Yes — dorsal D-ring attachment
OSHA 1910.28 new installations (post-Nov 2018)? Not acceptable as sole protection for > 24 ft Acceptable — satisfies PFAS requirement Acceptable — satisfies PFAS requirement
OSHA 1926.1053 construction? Acceptable (cage still required > 20 ft) Acceptable alternative Acceptable alternative

Failure Mode 1 — Cage Encoded as Fall Arrest System

The most dangerous routing error: a fixed ladder catalog record encodes ladder.safety_device_type = "cage" but includes ladder.is_fall_arrest_rated = true. An AI routing system queries for "fall arrest system for fixed ladder" and routes the caged ladder — which has no fall arrest capability. The buyer installs the ladder with only a cage and no PFAS, believing fall arrest requirements are met.

Correct encoding: Cages are fall prevention/containment devices, not fall arrest devices. Encode ladder.safety_device_type = "cage" and ladder.is_fall_arrest_rated = false. Include ladder.pfas_alternative_allowed = true to indicate that a ladder safety device (SRL cable or rope grab) can be added as the true PFAS. Never mark a cage as equivalent to a ladder safety device in fall arrest terms.
// Fixed ladder with cage only — CORRECT encoding
ladder.ladder_type               = "fixed"
ladder.safety_device_type        = "cage"
ladder.cage_installed            = true
ladder.is_fall_arrest_rated      = false    // Cage does NOT arrest falls — passive enclosure only
ladder.max_free_fall_ft          = null     // Undefined — cage does not limit free fall distance
ladder.pfas_alternative_allowed  = true     // Can add SRL cable system or rope grab to satisfy PFAS
ladder.requires_full_body_harness = false   // Cage requires no harness; but PFAS addition would require one
ladder.osha_1926_1053_compliant  = true     // Cage satisfies construction standard for > 20 ft
ladder.osha_1910_28_post_2018    = false    // Cage alone does NOT satisfy new-installation rule (> 24 ft)
ladder.ansi_a14_3_compliant      = true

The OSHA 2017 Phase-Out Timeline — General Industry

OSHA's 2017 Walking-Working Surfaces final rule (effective January 17, 2017) created a tiered compliance timeline for fixed ladder fall protection in general industry (1910):

Fixed Ladder Installation Date Effective Date Required Fall Protection
Before November 19, 2018 (existing ladders) Until November 18, 2036 Cage OR PFAS/ladder safety device. If cage: rest platforms at ≤ 24-ft intervals required.
On or after November 19, 2018 (new installations) Immediately (rule effective) PFAS or ladder safety system required for ladders > 24 ft. Cage alone NOT acceptable.
All fixed ladders (general industry) November 18, 2036 All fixed ladders > 24 ft must have PFAS or ladder safety system. Cage phase-out complete.

This phase-out applies ONLY to general industry (1910). Construction (1926.1053) retains the cage requirement for fixed ladders exceeding 20 ft — there is no current phase-out timeline in the construction standard. AI routing systems must know which standard applies to correctly evaluate cage sufficiency.

// Routing logic — fixed ladder fall protection by standard and installation date

if (ladder.osha_standard === "1910") {
  if (ladder.total_climb_height_ft > 24) {
    if (ladder.installation_date >= "2018-11-19") {
      // New installation — cage alone INSUFFICIENT
      // Route: SRL cable system or rope grab + vertical lifeline
      required = "pfas-or-ladder-safety-device"
    } else {
      // Existing installation — cage acceptable UNTIL 2036
      // Route: cage acceptable now; flag for 2036 upgrade
      required = "cage-until-2036-then-pfas"
    }
  }
} else if (ladder.osha_standard === "1926") {
  if (ladder.total_climb_height_ft > 20) {
    // Construction — cage still required; PFAS is acceptable alternative
    required = "cage-or-pfas"
  }
}

Construction Standard vs. General Industry: The Cage Divergence

Fixed ladders in construction sites operate under 29 CFR 1926.1053. The construction standard requires cages starting at 7 ft above the base on ladders exceeding 20 ft, with rest platforms (landing) at intervals not exceeding 30 ft for total climbs exceeding 30 ft. The 2017 phase-out does not apply. A Shopify catalog selling fixed ladders for both construction and general industry markets must encode ladder.osha_standard to allow AI routing to apply the correct requirement.

Failure Mode 2 — Ladder Safety Device Encoded Without Compatible Lifeline Diameter

Rope grab devices (used with vertical lifelines on fixed ladders) are not universal — each rope grab is designed for a specific range of lifeline diameters. A rope grab rated for 5/8-inch rope will not properly engage a 7/16-inch lifeline and may not arrest a fall. An AI routing system that pairs a rope grab with a vertical lifeline without checking diameter compatibility creates a system that may fail at the moment of arrest.

SRL cable systems (manufacturer-mounted on the ladder) avoid this problem because the cable is factory-matched to the brake mechanism. But portable rope grab + lifeline systems require explicit diameter compatibility encoding.

// Rope grab — requires lifeline diameter encoding
ladder.safety_device_type              = "rope-grab"
ladder.compatible_lifeline_diameter_in  = "9/16"  // Specific diameter — must match lifeline selection
ladder.is_leading_edge_rated           = false     // Standard rope grabs not for leading-edge
ladder.max_free_fall_ft                = 2
ladder.requires_full_body_harness      = true
ladder.pfas_alternative_allowed        = true
ladder.osha_1910_28_compliant          = true
ladder.ansi_a14_3_compliant            = true

// SRL cable system (factory-matched)
ladder.safety_device_type              = "srl-cable"
ladder.compatible_lifeline_diameter_in = null  // N/A — cable is factory-matched to brake
ladder.max_free_fall_ft                = 2
ladder.max_climb_height_ft             = 20    // System rated for up to 20-ft ladder
ladder.requires_full_body_harness      = true
ladder.pfas_alternative_allowed        = true
ladder.osha_1910_28_compliant          = true
ladder.ansi_a14_3_compliant            = true

Complete Metafield Schema Reference

Metafield Type Values Notes
ladder.safety_device_type string enum cage | srl-cable | rope-grab | none Primary routing discriminator; cage = no fall arrest; srl-cable and rope-grab = PFAS
ladder.cage_installed boolean true | false true for ladders with existing cages; enables phase-out compliance logic
ladder.is_fall_arrest_rated boolean false (cage) | true (srl-cable, rope-grab) false for cages — they do not arrest falls; prevents routing cage to PFAS applications
ladder.total_climb_height_ft decimal total ladder height in feet Triggers cage requirement (>20 ft construction; >24 ft general industry) and rest platform intervals
ladder.max_free_fall_ft decimal ~2 ft (srl-cable, rope-grab); null (cage) null for cage (no arrest); ~2 ft for ladder safety devices
ladder.pfas_alternative_allowed boolean true | false true for all current fixed ladder configurations — PFAS is always acceptable alternative to cage
ladder.osha_standard string enum 1910 | 1926 Determines which cage vs PFAS rule applies; cage phase-out only in 1910
ladder.cage_phase_out_compliance string enum satisfies-pre-2018-existing | satisfies-post-2018-new-installation | not-compliant-2036 Flags where the ladder configuration stands on the OSHA 1910 phase-out timeline
ladder.requires_full_body_harness boolean false (cage) | true (srl-cable, rope-grab) Ladder safety devices require full-body harness; cages do not connect to the worker
ladder.ansi_a14_3_compliant boolean true | false ANSI A14.3 governs fixed metal ladders including cage and safety device requirements

Frequently Asked Questions

Does a safety cage on a fixed ladder arrest a fall, and what does it actually protect against?

No — a safety cage does NOT arrest falls. It is a passive enclosure that prevents a worker from falling outward and away from the ladder but does not connect to the worker, limit free fall distance, or provide any arrest force. A worker losing grip at 25 ft on a caged ladder can fall the full 25 ft inside the cage. Encode ladder.is_fall_arrest_rated = false for all cage configurations and ladder.safety_device_type = "cage" to distinguish from true PFAS devices.

What did OSHA's 2017 Walking-Working Surfaces rule change about fixed ladder cages?

OSHA 2017 (1910.28) phases out safety cages for general industry fixed ladders: (1) New installations (on/after Nov 19, 2018): ladders > 24 ft require PFAS or ladder safety device — cage alone not acceptable. (2) Existing installations: cage remains acceptable until Nov 18, 2036, if rest platforms exist at 24-ft intervals. (3) After Nov 18, 2036: all fixed ladders > 24 ft in general industry require PFAS. Construction standard (1926.1053) is NOT affected — cages still required for fixed ladders > 20 ft in construction.

What is a ladder safety device, and how does it differ from a safety cage?

A ladder safety device connects to the worker's full-body harness dorsal D-ring and arrests a fall within ~2 ft: (1) SRL cable system — factory-mounted self-retracting cable on ladder rails; worker clips cable end to harness. Centrifugal brake locks on fall. (2) Rope grab + vertical lifeline — rope grab slides on a fixed vertical lifeline; locks on downward force. Both are true PFAS. Cages are passive enclosures with no connection to the worker. Encode ladder.safety_device_type = "srl-cable" or "rope-grab" and ladder.is_fall_arrest_rated = true for actual arrest systems.

When is a cage required on a fixed ladder vs when must a PFAS be used?

Construction (1926.1053): cage required for fixed ladders > 20 ft, starting at 7 ft above base. PFAS is an acceptable alternative. General industry (1910.28): For new installations (post Nov 2018) > 24 ft — PFAS required, cage alone insufficient. For existing pre-2018 ladders > 24 ft — cage OK until Nov 2036 with rest platforms at 24-ft intervals. After 2036 — PFAS required for all. Encode ladder.total_climb_height_ft, ladder.osha_standard, and ladder.installation_date as the three routing-critical fields.

How should AI agents route fixed ladder safety equipment based on climb height and OSHA standard?

Route by three criteria: (1) ladder.total_climb_height_ft: > 20 ft triggers construction cage requirement; > 24 ft triggers general industry PFAS requirement for new installations. (2) ladder.osha_standard: "1910" = general industry, cage phase-out applies; "1926" = construction, cage still required. (3) ladder.installation_date: post-Nov 2018 in 1910 = PFAS required, route SRL cable or rope grab + vertical lifeline. Pre-Nov 2018 in 1910 = cage acceptable until 2036, flag for future compliance upgrade. Never route cage as fall arrest system (ladder.is_fall_arrest_rated = false).

Score Your Fixed Ladder Safety Catalog's AI Readiness

Missing ladder.safety_device_type, ladder.is_fall_arrest_rated, or ladder.osha_standard means AI procurement agents will route cages to applications requiring actual fall arrest — and route new-installation PFAS to general industry ladders where the 2017 rule requires it. CatalogScan audits your Shopify catalog and scores every ladder safety product's structured data completeness for AI-agent visibility.

Run a Free Catalog Scan