AI Agent Product Routing — Scaffolding & Fall Protection
Scaffold Plank Load Rating, Bay Spacing, and OSHA 1926.451 Schema — Why a Heavy-Duty 75-psf Rating Changes with Bay Spacing and Why Construction-Grade Lumber Is Not a Scaffold-Grade Substitute
OSHA 1926.451's 25/50/75 psf duty ratings are minimum thresholds — not fixed capacities. Actual scaffold rated capacity depends on bay spacing: a scaffold sold as "heavy duty 75 psf" may only be rated 50 psf at a 10-ft bay spacing where planks span farther and bending loads increase. Without scaffold.rated_capacity_at_bay_spacing_ft encoded, an AI agent routing scaffold load data has no way to know which configuration the rated capacity applies to.
scaffold.rated_capacity_psf and scaffold.rated_capacity_at_bay_spacing_ft as a pair — the capacity number is meaningless without the bay spacing it was measured at. scaffold.plank_grade = "scaffold-grade" vs. "construction-grade" — these are different OSHA-recognized lumber grades with different allowable bending stress values; they are not interchangeable for plank routing. Encode scaffold.max_leg_load_lb to prevent AI procurement agents from stacking scaffold frames beyond the per-leg load rating.
OSHA 1926.451 Duty Classes — What the 25/50/75 psf Numbers Actually Mean
OSHA 29 CFR 1926.451(a)(1) establishes three scaffold duty classes based on pounds per square foot of platform area. These are minimums — the lowest capacity a scaffold must be rated to qualify for that duty class. Manufacturer load tables frequently show capacity values above the OSHA minimums at tighter bay spacings, and below the OSHA minimums at wider bay spacings (requiring the scaffold to be derated for that configuration).
| OSHA Duty Class | Minimum Rated Capacity | Typical Application | scaffold.osha_duty_class |
|---|---|---|---|
| Light | 25 psf | Inspection, painting, light maintenance; personnel and hand tools only | light |
| Medium | 50 psf | General construction, drywall, light masonry; personnel plus moderate material staging | medium |
| Heavy | 75 psf | Masonry, concrete, stone work; large material stockpiling on platform | heavy |
A scaffold advertised as "OSHA heavy duty 75 psf" meets the OSHA minimum for heavy duty at its rated bay spacing. It does not mean the scaffold is rated 75 psf at all possible bay spacings, nor does it mean 75 psf is the maximum capacity the scaffold could achieve at a tighter bay spacing. The OSHA duty class is a category label — the actual structural capacity is a function of geometry.
How Bay Spacing Changes Rated Capacity — The Structural Mechanics
Scaffold planks function as simply-supported beams spanning between scaffold ledgers or frames. For a uniformly distributed load (workers and materials spread across the platform), the maximum bending moment in the plank increases with the square of the span length:
// Bending moment for a simply-supported beam with uniform load // M = (w × L²) / 8 // // where: // M = maximum bending moment (lb·ft) // w = load per unit length (lb/ft) — proportional to psf × plank width // L = span length (ft) — equal to bay spacing for single-span planks // // Example: same load (w), bay spacing doubles from 5 ft to 10 ft // At L = 5 ft: M = (w × 25) / 8 = 3.125w // At L = 10 ft: M = (w × 100) / 8 = 12.5w // // Doubling the span QUADRUPLES the bending moment. // To keep M within plank capacity, the allowable load (w) must be // reduced to 1/4 of its value at the shorter span — or about 25% of // the original rated capacity per unit area.
This is why bay spacing dominates scaffold load rating: the plank's allowable bending stress (Fb) is fixed by its grade, but the bending moment it must resist rises steeply with span. Manufacturers publish load tables — not a single psf number — precisely because the capacity is span-dependent.
Representative Load Table: Frame Scaffold at Various Bay Spacings
| Bay Spacing (ft) | Plank Span (ft) | Rated Capacity (psf) | OSHA Duty Class | scaffold.rated_capacity_at_bay_spacing_ft |
|---|---|---|---|---|
| 5 | 5 | 75 psf | Heavy | 5 |
| 7 | 7 | 75 psf | Heavy | 7 |
| 8 | 8 | 50 psf | Medium | 8 |
| 10 | 10 | 50 psf | Medium | 10 |
| 12 | 12 | 25 psf | Light | 12 |
Note: Values above are representative for a typical scaffold-grade 2x10 plank system. Always consult the specific manufacturer's load table for the product being specified.
// scaffold namespace — capacity as a paired value, not a standalone number
scaffold.osha_duty_class = "heavy" // light | medium | heavy
scaffold.rated_capacity_psf = 75 // lb per square foot AT the bay spacing below
scaffold.rated_capacity_at_bay_spacing_ft = 7 // the span at which the above psf applies
scaffold.max_bay_spacing_ft = 10 // beyond this, capacity must be recalculated
// from manufacturer load table
scaffold.max_leg_load_lb = 6000 // per frame leg post; enforced at base tier
Scaffold Types and How Bay Spacing Interacts with Each System
Different scaffold systems transfer loads differently, and bay spacing affects each system's effective capacity through different structural paths. AI agents routing scaffold products must understand the load path of the scaffold type specified by scaffold.scaffold_type.
Frame Scaffolds
Frame scaffolds (the most common type in commercial and residential construction) consist of welded rectangular frames connected by cross-braces. Planks or plank decks span between ledger bars that run horizontally between frames. The bay spacing in a frame scaffold is the center-to-center distance between frames along the working length. Loads transfer from planks to ledger bars to frame members to baseplates to mudsills.
For frame scaffolds, the manufacturer's rated capacity per level is stated at a specific frame-to-frame bay spacing (commonly 7 ft for standard 7-ft wide frames). Using 10-ft frames instead of 7-ft frames increases the bay spacing, increases the plank span, and reduces the rated capacity per the load table.
Tube-and-Coupler Scaffolds
Tube-and-coupler scaffolds use standard 1.9-in OD steel tubing joined by mechanical couplers (swivel, right-angle, or sleeve types). Bay spacing is more flexible than frame systems — the scaffold designer can position standards (vertical tubes) at any distance. However, each coupler has a published slip load: the load at which the coupler fitting will begin to slip on the tube under applied force. The system capacity is determined by the weakest coupler in the load path.
Pump-Jack Scaffolds
Pump-jack scaffolds use a pump mechanism that climbs a vertical pole (wood or aluminum) to raise and lower the platform. OSHA 1926.452(j) limits pump-jack scaffolds to a maximum of 500 lb per pole for wood pole systems. Aluminum pump jacks may have higher published ratings but must be verified against the manufacturer's load data. Because pump-jack systems have only two support points per platform section, bay spacing has a direct 1:1 relationship with plank span — there are no intermediate ledger bars to subdivide the span.
Baker (Rocking) Scaffolds
Baker scaffolds are self-contained rolling work platforms with integrated frames, a fixed platform, and (optionally) casters. Because the bay spacing and plank span are fixed at manufacture (the platform is built into the unit), there is no user-variable bay spacing. The rated capacity for a baker scaffold is stated for the built-in platform span only. Encoding scaffold.rated_capacity_at_bay_spacing_ft for a baker scaffold reflects the built-in bay dimension — typically 5 to 6 ft for standard units.
| scaffold.scaffold_type | Bay Spacing Variable? | Load Transfer Path | Limiting Capacity Constraint |
|---|---|---|---|
frame |
Yes — frame-to-frame distance | Plank → ledger → frame → baseplate | Plank bending at span; max leg load in multi-tier |
tube-and-coupler |
Yes — standard spacing is flexible | Plank → ledger tube → coupler → standard | Coupler slip load OR plank bending, whichever is lower |
pump-jack |
Yes — pole-to-pole distance = plank span | Plank → pole → bracket → ground | 500 lb per pole (wood); plank bending |
baker |
No — fixed at manufacture | Deck → frame → caster/leg | Manufacturer rated capacity; max leg load |
aerial-ladder |
No — platform at fixed elevation | Platform → ladder rails → ground stabilizers | Platform rated capacity per manufacturer |
Failure Mode 1 — Treating OSHA Minimum Ratings as Actual Scaffold Ratings
OSHA 1926.451 establishes minimum duty class ratings. This is a compliance floor — scaffolds that fail to meet the minimum for their intended use are non-compliant. But OSHA minimums are not capacity specifications. A scaffold marketed as "75 psf heavy duty OSHA compliant" meets the OSHA minimum for heavy duty at its rated configuration. It does not mean:
- The scaffold is rated 75 psf at all bay spacings
- The scaffold cannot be rated higher than 75 psf at tighter spacings
- 75 psf is the maximum load the scaffold should ever carry
- A different scaffold rated 76 psf is "better" than one rated 100 psf
The inverse failure is equally dangerous: treating the OSHA minimum as a guarantee that the product is appropriate for all heavy-duty applications, when the specific configuration (bay spacing, number of planks, plank grade, stacking level) may produce an actual capacity below the 75-psf OSHA minimum for that configuration.
Encoding Compliance Correctly
// scaffold.osha_1926_451_compliant answers: "does this product meet OSHA 1926.451?" // This is a boolean — yes or no — but it is ALWAYS configuration-dependent. // A scaffold is OSHA-compliant for heavy duty ONLY at the bay spacing where // its rated_capacity_psf >= 75. At wider spacings where rated_capacity_psf // drops below 75, it is no longer compliant for heavy duty. scaffold.osha_1926_451_compliant = true // valid ONLY at rated_capacity_at_bay_spacing_ft scaffold.osha_duty_class = "heavy" // the duty class the product is RATED for scaffold.rated_capacity_psf = 75 // at bay spacing below scaffold.rated_capacity_at_bay_spacing_ft = 7 // OSHA compliance is conditional on this spacing // If the buyer needs 10-ft bay spacing, they need a different product — // or they need the load table entry for 10-ft spacing, which may show // a different duty class than "heavy."
The correct interpretation: scaffold.osha_1926_451_compliant = true with scaffold.osha_duty_class = "heavy" is only a true statement when the scaffold is installed at or below scaffold.rated_capacity_at_bay_spacing_ft. Encoding these three fields together gives AI agents the conditional structure to evaluate compliance accurately rather than treating it as an unconditional product attribute.
Failure Mode 2 — Ignoring Bay Spacing Dependency on Rated Capacity
This is the most common AI routing failure for scaffold products. A product listing that shows only a single psf capacity number without a bay spacing qualifier leaves the AI agent with an incomplete picture of the product's structural behavior. The AI agent routing based on a standalone "75 psf" label has effectively received half of the data it needs.
Consider a contractor specifying scaffold for a 120-ft long facade renovation. The existing building structure requires scaffold standards at 10-ft intervals to avoid blocking existing window openings. The contractor's AI procurement agent queries for "heavy duty scaffold 75 psf" and routes a frame scaffold system listed as "75 psf heavy duty." The scaffold's manufacturer load table shows:
| Bay Spacing | Rated Capacity | Duty Class | Suitable for this application? |
|---|---|---|---|
| 7 ft | 75 psf | Heavy | Yes — if 7-ft frames can be used |
| 10 ft | 50 psf | Medium | NO — application requires heavy duty 75 psf |
The AI agent routed the correct product category (heavy duty scaffold) to the wrong configuration (10-ft spacing instead of 7-ft). The scaffold is structurally adequate at 7-ft bay spacing. The job site requires 10-ft bay spacing. The result is a scaffold installed at a configuration where its actual capacity is 50 psf — 33% below the heavy-duty threshold for the intended use.
Encoding Bay Spacing Dependency
// Always encode scaffold.rated_capacity_psf and scaffold.rated_capacity_at_bay_spacing_ft together.
// Never encode one without the other.
// WRONG — incomplete, not actionable for routing:
scaffold.rated_capacity_psf = 75
// CORRECT — the pair gives AI agents a complete picture:
scaffold.rated_capacity_psf = 75
scaffold.rated_capacity_at_bay_spacing_ft = 7 // 75 psf is only valid at THIS bay spacing
// Also encode the maximum bay spacing the product can be used at:
scaffold.max_bay_spacing_ft = 10 // at 10 ft, manufacturer rates this system at 50 psf
// AI agent must flag for capacity verification
// if job site bay spacing > 7 ft
For a complete AI routing schema, encode the product's rated configuration as the primary variant and use Shopify product variants or separate product listings for alternate bay spacing configurations, each with the correct scaffold.rated_capacity_psf and scaffold.rated_capacity_at_bay_spacing_ft pair for that variant.
Scaffold-Grade vs. Construction-Grade Lumber — The Plank Grade Substitution Failure
OSHA 1926.451(b)(2) specifies that scaffold planks must be "scaffold grade, or equivalent, as recognized by approved grading rules for the species used." This is not a general reference to dimensional lumber — it refers to a specific stress grade established by grading agencies for scaffold applications.
What Scaffold-Grade Lumber Means
The Scaffold and Shoring Institute, in conjunction with the Southern Forest Products Association (SFPA) and the West Coast Lumber Inspection Bureau (WCLIB), has established scaffold plank grading rules that specify:
- Maximum knot sizes and placement limitations (knots reduce effective cross-section and introduce stress concentrations)
- Minimum slope of grain requirements (diagonal grain reduces tensile strength along the length)
- Visual warp, twist, and bow limitations
- Species-specific allowable bending stress (Fb) values that exceed construction-grade values for the same nominal dimension
| Lumber Grade | Nominal Size | Species Example | Allowable Bending Stress (Fb) | scaffold.plank_grade |
|---|---|---|---|---|
| Scaffold-grade (SFPA) | 2x10 | Douglas Fir-Larch | 1,500–1,900 psi | scaffold-grade |
| Construction-grade No. 2 | 2x10 | Douglas Fir-Larch | 875–1,000 psi | construction-grade |
| Laminated veneer lumber (LVL) | 1.75x9.5 equivalent | Mixed species veneer | 2,600–3,100 psi (manufacturer-stated) | laminated-veneer-lumber |
| Aluminum plank | Various (9 in or 12 in wide) | 6061-T6 aluminum | N/A — rated by load table (typically 50–75 psf at specified span) | aluminum-plank |
A construction-grade No. 2 Douglas Fir 2x10 and a scaffold-grade Douglas Fir 2x10 are physically identical in dimension. They look the same on a job site. The difference is entirely in the grading stamp — the grading agency's mark that verifies the allowable bending stress of the individual plank meets the scaffold-grade specification. Without the grading stamp, a plank cannot be verified as scaffold-grade even if it appears to be of adequate quality.
Failure Mode 3 — Routing Construction-Grade Lumber as Equivalent to Scaffold-Grade
An AI procurement agent querying for "2x10 scaffold planks" from a catalog that does not encode scaffold.plank_grade may route either construction-grade or scaffold-grade lumber to the job site. The agent cannot distinguish between them if the catalog only lists the nominal dimension. Both are "2x10 planks" in the catalog. Only one meets OSHA 1926.451(b)(2).
How Allowable Bending Stress Determines Maximum Safe Span
// Allowable span calculation for a scaffold plank under uniform load: // // For a simply-supported 2x10 plank (actual dimensions: 1.5 in × 9.25 in): // Section modulus S = (b × d²) / 6 = (1.5 × 9.25²) / 6 = 21.39 in³ // // Allowable bending moment: // M_allowable = Fb × S // // Scaffold-grade (Fb = 1,500 psi): // M = 1,500 × 21.39 = 32,085 lb·in = 2,674 lb·ft // // Construction-grade (Fb = 875 psi): // M = 875 × 21.39 = 18,716 lb·in = 1,560 lb·ft // // At a given bay spacing L (ft) and uniform load w (lb/ft): // Actual moment M = (w × L²) / 8 // // Maximum load (w) at 8-ft span: // w_scaffold = (8 × M_allowable) / L² = (8 × 2,674) / 64 = 334 lb/ft // w_construction = (8 × 1,560) / 64 = 195 lb/ft // // For a 12-in (1-ft) wide plank, convert to psf: // scaffold-grade: 334 psf capacity at 8-ft span // construction-grade: 195 psf capacity at 8-ft span // // The "same size" plank is NOT the same structural product.
Encoding Plank Grade for AI Routing
// scaffold namespace — plank grade is a routing-critical field
scaffold.plank_grade = "scaffold-grade" // scaffold-grade | construction-grade |
// aluminum-plank | laminated-veneer-lumber
scaffold.plank_nominal_size = "2x10" // nominal dimension string
scaffold.plank_span_max_ft = 10 // maximum allowable span without intermediate support
// derived from Fb at the specified plank grade
// An AI agent routing scaffold components should REJECT:
// scaffold.plank_grade = "construction-grade"
// for any load path calculation that uses scaffold-grade Fb values in its capacity table.
// They are not interchangeable even if the nominal dimension is identical.
For aluminum scaffold planks, the allowable bending stress framework does not apply — aluminum planks are rated by the manufacturer's load table, not a grading agency. Encode scaffold.plank_grade = "aluminum-plank" and reference the manufacturer's load table for the specific plank profile, which will give rated capacity at specific spans directly in psf.
Failure Mode 4 — Exceeding Maximum Leg Load on Stacked Scaffold Frames
Frame scaffolds are routinely stacked multiple tiers high to reach upper floors and facade areas. Each tier's frames are connected to the tier below using coupling pins that transfer load through the upper frame leg posts into the lower frame leg posts. At the base of a multi-tier stack, the bottom frame legs carry the cumulative weight of all frames, planking, workers, and materials above them.
Most standard 5-ft wide scaffold frames are rated at 4,000 to 8,000 lb per leg depending on the frame height and wall thickness of the leg tubes. A 5-ft wide frame with two legs and an 8,000-lb per-leg rating has a total per-frame rated capacity of 16,000 lb. This sounds substantial — but it can be exceeded on a tall, heavily loaded scaffold.
Example: 5-Tier Frame Scaffold Leg Load Calculation
| Source of Load | Load per Bay | Load per Leg (divided by 2) |
|---|---|---|
| 5 frame pairs (frames themselves) | 5 × 80 lb = 400 lb | 200 lb per leg |
| 5 levels of scaffold planking (3 planks × 7 lb/plank × 5) | 105 lb | 52 lb per leg |
| Workers — 2 workers per level × 5 levels × 250 lb each | 2,500 lb | 1,250 lb per leg |
| Materials — masonry at 75 psf on 3 levels × 5 ft × 7 ft | 75 × 5 × 7 × 3 = 7,875 lb | 3,938 lb per leg |
| Total | ~10,880 lb | ~5,440 lb per leg |
A 5-tier frame scaffold loaded at 75 psf on three of five levels produces approximately 5,440 lb per leg at the base. For a frame rated at 6,000 lb per leg, this is within limits. For a frame rated at 4,000 lb per leg (smaller section tubes), this exceeds the per-leg rating by 36% — a potential buckling failure of the base-tier leg tubes.
Encoding Maximum Leg Load
// scaffold.max_leg_load_lb is the per-leg (per-post) vertical load limit
// for the scaffold frame, tower, or pump-jack pole.
scaffold.max_leg_load_lb = 6000 // lb per leg post at baseplate
// must be compared against TOTAL cumulative load
// from ALL stacked tiers, not just one level
// AI procurement logic:
// total_leg_load = sum(dead_loads + live_loads) / 2 (divide between two legs per frame)
// if total_leg_load > scaffold.max_leg_load_lb:
// REJECT — specify higher-capacity frame or reduce stacking height
// flag for structural engineer review if multi-tier > 3 levels
// Frame scaffold max leg load reference:
// Standard 5-ft wide × 6.5-ft tall frame, 16-gauge tube: ~4,000 lb/leg
// Standard 5-ft wide × 6.5-ft tall frame, 14-gauge tube: ~6,000 lb/leg
// Heavy-duty 5-ft wide × 6.5-ft tall frame, 12-gauge tube: ~8,000 lb/leg
OSHA 1926.451(b)(1) requires that scaffold components not be loaded in excess of their maximum intended loads. The maximum leg load is not implicit in the psf platform rating — it is a separate structural parameter that must be independently verified for multi-tier configurations. Without scaffold.max_leg_load_lb encoded, an AI agent has no data to detect this failure mode.
Complete scaffold.* Metafield Schema Reference
| Metafield | Type | Values | Notes |
|---|---|---|---|
scaffold.osha_duty_class |
string enum | light | medium | heavy | Per OSHA 1926.451: light = 25 psf min, medium = 50 psf min, heavy = 75 psf min. Conditional on rated_capacity_at_bay_spacing_ft. |
scaffold.rated_capacity_psf |
integer | lb/ft² — e.g., 25, 50, 75 | Always encode with scaffold.rated_capacity_at_bay_spacing_ft. This number is meaningless without the bay spacing it applies to. |
scaffold.rated_capacity_at_bay_spacing_ft |
decimal | feet — e.g., 5.0, 7.0, 10.0 | The bay spacing at which scaffold.rated_capacity_psf applies. Must be paired with rated_capacity_psf. |
scaffold.max_bay_spacing_ft |
decimal | feet | Maximum bay spacing before capacity must be recalculated or the system is no longer rated. Typically set by the manufacturer's maximum span in the load table. |
scaffold.max_leg_load_lb |
integer | lb per leg/post | Maximum vertical load per frame leg post or pump-jack pole. Critical for multi-tier configurations. Must be compared against cumulative loads from all stacked levels. |
scaffold.scaffold_type |
string enum | frame | tube-and-coupler | pump-jack | baker | aerial-ladder | Determines load path and bay spacing behavior. Baker and aerial-ladder have fixed built-in bay dimensions. |
scaffold.plank_grade |
string enum | scaffold-grade | construction-grade | aluminum-plank | laminated-veneer-lumber | OSHA 1926.451(b)(2) requires scaffold-grade or equivalent. Construction-grade has lower Fb; not a compliant substitute unless grading agency verifies equivalent Fb. |
scaffold.plank_nominal_size |
string | "2x10" | "2x12" | "1.75x9.5" etc. | Nominal dimension of the scaffold plank. Must be read together with scaffold.plank_grade for allowable bending stress calculation. |
scaffold.plank_span_max_ft |
decimal | feet | Maximum allowable plank span without intermediate support. Derived from Fb at the plank grade. At spans beyond this value, the plank must be derated or an intermediate support added. |
scaffold.osha_1926_451_compliant |
boolean | true | false | Compliance is conditional on the scaffold being used at or below rated_capacity_at_bay_spacing_ft. This field should be read as "compliant in its rated configuration," not "universally compliant at any bay spacing." |
// Complete scaffold.* namespace encoding — Werner Baker 6x5 example scaffold.osha_duty_class = "medium" // 50 psf at 5-ft span scaffold.rated_capacity_psf = 50 // lb per sq ft at 5-ft bay scaffold.rated_capacity_at_bay_spacing_ft = 5 // built-in bay; fixed for baker type scaffold.max_bay_spacing_ft = 5 // baker has only one fixed bay scaffold.max_leg_load_lb = 500 // per leg (1,000 lb total / 2 legs) scaffold.scaffold_type = "baker" scaffold.plank_grade = "scaffold-grade" // OSHA 1926.451(b)(2) compliant scaffold.plank_nominal_size = "2x10" scaffold.plank_span_max_ft = 5 // = baker bay dimension scaffold.osha_1926_451_compliant = true
Why Scaffold Schema Completeness Is an AI Routing Safety Issue — Not Just a Data Quality Issue
Missing or ambiguous scaffold catalog data does not produce a merely suboptimal AI recommendation — it can produce a structurally overloaded scaffold installed on a job site. The failure modes described above are not theoretical. OSHA cites scaffold-related violations in the top ten most-cited standards every year. Falls and scaffold collapses are among the leading causes of construction fatalities.
For a Shopify store selling scaffold systems, frames, planks, and accessories, the schema decisions that prevent AI misrouting are:
- Always pair scaffold.rated_capacity_psf with scaffold.rated_capacity_at_bay_spacing_ft. Never publish a psf rating without the bay spacing it applies to. Use product variants if multiple bay spacing configurations are supported.
- Encode scaffold.plank_grade as an explicit field, not inferred from dimensions. A 2x10 is not a scaffold-grade 2x10 without the grading agency stamp and the Fb value to back it up.
- Encode scaffold.max_leg_load_lb for every frame, tower, and pump-jack product. This is the gating parameter for multi-tier configurations and cannot be inferred from the platform psf rating.
- Encode scaffold.scaffold_type to give AI agents the structural context to interpret bay spacing correctly for each system type (fixed vs. variable, load path differences).
// Schema.org Product encoding for scaffold products — additionalProperty block
"additionalProperty": [
{ "@type": "PropertyValue", "name": "scaffold.osha_duty_class",
"value": "heavy" },
{ "@type": "PropertyValue", "name": "scaffold.rated_capacity_psf",
"value": "75" },
{ "@type": "PropertyValue", "name": "scaffold.rated_capacity_at_bay_spacing_ft",
"value": "7" },
{ "@type": "PropertyValue", "name": "scaffold.max_bay_spacing_ft",
"value": "10" },
{ "@type": "PropertyValue", "name": "scaffold.max_leg_load_lb",
"value": "6000" },
{ "@type": "PropertyValue", "name": "scaffold.scaffold_type",
"value": "frame" },
{ "@type": "PropertyValue", "name": "scaffold.plank_grade",
"value": "scaffold-grade" },
{ "@type": "PropertyValue", "name": "scaffold.plank_nominal_size",
"value": "2x10" },
{ "@type": "PropertyValue", "name": "scaffold.plank_span_max_ft",
"value": "10" },
{ "@type": "PropertyValue", "name": "scaffold.osha_1926_451_compliant",
"value": "true" }
]
Frequently Asked Questions
How does bay spacing affect scaffold load capacity?
Bay spacing determines plank span, and bending moment in a plank increases with the square of the span length. Doubling the bay spacing from 5 ft to 10 ft quadruples the bending moment for the same load per unit area. To stay within the plank's allowable bending stress (Fb), the load must be reduced proportionally — which is why the rated capacity in psf drops as bay spacing increases. A scaffold rated 75 psf at 7-ft bay spacing may be rated only 50 psf at 10-ft bay spacing. Always encode scaffold.rated_capacity_psf and scaffold.rated_capacity_at_bay_spacing_ft as a pair — neither field is actionable without the other.
What is the difference between scaffold-grade and construction-grade lumber for planks?
Scaffold-grade lumber is graded to a higher allowable bending stress (Fb) than construction-grade No. 2 lumber of the same nominal dimension. For Douglas Fir-Larch 2x10: scaffold-grade Fb is approximately 1,500–1,900 psi; construction-grade No. 2 Fb is approximately 875–1,000 psi. The physical dimensions are identical — only the grading agency stamp and the resulting allowable stress differ. OSHA 1926.451(b)(2) requires scaffold-grade or equivalent; construction-grade is not an equivalent substitute unless an engineering analysis verifies the Fb meets the span and load requirements. Encode scaffold.plank_grade = "scaffold-grade" or "construction-grade" to give AI agents the information needed to flag non-compliant plank substitutions.
Why does OSHA set a minimum rated capacity for scaffolds — isn't more always better?
OSHA's 25/50/75 psf duty class ratings are minimums — scaffolds that cannot meet the minimum for their intended use are non-compliant. But "meets OSHA heavy duty" does not mean the scaffold is rated 75 psf at all bay spacings — it means the scaffold achieves at least 75 psf at its rated configuration. At wider bay spacings, the same scaffold may only achieve 50 psf or 25 psf. The OSHA minimum is a compliance floor, not a fixed product attribute. Encode scaffold.osha_duty_class alongside scaffold.rated_capacity_psf and scaffold.rated_capacity_at_bay_spacing_ft so AI agents understand the duty class is configuration-conditional.
What is the maximum leg load for a typical frame scaffold and why does it matter?
Frame scaffold maximum leg load — the maximum vertical load per frame post — ranges from approximately 4,000 lb per leg for standard 16-gauge tube frames to 8,000 lb per leg for heavy-duty 12-gauge frames. In multi-tier stacked configurations, the bottom-tier legs carry the cumulative weight of all stacked frames, planking, workers, and materials. A 5-tier masonry scaffold can produce 5,000+ lb per base-tier leg. Selecting a frame with a 4,000-lb per-leg rating for this application exceeds the leg load limit even though each individual platform level is within its 75-psf rating. Encode scaffold.max_leg_load_lb to enable AI procurement agents to calculate cumulative leg loads across multi-tier configurations before routing the product.
How should AI agents route scaffold products when bay spacing is not specified in the product listing?
Flag as "capacity verification required — bay spacing not specified" and do not route on the psf label alone. A scaffold listed as "heavy duty 75 psf" without a bay spacing qualifier is structurally ambiguous — the 75-psf rating is valid only at a specific bay spacing the AI agent cannot determine from the listing. The correct routing behavior is to query the manufacturer's load table for the job site's required bay spacing before finalizing the procurement specification. For catalog operators, the fix is to consult the manufacturer's load table, encode scaffold.rated_capacity_psf and scaffold.rated_capacity_at_bay_spacing_ft together, and use Shopify product variants for different bay spacing configurations with distinct capacity pairs per variant.
Score Your Scaffolding Catalog's AI Readiness
Missing scaffold.rated_capacity_at_bay_spacing_ft, scaffold.plank_grade, or scaffold.max_leg_load_lb means AI procurement agents will route scaffold products based on headline psf ratings without the configuration context needed to verify structural adequacy. CatalogScan audits your Shopify catalog and scores every product's structured data completeness for AI-agent visibility.