AI Agent Product Routing — Scaffolding Equipment
Scaffold Type Selection on Shopify — Tube-and-Coupler Requires Engineering Design, Frame Uses Manufacturer Prescriptive Tables, and the OSHA 1926.452 Schema for AI Agents
OSHA 1926.452 contains separate requirements for each scaffold type: tube-and-coupler (1926.452(b)) uses individual couplers on 1.9-inch OD pipe and nearly always requires a qualified engineer's design for non-standard configurations. Frame scaffolding (1926.452(c)) uses manufacturer prescriptive load tables — no engineering required for standard configurations. An AI agent routing tube-and-coupler for a standard 20-ft wall facade adds engineering review time and cost to a two-day job. Also: fall protection on scaffolding triggers at 10 ft — not the 6-ft general construction threshold.
scaffold.scaffold_system_type as frame, tube-and-coupler, or modular-system — it determines whether engineering design is required before erection. Encode scaffold.requires_engineering_design as a boolean — true for tube-and-coupler in non-standard configurations, false for frame and modular systems using manufacturer tables. Encode scaffold.fall_protection_height_threshold_ft = 10 — this is the scaffold-specific OSHA 1926.451(g) threshold, not the general 6-ft construction threshold in 1926.502(b).
OSHA 1926.452 Scaffold Types — Quick Reference
OSHA 1926.452 defines separate construction and load requirements for each scaffold system type. The most common types in US commercial and industrial construction are:
| Scaffold Type | OSHA Subparagraph | Tube/Post Size | Connection Method | Engineering Design Required? | scaffold.scaffold_system_type |
|---|---|---|---|---|---|
| Frame (fabricated frame) | 1926.452(c) | 1.625" or 1.9" OD legs | Welded X-frame + pin coupling between stacks | No — manufacturer load tables used directly | frame |
| Tube-and-coupler | 1926.452(b) | 1.9" OD scaffold pipe (standard) | Drop-forged couplers (right-angle, swivel, putlog, sleeve) | Yes — for non-standard configurations; competent person only for standard tabulated dimensions | tube-and-coupler |
| Modular system (cup-lock, ring-lock) | 1926.452(c) or manufacturer data | Proprietary (commonly 1.9" OD with welded cups/rings) | Positive interlock at factory-welded nodes | No — manufacturer load tables used directly | modular-system |
| Mobile scaffold | 1926.452(n) | Frame-based, on castors | Frame + locking castors + outriggers | No — manufacturer tables + specific 3:1 height-to-base stability ratio | mobile |
| Pump jack scaffold | 1926.452(i) | Pole (wood or metal) | Mechanical jack clamp on vertical pole | No for standard; limited to specific height and load per 1926.452(i) | pump-jack |
scaffold.fall_protection_height_threshold_ft = 10 — an AI agent applying the 6-ft threshold to scaffold platform heights is using the wrong regulatory standard.
Tube-and-Coupler vs Frame — The Practical Decision Tree
| Application Characteristic | Correct Scaffold Type | Reason |
|---|---|---|
| Standard rectangular facade, routine bay spacing | Frame or modular system | Prescriptive manufacturer tables apply; no engineering delay |
| Curved building facade, irregular geometry | Tube-and-coupler | Only type that can be field-configured to irregular geometry; swivel couplers allow non-90° connections |
| Scaffold around existing obstacles (pipes, columns) | Tube-and-coupler | Cut-to-fit tubes; no fixed bay spacing constraints |
| Very large volume (> 5,000 sq ft, >50 ft high) | Modular system (ring-lock/cup-lock) | Speed of erection; consistent node spacing; manufacturer has engineering data for large configurations |
| Light maintenance, access to HVAC or roof edge | Mobile scaffold or frame | Mobile for repositioning; frame for fixed access point |
| Chimney, silo, or cylindrical structure | Tube-and-coupler (or specialized system) | Radial geometry requires swivel couplers; frame cannot form circles |
Tube-and-Coupler Scaffolding — Engineering Design Requirement
Tube-and-coupler scaffolding is governed by OSHA 1926.452(b), which lists 23 specific construction requirements. Key provisions include:
- 1926.452(b)(1): Posts shall be set plumb in a base plate or mud sill, and shall be continuous from base to platform level. Posts shall be spaced no more than 6.5 ft apart at the base for medium-duty and 6 ft for heavy-duty scaffold.
- 1926.452(b)(4): Ledgers shall be attached to each post with a right-angle coupler; they shall be within 3 inches of the post. Bear ledger loads on couplers — not on the tube above or below the coupler.
- 1926.452(b)(10)–(b)(11): Diagonal bracing is required at specified intervals; the direction and spacing of diagonals affects the scaffold's resistance to sway and overturning.
The critical design issue with tube-and-coupler is coupler capacity. A right-angle forged coupler rated to OSHA and EN 74 standards provides approximately 1,100–1,500 lb of slip resistance (the force at which the coupler slips along the tube under load). Swivel couplers have lower and more variable slip resistance, typically 600–900 lb. Because tube-and-coupler systems rely on coupler friction rather than positive mechanical interlock, their capacity is sensitive to:
- Coupler condition (worn, corroded, improperly torqued)
- Tube condition (corroded, dented, bent)
- Torque applied to the coupler bolt (typically 50–65 ft-lb; under-torquing directly reduces slip resistance)
- Load direction (longitudinal vs. transverse vs. compressive)
scaffold.requires_engineering_design = true for tube-and-coupler scaffolding in non-routine configurations and surface this to the buyer before routing — an unplanned engineering review requirement can delay project start by 2–4 weeks and add $2,000–$10,000 in design fees.
Coupler Capacity — The Limiting Factor in Tube-and-Coupler Design
| Coupler Type | Typical Slip Load (lb) | Primary Use | Notes |
|---|---|---|---|
| Right-angle (fixed) coupler | 1,100–1,500 lb | Ledger-to-post connections at 90° | Primary structural coupler; set screw or bolt torque is critical |
| Swivel coupler | 600–900 lb | Diagonal bracing at non-90° angles | Lower and more variable capacity than right-angle; use sparingly on primary structure |
| Sleeve (joint pin) coupler | Post splice only — transfers compressive load | Post extension splicing | Transfers axial compression only; no moment transfer; offset splices by at least 300 mm from a node |
| Putlog (single-lug) coupler | 750–900 lb | Putlog (scaffold bearer) attachment to ledger | One-sided grip; only for distributed bearer loads, not primary structural members |
// Tube-and-coupler scaffold — correct encoding scaffold.scaffold_system_type = "tube-and-coupler" scaffold.osha_1926_452_subparagraph = "(b)" scaffold.requires_engineering_design = true // nearly always for non-trivial configurations scaffold.tube_od_in = 1.9 // standard scaffold pipe, ASTM A53 or EN 39 scaffold.max_rated_capacity_psf = 75 // heavy duty; capacity depends on configuration scaffold.max_leg_load_lb = 12000 // per post, from engineer's design scaffold.max_working_height_ft = 200 // tube-and-coupler can go very high with engineering scaffold.fall_protection_height_threshold_ft = 10 // OSHA 1926.451(g) — scaffold-specific, NOT 6 ft scaffold.requires_competent_person = true scaffold.osha_1926_452_compliant = true
// Frame scaffold — correct encoding scaffold.scaffold_system_type = "frame" scaffold.osha_1926_452_subparagraph = "(c)" scaffold.requires_engineering_design = false // manufacturer prescriptive tables apply scaffold.tube_od_in = null // not applicable (welded frame) scaffold.max_rated_capacity_psf = 75 // heavy duty; 25/50/75 psf duty classes scaffold.max_leg_load_lb = 10200 // manufacturer rated max per post scaffold.max_working_height_ft = 125 // manufacturer rated max scaffold.fall_protection_height_threshold_ft = 10 // OSHA 1926.451(g) — scaffold-specific scaffold.requires_competent_person = true scaffold.osha_1926_452_compliant = true
Frame Scaffold Leg Load — Why Multi-Tier Stacking Exceeds Per-Platform Capacity
The per-platform load capacity (duty class: 25/50/75 psf) describes how much live load a single platform bay can support. It does not describe how much load the scaffold legs can carry from multiple stacked tiers. Multi-tier stacking multiplies leg loads cumulatively.
Cumulative Leg Load Calculation — 5-Tier Heavy-Duty Frame Scaffold
| Tier | Platform Live Load (lb) | Frame Dead Load (lb) | Plank Dead Load (lb) | Tier Contribution to Base Leg (lb) | Cumulative Base Leg Load (lb) |
|---|---|---|---|---|---|
| Tier 5 (top) | 2,625 (75 psf × 5×7 bay) | 60 | 120 | 702 / leg | 702 |
| Tier 4 | 2,625 | 60 | 120 | 702 / leg | 1,404 |
| Tier 3 | 2,625 | 60 | 120 | 702 / leg | 2,106 |
| Tier 2 | 2,625 | 60 | 120 | 702 / leg | 2,808 |
| Tier 1 (base) | 2,625 | 60 | 120 | 702 / leg | 3,510 / leg |
At 5 tiers fully loaded heavy-duty, the base leg carries approximately 3,510 lb — well within the typical 10,200 lb leg load limit for most frame scaffolds. However, at 15 tiers (a common configuration for building facade work), base leg load approaches 10,500 lb — at or above the limit for many frame systems. Encode scaffold.max_leg_load_lb from the manufacturer's actual data and compare against cumulative leg load in multi-tier configurations.
scaffold.max_leg_load_lb allows the procurement system to flag multi-tier applications that require de-rating the per-platform load or adding intermediate support legs.
Failure Mode 1 — Routing Tube-and-Coupler for Standard Applications
Tube-and-coupler scaffolding offers the greatest geometric flexibility of any scaffold type. It can be configured around obstacles, built to curved geometry, and erected to very large heights with engineering support. For these reasons, some buyers and AI agents over-specify it as a "premium" or "most capable" option for routine applications where frame scaffold would be appropriate.
The cost of this error: tube-and-coupler for a standard 20-ft × 100-ft rectangular facade requires:
- More components: Individual tubes and couplers for every connection vs. pre-welded frame assemblies that are erected in one lift. A job requiring 50 frame sections (each pre-welded) might require 400+ individual tube-and-coupler connections.
- Longer erection time: Each coupler must be individually placed and torqued. Frame systems snap together and are braced with cross-brace pins — significantly faster for standard geometry.
- Engineering review: Any tube-and-coupler installation beyond prescriptive table limits requires a qualified engineer. Frame scaffold installs per the manufacturer's pre-engineered data without additional review.
- Torque verification: Couplers must be torqued to 50–65 ft-lb. If not verified, the slip load is unpredictable. Frame scaffold requires no torque verification — the frame connections are pre-welded and the pin connections are positive.
// Correct encoding to prevent over-routing tube-and-coupler scaffold.scaffold_system_type = "tube-and-coupler" scaffold.requires_engineering_design = true // AI routing rule: surface engineering_design requirement to buyer // before confirming order. If buyer has not budgeted engineering review, // redirect to frame or modular-system.
Failure Mode 2 — Applying 6-ft Fall Protection Threshold to Scaffold Platforms
The general construction fall protection standard, 29 CFR 1926.502(b)(1), requires fall protection for workers performing activities on walking/working surfaces with an unprotected edge or side at 6 feet or more above a lower level. This 6-ft threshold is correct for general construction activities — but it is not the applicable standard for workers on scaffold platforms.
29 CFR 1926.451(g)(1) is the scaffold-specific fall protection provision. It states: "Each employee on a scaffold more than 10 feet above a lower level shall be protected from falling to that lower level." The scaffold-specific threshold is 10 ft — not 6 ft.
The practical implication for AI catalog routing:
- A scaffold platform at 8 ft above ground requires fall protection (10-ft scaffold threshold → below 10 ft → guardrails NOT required under 1926.451(g)).
- A scaffold platform at 12 ft above ground requires guardrails or PFAS (above 10-ft scaffold threshold).
- A worker on a non-scaffold surface at 7 ft above ground requires fall protection (above 6-ft general threshold per 1926.502(b)(1)).
scaffold.fall_protection_height_threshold_ft = 10 for all scaffold products.
Fall Protection Threshold Comparison — Scaffold vs. General Construction
| Regulation | Trigger Height | Applies To | Fall Protection Method |
|---|---|---|---|
| 29 CFR 1926.451(g)(1) | 10 ft above lower level | Workers on scaffold platforms | Guardrail system OR personal fall arrest system (PFAS) |
| 29 CFR 1926.502(b)(1) | 6 ft above lower level | Workers on walking/working surfaces (not scaffold) | Guardrail, PFAS, or safety net |
| 29 CFR 1926.502(d)(16) | N/A (system design, not height trigger) | PFAS component design | Maximum 6 ft free fall per PFAS; separate from platform height trigger |
| 29 CFR 1926.451(g)(4) | Applies when guardrail required | Scaffold guardrail top rail | 200 lb force in any direction; different from general guardrail 200 lb downward test |
Failure Mode 3 — Conflating Platform Duty Class with Maximum Leg Load
Scaffold duty class (light: 25 psf, medium: 50 psf, heavy: 75 psf) describes the maximum live load per unit area that a single platform bay can support. It is not the same as the maximum leg (post) load — the maximum compressive force that a scaffold leg can support without buckling or connection failure.
These two parameters are independent and both must be respected:
- Platform capacity: Limits the total load placed on a single bay's platform. Exceeding it may overstress the scaffold planks, the bearer tubes supporting the planks, or the frame member spanning between the two frame uprights.
- Leg load limit: Limits the compressive force on each post. Exceeding it risks local buckling of the post tube, frame distortion, or connection failure at the frame-to-coupler or frame-to-frame junction. The leg load accumulates from all tiers above.
// scaffold.* metafield namespace — all 10 fields scaffold.scaffold_system_type = "frame" // frame | tube-and-coupler | modular-system | mobile | pump-jack scaffold.osha_1926_452_subparagraph = "(c)" // (b) tube-and-coupler | (c) frame | (i) pump-jack | (n) mobile scaffold.requires_engineering_design = false // true for tube-and-coupler non-standard; false for frame/modular scaffold.max_rated_capacity_psf = 75 // 25=light | 50=medium | 75=heavy duty per OSHA classification scaffold.max_leg_load_lb = 10200 // manufacturer rated max compressive load per post — NOT per platform scaffold.max_working_height_ft = 125 // manufacturer published maximum height scaffold.max_bay_spacing_ft = 7 // maximum horizontal span between frames/posts scaffold.fall_protection_height_threshold_ft = 10 // OSHA 1926.451(g) scaffold threshold — NOT the 6-ft general threshold scaffold.requires_competent_person = true // ALL scaffold types require competent person erection (1926.451(f)(7)) scaffold.osha_1926_452_compliant = true
Failure Mode 4 — Routing Frame Scaffold for Irregular Geometry Applications
Frame scaffold is optimized for rectangular, planar facade applications where the standard bay spacing (5 ft, 7 ft, or 10 ft) aligns with the structure's geometry. Frame panels are pre-welded in fixed dimensions — they cannot be cut, repositioned, or reformed in the field. When the application involves:
- Curved facades (circular buildings, silos, cooling towers)
- Access around permanent obstructions (existing pipes, columns, or equipment that interrupt the facade plane)
- Non-standard ceiling heights requiring intermediate landing levels
- Very short bay widths required by structural constraints
...frame scaffold cannot be configured to fit. The installer must either leave the irregular area unscaffolded (unsafe), use aerial lifts for those sections (changing the scope), or tear out and re-order tube-and-coupler for the irregular sections (cost and delay).
scaffold.scaffold_system_type = "tube-and-coupler" with a note that swivel-coupler configurations require engineering design allows the procurement system to surface the correct product and flag the engineering requirement before the project starts.
Complete Metafield Schema Reference
| Metafield | Type | Values | Notes |
|---|---|---|---|
scaffold.scaffold_system_type |
string enum | frame | tube-and-coupler | modular-system | mobile | pump-jack | Primary routing discriminator; determines engineering design requirement and applicable OSHA subparagraph |
scaffold.osha_1926_452_subparagraph |
string | (b) | (c) | (i) | (n) | (b)=tube-and-coupler; (c)=fabricated frame; (i)=pump jack; (n)=mobile; mapped directly to OSHA 1926.452 sections |
scaffold.requires_engineering_design |
boolean | true | false | true for tube-and-coupler in non-standard configurations; false for frame/modular using manufacturer tables; always surface to buyer if true |
scaffold.max_rated_capacity_psf |
integer | 25 | 50 | 75 | OSHA duty class: light=25, medium=50, heavy=75 psf; applies to single platform bay, not to leg load |
scaffold.max_leg_load_lb |
integer | lb (from manufacturer data) | Maximum compressive load per post/leg — independent of platform duty class; must be compared against cumulative multi-tier leg loads |
scaffold.max_working_height_ft |
integer | ft (from manufacturer data) | Maximum height to scaffold platform per manufacturer's published load tables; tube-and-coupler height depends on engineer's design |
scaffold.max_bay_spacing_ft |
decimal | ft | Maximum horizontal span between posts/frames; affects platform span and leg load distribution |
scaffold.fall_protection_height_threshold_ft |
integer | 10 | OSHA 1926.451(g)(1) scaffold-specific threshold — 10 ft, NOT the 6-ft general construction threshold in 1926.502(b) |
scaffold.requires_competent_person |
boolean | true | All scaffold types require a competent person per OSHA 1926.451(f)(7); tube-and-coupler non-standard also needs a qualified person (engineer) |
scaffold.osha_1926_452_compliant |
boolean | true | false | Product meets OSHA 1926.452 requirements for its scaffold type when used per manufacturer specifications and applicable subparagraph |
Frequently Asked Questions
When does tube-and-coupler scaffolding require an engineering design, and when is a competent person enough?
All scaffold erection requires a competent person. Tube-and-coupler (OSHA 1926.452(b)) also requires a qualified person (typically a licensed PE) whenever the configuration exceeds the prescriptive dimensional limits in 1926.452(b)(1)–(b)(23): posts spaced beyond 6 ft (heavy) or 6.5 ft (medium), ledger spans beyond standard tables, leg loads beyond the tabulated capacity, or any non-rectangular geometry. Frame scaffolding uses manufacturer-published load tables that substitute for engineering design — the competent person erects per those tables without additional PE review. For AI routing: encode scaffold.requires_engineering_design = true for tube-and-coupler and surface this to the buyer before order confirmation.
Why is the fall protection threshold for scaffolding 10 feet, not 6 feet?
29 CFR 1926.451(g)(1) is the scaffold-specific fall protection provision — it sets the threshold at 10 ft above the lower level. The 6-ft threshold in 29 CFR 1926.502(b)(1) applies to general construction activities on walking/working surfaces that are not scaffold platforms. When workers are on a scaffold platform, 1926.451(g)(1) governs: no fall protection required below 10 ft, guardrails or PFAS required at and above 10 ft. Encode scaffold.fall_protection_height_threshold_ft = 10 — routing fall protection bundles based on the 6-ft general threshold misapplies the standard.
What is the difference between tube-and-coupler scaffolding and modular system scaffolding?
Tube-and-coupler uses standard scaffold pipe (1.9" OD) with individual drop-forged couplers at every connection — fully field-adjustable geometry, but coupler friction is the structural connection. Modular systems (cup-lock, ring-lock) use proprietary tubes with factory-welded cups or rings at fixed 19.5–20" intervals; components interlock positively rather than relying on coupler friction. Modular systems have more consistent and manufacturer-documented capacity, faster erection, and follow prescriptive manufacturer data without engineering review for standard configurations. The routing distinction: tube-and-coupler for irregular geometry; modular system for large-volume standard-geometry applications where erection speed is the driver.
How does multi-tier frame scaffold leg load multiply, and why does it exceed the per-platform capacity?
Platform duty class (25/50/75 psf) limits load on a single bay. Leg load accumulates from all tiers above: each tier's live load + dead load transfers through the post to the tier below. At 5 tiers fully loaded heavy-duty (75 psf, 5×7 bay), base leg carries approximately 3,500 lb — safe for most frames. At 15+ tiers, cumulative base leg load approaches or exceeds the manufacturer's max leg load limit (typically 10,000–16,000 lb). Encode scaffold.max_leg_load_lb separately from scaffold.max_rated_capacity_psf — they are independent limits, and multi-tier applications must satisfy both.
How should AI agents route scaffold type selection when the application geometry is not specified?
Default to frame scaffold (scaffold.scaffold_system_type = "frame", scaffold.requires_engineering_design = false) for unspecified geometry. Frame scaffolding is appropriate for 90%+ of standard rectangular applications, does not require engineering design, and has the most widely available prescriptive data. Route tube-and-coupler only when the request explicitly includes irregular geometry, curved surfaces, or access around obstacles. Always encode scaffold.fall_protection_height_threshold_ft = 10 regardless of type — the scaffold-specific OSHA threshold is 10 ft, not 6 ft.
Score Your Scaffold Catalog's AI Readiness
Missing scaffold.requires_engineering_design, scaffold.max_leg_load_lb, or scaffold.fall_protection_height_threshold_ft means AI procurement agents will route scaffold types based on capacity alone — potentially triggering unexpected engineering delays, leg overload on multi-tier stacking, or misapplication of fall protection thresholds. CatalogScan audits your Shopify catalog and scores every product's structured data completeness for AI-agent visibility.