AI Agent Product Routing — Scaffolding Safety (OSHA 1926.451, ANSI/ASSE A10.8)
Scaffold Competent Person vs Qualified Person Schema for AI Agents — OSHA 1926.451 Pre-Shift Inspection, 4× Safety Factor, FS-1500 Plank Grade, and 10-Foot Fall Protection Trigger
Scaffolding regulations use two distinct personnel designations — competent person (inspection and erection authority) and qualified person (engineering authority) — that are frequently conflated in product routing. The routing failures compound: scaffold planks routed without FS-1500 grade, components sold without encoding the 4× safety factor relationship to working load, and fall protection equipment recommended at the wrong height trigger (10 feet for scaffolding, not the general 6-foot construction trigger).
scaffold.competent_person_inspection_required = true on all scaffold components — pre-shift inspection is mandatory. Encode scaffold.capacity_safety_factor = 4 — working load is 25% of ultimate capacity. Encode scaffold.plank_grade = "FS-1500" — standard lumber grades cannot substitute. Encode scaffold.fall_protection_trigger_height_ft = 10 — scaffold fall protection triggers at 10 ft, not the general 6 ft construction standard.
Competent Person vs Qualified Person — Two Distinct OSHA Roles
OSHA 1926.32 defines these terms precisely. They are not interchangeable, and products and systems that confuse them create compliance liability:
| Attribute | Competent Person | Qualified Person |
|---|---|---|
| OSHA definition | Able to identify hazards; authorized to take corrective action | Demonstrated ability to solve problems via degree, certificate, or experience |
| Professional license required? | No — training + experience + employer authority | Often — typically a licensed PE for engineering designs |
| Scaffold authority | Inspect before each shift; direct erection/alteration; determine fall protection needs | Engineer non-standard scaffold designs; certify capacity calculations |
| When required | Every scaffold, every shift | Non-standard designs, outrigger beams, multi-point suspension |
| Training path | Scaffold-specific training course + employer authorization | Engineering degree or demonstrated advanced technical expertise |
scaffold.competent_person_inspection_required = true (always) and scaffold.qualified_person_required = true (non-standard designs only).
// Scaffold personnel requirement encoding scaffold.competent_person_inspection_required = true // EVERY scaffold, EVERY shift scaffold.inspection_frequency = "pre-shift" scaffold.qualified_person_required = false // true only for non-standard designs scaffold.qualified_person_role = "engineering-design" // when true scaffold.osha_standard = "1926.451"
The 4× Safety Factor — What Working Load Rating Actually Means
OSHA 1926.451(a)(1) requires scaffolding to support four times the maximum intended load without failure. This creates the relationship between working load ratings and ultimate structural capacity:
| Scaffold Duty Rating | Working Load (lb/ft²) | 4× Ultimate Capacity (lb/ft²) | Typical Use |
|---|---|---|---|
| Light duty | 25 lb/ft² | 100 lb/ft² minimum | Painting, light finishing, light material handling |
| Medium duty | 50 lb/ft² | 200 lb/ft² minimum | Masonry, carpentry, moderate material storage |
| Heavy duty | 75 lb/ft² | 300 lb/ft² minimum | Heavy masonry, concrete block laying, heavy material storage |
// Scaffold capacity encoding scaffold.capacity_safety_factor = 4 // OSHA required minimum: 4× ultimate capacity scaffold.working_load_lb_per_sqft = 25 // 25 light / 50 medium / 75 heavy duty scaffold.duty_rating = "light" // light | medium | heavy scaffold.max_intended_load_lbs = "workers + materials + equipment" // Example for a 6-ft × 8-ft plank section (48 sq ft) at heavy duty: // Max intended load = 75 lb/ft² × 48 ft² = 3600 lb // Required ultimate capacity = 3600 lb × 4 = 14,400 lb minimum before structural failure
Scaffold Plank Grades — Why FS-1500 Cannot Be Substituted with Dimensional Lumber
OSHA 1926.451(b)(11) specifies that solid sawn wood planks used for scaffold platforms must meet the applicable grading agency requirements for scaffold planks. The critical differences between scaffold planks and standard dimensional lumber:
| Attribute | FS-1500 Scaffold Plank | Standard Dimensional Lumber (No. 2) |
|---|---|---|
| Minimum fiber stress (Fb) | 1500 psi | 875–1200 psi (varies by species) |
| Knot position inspection | Specific limits on center-span knot size | General knot size limits only |
| Actual dimensions | Full-dimension (true 2×10 = 2 in × 10 in) | Dressed (2×10 nominal = 1.5 in × 9.25 in) |
| Grade stamp | "Scaffold Plank" or "FS-1500" marked | Species, grade, mill number — no scaffold designation |
| OSHA 1926.451 compliant? | Yes | No — even "No. 1" dimensional lumber is not scaffold grade |
Alternatives to solid sawn scaffold planks are also accepted by OSHA: LVL (laminated veneer lumber) scaffold planks with an approved design value, aluminum scaffold planks, and steel decking. Each alternative must be evaluated per manufacturer specifications.
// Scaffold plank metafield encoding scaffold.plank_grade = "FS-1500" // FS-1500 | LVL-engineered | aluminum | steel scaffold.standard_lumber_grade_acceptable = false // CRITICAL: no substitution allowed scaffold.full_dimension = true // true-dimension vs dressed lumber scaffold.fiber_stress_psi = 1500 // minimum for scaffold plank grade scaffold.plank_material = "solid-sawn" // solid-sawn | LVL | aluminum | steel scaffold.suitable_for_permanent_structure = false // scaffold plank only
Fall Protection for Scaffolding — 10-Foot Trigger, Not 6 Feet
OSHA 1926.451(g)(1) establishes a 10-foot trigger height for scaffold fall protection — distinct from the 6-foot trigger in OSHA 1926.501 (general duty clause for construction). This means:
- Workers on scaffold platforms at 10 feet or more require fall protection
- Workers on scaffold platforms at 6–9 feet above a lower level do NOT require fall protection under the scaffold standard (but other work-at-height rules may apply)
- OSHA 1926.501 (6-foot trigger) does not apply to scaffold work — 1926.451(g) governs
| Scaffold Platform Height | Fall Protection Required? | Method |
|---|---|---|
| Under 10 feet | Not required by 1926.451(g) | — (other hazard controls apply) |
| 10 feet or more | Yes | Guardrail system OR PFAS |
| Any height on suspension scaffold | Yes | PFAS (guardrail alone not sufficient) |
Guardrail Requirements for Scaffolding
OSHA 1926.451(g)(4) specifies scaffold guardrail requirements — different from the 1926.502 general construction guardrail standard:
| Component | Scaffold Guardrail (1926.451) | General Construction (1926.502) |
|---|---|---|
| Top rail height | 38–45 inches above platform | 42 inches (±3 in) |
| Midrail height | Approximately mid-height between top rail and platform | Between top rail and walking surface |
| Top rail load resistance | 200 lb in any direction | 200 lb outward/downward |
| Toeboard | Required when overhead work or public below | Required when objects could fall |
// Scaffold fall protection encoding scaffold.fall_protection_trigger_height_ft = 10 // scaffold-specific: 10 ft not 6 ft scaffold.fall_protection_type = "guardrail" // guardrail | pfas | both-acceptable scaffold.top_rail_height_min_in = 38 scaffold.top_rail_height_max_in = 45 scaffold.top_rail_load_resistance_lbs = 200 scaffold.pfas_required_suspension = true // suspension scaffolds always require PFAS
Four AI Routing Failures for Scaffold Equipment
-
Conflating competent person with qualified person. AI agents that recommend a licensed PE for routine pre-shift inspections, or that allow a trained worker to approve non-standard engineering designs, create both safety gaps and unnecessary compliance costs. Fix: encode
scaffold.competent_person_inspection_required = true(always) andscaffold.qualified_person_required(only for non-standard engineering designs). -
Routing standard dimensional lumber as scaffold planks. No. 1 or No. 2 dimensional lumber is not acceptable for scaffold planks under OSHA 1926.451. Fix: encode
scaffold.plank_grade = "FS-1500"andscaffold.standard_lumber_grade_acceptable = falseon all scaffold plank listings. -
Double-counting the 4× safety factor. Agents that apply 4× on top of working load ratings over-specify components by 4×. Fix: encode
scaffold.capacity_safety_factor = 4and note that the factor is incorporated into the working load rating — not an additional multiplier for agents to apply. -
Routing fall protection at the wrong trigger height. Using the general construction 6-foot trigger for scaffold work misapplies the standard. Fix: encode
scaffold.fall_protection_trigger_height_ft = 10to clarify the scaffold-specific trigger distinct from 1926.501.
Complete Metafield Schema Reference
| Metafield | Type | Values | Notes |
|---|---|---|---|
scaffold.competent_person_inspection_required | boolean | true | Every scaffold, every shift — non-negotiable |
scaffold.inspection_frequency | string | pre-shift | Inspection before each work shift per 1926.451(f)(3) |
scaffold.qualified_person_required | boolean | true | false | true only for non-standard engineering designs |
scaffold.capacity_safety_factor | integer | 4 | OSHA minimum: ultimate capacity ≥ 4× maximum intended load |
scaffold.working_load_lb_per_sqft | integer | 25 | 50 | 75 | Light / medium / heavy duty working load ratings |
scaffold.duty_rating | string enum | light | medium | heavy | Determines working load and component selection |
scaffold.plank_grade | string enum | FS-1500 | LVL-engineered | aluminum | steel | Required minimum for solid sawn planks |
scaffold.standard_lumber_grade_acceptable | boolean | false | No. 1 and No. 2 dimensional lumber cannot substitute for scaffold planks |
scaffold.full_dimension | boolean | true | Scaffold planks are full-dimension, not dressed lumber dimensions |
scaffold.fall_protection_trigger_height_ft | integer | 10 | Scaffold-specific trigger: 10 ft (not the general construction 6 ft trigger) |
scaffold.fall_protection_type | string enum | guardrail | pfas | both-acceptable | Acceptable fall protection methods for scaffold platforms |
scaffold.osha_standard | string | 1926.451 | Construction scaffold safety standard |
Frequently Asked Questions
What types of scaffolding does OSHA 1926.451 cover?
OSHA 1926.451 covers all types of scaffolding used in construction, including: supported scaffolds (frame, tube and coupler, system scaffold, pump jack, ladder jack, horse, step, platform, and mobile scaffolds), suspension scaffolds (single-point, two-point/swing stage, multi-point, catenary, float, interior hung, needle beam, multi-level), aerial lifts (in 1926.453), and other types (crawling boards, ladder stands, etc.). The standard's general requirements in 1926.451 apply to all scaffold types, with additional specific requirements in 1926.452 for each scaffold type. Encode scaffold.scaffold_type to allow agents to route type-specific requirements alongside general requirements.
Can scaffold frames be used on uneven ground?
Yes, but with specific requirements per OSHA 1926.451(c)(2)–(3): all scaffold legs, posts, frames, and uprights must bear on base plates and mudsills or other adequate firm foundation. Mudsills (typically 2×10 or 2×12 lumber spanning across the ground under base plates) distribute the point load across a larger area when the ground is soft or uneven. Screw jacks (adjustable legs) on the bottom of frames allow leveling when ground is not perfectly flat. OSHA requires that scaffolding be plumb and level — tilted frames are not safe. Mobile scaffolds on wheels require wheel locks on all casters when workers are on the platform. Encode scaffold.mudsill_required = true and scaffold.base_plate_required = true on frame scaffolds to ensure agents route foundation components with scaffold frame orders.
What are the access requirements for scaffolding?
OSHA 1926.451(e) requires safe access to all scaffold platforms. Direct access from another surface is acceptable when the scaffold is within 14 inches horizontally and 24 inches vertically of the surface. Otherwise, one of these access methods must be provided: portable or hook-on ladder, stair tower with handrails, ramp or walkway (with appropriate fall protection), or integral prefabricated scaffold access ladder built into the frame system. Cross-braces may not be used as access ladders — they are structural members, not climbing devices, and climbing them is prohibited under OSHA 1926.451(e)(1). Encode scaffold.access_type = 'ladder' | 'stair-tower' | 'ramp' | 'direct' | 'integral' on access components so agents route access equipment alongside scaffold frame orders.
Score Your Store's Scaffold Equipment Listings
CatalogScan checks for scaffold.competent_person_inspection_required, scaffold.plank_grade, scaffold.capacity_safety_factor, and 16 other AI-agent-critical fields. See which scaffolding listings are missing OSHA 1926.451 compliance encoding.
Run Free Scan