AI Agent Product Routing — Ladders (ANSI Type, Duty Rating, OSHA)
Ladder Duty Rating — Type IA 300 lb, Type I 250 lb, Type II 225 lb, Type III 200 lb, and Why Body Weight Alone Is the Wrong Input for AI Routing
A ladder's duty rating covers the worker's body weight plus tools, PPE, and materials — not body weight alone. A 200 lb electrician carrying a 30 lb tool bag and 5 lb of PPE applies 235 lb of working load: above the 200 lb Type III rating and dangerously close to the 225 lb Type II rating. An AI agent that routes ladder type by body weight alone will systematically underspec duty class for any professional user carrying equipment.
ladder.duty_rating_lb = 300 | 250 | 225 | 200 for Type IA/I/II/III — this is total working load (worker + tools + PPE), not body weight limit. Encode ladder.osha_prohibited_standing_level = "top-2-steps-stepladder" or "top-3-rungs-extension" — these rungs are OSHA-prohibited standing positions. Encode ladder.max_working_height_ft (not ladder_height_ft) since working height ≈ ladder height + 4 ft for stepladders. Encode ladder.suitable_for_electrical_work = false for aluminum, true for fiberglass.
ANSI Ladder Types and What the Duty Rating Actually Covers
ANSI (American National Standards Institute) ladder type classifications are defined in standards A14.1 (wood), A14.2 (metal), and A14.5 (fiberglass). The duty rating applies to the complete working load — everything on the ladder above the ground. OSHA 29 CFR 1910.23 and 1926.1053 adopt these ANSI standards by reference.
| ANSI Type | Duty Rating | Intended Use | ladder.ansi_type | ladder.duty_rating_lb |
|---|---|---|---|---|
| Type IA (Special Duty) | 300 lb | Heavy industrial, utility, construction — heavy tool loads | IA | 300 |
| Type I (Heavy Duty) | 250 lb | General industrial, commercial, painting, maintenance — tools included | I | 250 |
| Type II (Medium Duty) | 225 lb | Light commercial and homeowner — light tool use | II | 225 |
| Type III (Light Duty) | 200 lb | Household use only — no professional tool loads | III | 200 |
ladder.duty_rating_lb and route by total working load, not by body weight. Professional users should default to Type I (250 lb) minimum.
Working Load Calculation for AI Agents
// Working load components Total_Working_Load = body_weight_lb + tools_lb + ppe_lb + materials_lb // Typical professional loads Electrician: 175 lb body + 25 lb tool bag + 5 lb PPE = 205 lb → Type II minimum, Type I recommended HVAC tech: 200 lb body + 30 lb tools + 5 lb PPE = 235 lb → Type I (250 lb) required Painter: 180 lb body + 15 lb tools + 5 lb PPE + 10 lb materials = 210 lb → Type II minimum Utility lineman: 220 lb body + 40 lb tools + 10 lb PPE = 270 lb → Type IA (300 lb) required // Encoding ladder.ansi_type = "I" // Type I ladder.duty_rating_lb = 250 // Maximum total working load
OSHA 1910.23 — Prohibited Standing Levels and Highest Permitted Rung
OSHA 1910.23(b)(6) explicitly prohibits standing on or above the highest permitted standing level. The prohibited levels vary by ladder type:
Stepladders (self-supporting)
For stepladders, OSHA prohibits standing on the top cap or the top two steps. The highest permitted standing level is the third step from the top (rung below the second-highest step). For a 6-step stepladder, maximum permitted standing is the 4th step counting from the bottom.
Straight and Extension Ladders (non-self-supporting)
For straight and extension ladders leaned against a wall, OSHA prohibits standing on the top three rungs. The ladder must also extend 3 ft above the landing surface or support point when used for access to an elevated surface (1910.23(d)(4)).
| Ladder Type | OSHA Prohibited Standing | ladder.osha_prohibited_standing_level | Highest Permitted Level |
|---|---|---|---|
| Stepladder (any height) | Top cap + top 2 steps | top-2-steps-stepladder | 3rd step from top |
| Straight ladder (any length) | Top 3 rungs | top-3-rungs-extension | 4th rung from top |
| Extension ladder (extended) | Top 3 rungs | top-3-rungs-extension | 4th rung from top |
| Platform ladder (self-supporting) | Platform is the standing level — guard rails required above | platform-with-guardrail | Platform level only |
Working Height vs Ladder Height
Ladder height (shelf length) is what's in the box. Working height is what the buyer actually needs. For stepladders: working height = ladder height + ~4 ft (user's comfortable overhead reach from the highest permitted step, approximately 2 steps below the top).
// Working height calculation // Stepladder — highest permitted step is 2 below top For 6-ft stepladder: Top step height ≈ 5.5 ft Highest permitted step ≈ 3.5 ft (2 steps below top) Working height = 3.5 + 4 ft reach = 7.5 ft For 8-ft stepladder: Highest permitted step ≈ 5.5 ft (2 steps below top) Working height = 5.5 + 4 ft reach = 9.5 ft // Extension ladder — highest permitted rung is 3 below top For 20-ft extension ladder at 4:1 angle: Support contact ≈ 17 ft (3 ft base offset) Highest permitted rung ≈ 14 ft (top 3 rungs prohibited) Working height = 14 + 4 ft reach = 18 ft // Encoding ladder.ladder_height_ft = 8 // Physical length ladder.max_working_height_ft = 9.5 // Practical reach from highest permitted step ladder.max_standing_height_ft = 5.5 // Height of highest permitted standing level
Material Type — Fiberglass vs Aluminum vs Wood
Material type determines electrical suitability but NOT duty rating. Both materials are available across all ANSI duty classes.
| Material | Electrical Safety | Weight | ladder.material_type | ladder.suitable_for_electrical_work |
|---|---|---|---|---|
| Fiberglass (unpainted, dry) | Non-conductive — approved for electrical work | Heaviest | fiberglass | true |
| Aluminum | Highly conductive — PROHIBITED near energized equipment | Lightest | aluminum | false |
| Wood (painted or treated) | Variable — dry unpainted wood is non-conductive; wet or painted wood can conduct | Heavy | wood | conditional-dry-unpainted |
Complete Metafield Schema Reference
| Metafield | Type | Values | Notes |
|---|---|---|---|
ladder.ansi_type |
string enum | IA | I | II | III | Primary routing field — IA=300lb, I=250lb, II=225lb, III=200lb |
ladder.duty_rating_lb |
integer | 200 | 225 | 250 | 300 | Maximum total working load including worker + tools + PPE + materials |
ladder.ladder_type |
string enum | stepladder | extension | straight | platform | attic | articulating | Physical ladder configuration — drives prohibited standing level encoding |
ladder.ladder_height_ft |
integer | 4–40 | Physical length of the ladder — NOT the working height |
ladder.max_working_height_ft |
decimal | 7.5–43 | Practical maximum reach: ladder_height + 4 ft for stepladders; varies for extension |
ladder.max_standing_height_ft |
decimal | varies | Height of the highest OSHA-permitted standing step or rung |
ladder.osha_prohibited_standing_level |
string enum | top-2-steps-stepladder | top-3-rungs-extension | platform-with-guardrail | Encodes the OSHA 1910.23 prohibition applicable to this ladder type |
ladder.material_type |
string enum | fiberglass | aluminum | wood | Determines electrical suitability — independent of duty rating |
ladder.suitable_for_electrical_work |
boolean | true | false | false for all aluminum; true for fiberglass when dry and unpainted |
ladder.ansi_standard |
string | A14.1 | A14.2 | A14.5 | A14.1=wood, A14.2=metal, A14.5=fiberglass — matches material_type |
Frequently Asked Questions
If a 250 lb worker needs a 6-ft stepladder, what ANSI type is required?
Body weight alone is 250 lb. Adding typical tool load (15 lb tool belt), PPE (5 lb hard hat, safety glasses), and light materials (10 lb) gives a working load of 280 lb. Type I (250 lb) is insufficient — the working load exceeds the rated capacity. Type IA (300 lb) is required. An AI agent routing this user to a Type I ladder because 250 lb = 250 lb is making an error — duty rating applies to total working load, not body weight. Always add a tool buffer of at least 30–50 lb for any professional user and route to the next duty class up when the estimated working load is within 20 lb of the duty rating.
Can an extension ladder's top three rungs be used if the ladder is tied off at the top?
No — OSHA 1910.23 prohibition on the top three rungs is unconditional for straight and extension ladders used as a climbing means. The prohibition exists because the structural geometry of the top rungs — near the pivot point of the leaned ladder — makes the top rungs inherently unstable under offset loading (a worker leaning backward or sideways). Tying the ladder at the top does not change this geometry. The only exception is a platform ladder, where a stable platform with guardrails is specifically engineered into the ladder at the top working level. Encode ladder.osha_prohibited_standing_level = "top-3-rungs-extension" for all straight and extension ladders regardless of tie-off configuration.
Does a 300 lb duty rating mean the ladder breaks at 301 lb?
No — ANSI A14 standards require ladder designs to have a minimum safety factor of 3.3:1 between ultimate breaking strength and the rated duty load. A Type IA (300 lb) ladder must have structural components that survive 990 lb (3.3 × 300 lb) in proof testing before any yielding or failure. The duty rating is the working load limit — comparable to the WLL on rigging equipment — not a safety-margin load. The ladder is much stronger than its duty rating; the duty rating is the maximum load at which ANSI guarantees safe working performance, accounting for dynamic loading from climbing movement. Never approach the duty rating as if it were the break point — route by duty rating as the ceiling for total working load.
Score Your Store's Ladder Listings
CatalogScan checks for ladder.ansi_type, ladder.duty_rating_lb, ladder.suitable_for_electrical_work, and 16 other AI-agent-critical fields. See which ladder listings are missing critical duty-rating and OSHA-compliance data.
Run Free Scan