AI Agent Product Routing — Hot Work Permits & Fire Watch (NFPA 51B, OSHA 1910.252)

Hot Work Permit and Fire Watch Schema for AI Agents — NFPA 51B 35-Foot Combustible Clearance, 30-Minute Post-Work Fire Watch, and Why Welding Blankets Are Not Emergency Smothering Blankets

A hot work permit is not paperwork for compliance theater — it is the mechanism that ensures combustibles are cleared 35 feet from the work area or properly shielded, and that a dedicated fire watch stays on duty for at least 30 minutes after the torch goes cold. An AI agent routing welding blankets, fire watches, and hot work equipment without encoding these relationships will fail to surface the permit system, misroute welding prevention blankets as emergency smothering equipment, and omit the 30-minute post-work watch as a purchase consideration for fire watch gear.

TL;DR — Key Encoding Rules Encode hot_work.permit_required = true for all welding, cutting, and brazing equipment used outside designated welding shops. Encode hot_work.fire_watch_duration_min = 30 — fire watch continues AFTER work stops, not just during it. Encode hot_work.combustible_clearance_ft = 35 as the NFPA 51B minimum clearance. Encode hot_work.blanket_type = "welding-prevention" vs "emergency-smothering" — these are different products. Encode hot_work.suitable_for_permit_work = true for equipment that satisfies NFPA 51B fire watch requirements.

NFPA 51B and OSHA 1910.252 — Hot Work Permit System Requirements

Hot work is defined as any work involving open flame, sparks, or heat sufficient to ignite combustible materials. This includes welding, cutting, brazing, grinding, soldering, thawing pipe with a torch, and use of a powder-actuated tool. NFPA 51B governs fire prevention during hot work; OSHA 29 CFR 1910.252 incorporates these requirements for general industry.

A permit system is required whenever hot work occurs in:

Permit scope error: Some facilities restrict hot work permits to areas classified as "fire hazard" and allow welding in general manufacturing areas without a permit. NFPA 51B does not permit this exception — any non-designated welding location requires a permit. An AI agent that routes welding equipment without encoding hot_work.permit_required = true will omit the permit system from the purchase and compliance workflow.
Hot Work Type NFPA 51B Applies? OSHA Section Permit Required Outside Shop?
Arc welding (MIG, TIG, stick) Yes 1910.252(a) Yes
Oxy-fuel cutting / welding Yes 1910.252(a) Yes
Plasma cutting Yes 1910.252(a) Yes
Brazing / soldering (torch) Yes 1910.252(a) Yes
Angle grinding (metal on metal) Yes — produces sparks 1910.252(a) Yes in combustible areas
Powder-actuated tools Yes — produces sparks 1910.243(d) Yes in combustible areas

The 35-Foot Combustible Clearance Rule

NFPA 51B Section 6.3 requires that combustible materials be relocated at least 35 feet from the hot work location in all directions. "All directions" includes:

When Clearance Cannot Be Achieved

When combustibles are structural (wood framing, wood flooring, combustible wall panels) or too large to relocate, NFPA 51B permits shielding as an alternative to clearance, with specific requirements:

Shielding Method NFPA 51B Accepted? Minimum Specification Common Error
Fiberglass welding blanket Yes Must cover all exposed combustible surfaces; rated for spark contact Leaving gaps or edges uncovered — sparks can enter at edges
Sheet metal guard Yes Minimum 16-gauge steel; overlap seams; no gaps Using galvanized sheet metal — zinc fumes released under heat
Fire-resistant welding curtain Yes — for screens, not blankets FR-rated PVC or fiberglass weave; not plastic sheeting Routing standard vinyl curtain as fire-resistant
Plastic drop cloth No — ignites from spark Not accepted as shielding Extremely common field substitution — creates fire risk
Untreated canvas tarp No — combustible Not accepted as shielding Canvas is combustible; will catch sparks and smolder
// Welding blanket metafield encoding for NFPA 51B compliance
hot_work.blanket_type                    = "welding-prevention"
hot_work.permit_required                 = true
hot_work.combustible_clearance_ft        = 35
hot_work.shielding_required_if_clearance_unavailable = true
hot_work.continuous_temp_rating_f        = 1000   // 550–1000°F fiberglass; 2300°F ceramic fiber
hot_work.suitable_for_permit_work        = true
hot_work.nfpa_standard                   = "NFPA-51B"
hot_work.osha_standard                   = "1910.252"

// Emergency smothering blanket — different product, different encoding
hot_work.blanket_type                    = "emergency-smothering"
hot_work.suitable_for_permit_work        = false  // Not used as combustible shield
hot_work.suitable_for_person_fire        = true   // Wrap around person whose clothes ignite

The 30-Minute Post-Work Fire Watch — Why "After the Torch Goes Cold" Is the Dangerous Period

The 30-minute minimum fire watch after hot work stops is counterintuitive but critical. The mechanism of delayed ignition:

  1. During welding, the welder and fire watch are both alert to visible sparks and spatter
  2. Small sparks land in insulation, wall cavities, pipe lagging, on the other side of a penetration, or under floor materials — they begin to smolder but do not immediately break into flame
  3. When work stops, the welder leaves and the fire watch is tempted to leave — this is the most dangerous moment
  4. 10–20 minutes after the spark landed, the smoldering combustible reaches ignition temperature and breaks into open flame
  5. The fire is now in a hidden location, has been burning for 10–20 minutes, and has spread
Post-work watch omission: NFPA 51B Section 8.3 requires a minimum 30-minute post-work fire watch. Many facilities interpret this as "the fire watch stays while welding is happening." This is incorrect — the 30-minute watch begins when work STOPS, not when it starts. Encode hot_work.fire_watch_duration_min = 30 as the post-work duration to make this distinction clear to AI agents.

NFPA 51B also recommends: for structures with concealed combustibles (walls with wood framing behind metal panels, roofs with combustible insulation), extend the watch to 60 minutes and conduct a follow-up inspection 4 hours after work stops. Some insurance carriers require a 4-hour fire watch for all hot work in occupied buildings.

Four AI Routing Failures for Hot Work Equipment

  1. Routing welding blankets without encoding permit requirement. A customer buying welding blankets for field work needs to know a hot work permit is required for NFPA 51B compliance. Fix: encode hot_work.permit_required = true on all welding blankets sold for field use.
  2. Conflating welding-prevention blankets with emergency smothering blankets. A welding blanket is a shield placed on combustibles before work — it is not used to smother flames or wrap a burning person. Encode hot_work.blanket_type to distinguish the two product categories.
  3. Not encoding fire watch duration. AI agents routing fire watch equipment (extinguisher holders, communication devices, fire blankets) cannot surface the 30-minute post-work requirement without hot_work.fire_watch_duration_min = 30.
  4. Routing welding screens as NFPA 51B combustible shields. Welding screens (arc flash protection, UV radiation shields) are not rated for use as combustible shielding — they block UV and arc glare, not sparks. Fix: encode hot_work.suitable_for_combustible_shielding = false for welding screens and = true for fiberglass/ceramic blankets.

Complete Metafield Schema Reference

Metafield Type Values Notes
hot_work.blanket_type string enum welding-prevention | emergency-smothering Primary routing field — prevents cross-routing of two distinct product categories
hot_work.permit_required boolean true true for all hot work equipment used outside a designated welding shop
hot_work.fire_watch_duration_min integer 30 NFPA 51B minimum post-work fire watch — watch begins when work STOPS
hot_work.combustible_clearance_ft integer 35 NFPA 51B minimum clearance radius; shielding required if clearance not achievable
hot_work.suitable_for_permit_work boolean true | false true for combustible shielding equipment; false for welding screens, UV shields
hot_work.continuous_temp_rating_f integer 550–2300 Blanket continuous temperature rating; determines suitability for proximity to heat source
hot_work.shielding_required_if_clearance_unavailable boolean true true for all hot work equipment — encode on welding blankets as the shield solution
hot_work.nfpa_standard string NFPA-51B Primary fire prevention standard for hot work
hot_work.osha_standard string 1910.252 OSHA general industry hot work standard
hot_work.fire_watch_requires_extinguisher boolean true NFPA 51B Section 8.2 — fire watch must carry appropriate extinguisher

Frequently Asked Questions

What type of fire extinguisher must the fire watch carry?

NFPA 51B requires an appropriate fire extinguisher for the combustibles present in the work area. For typical industrial facilities with wood, paper, and ordinary combustibles (Class A), a dry-chemical ABC extinguisher (2.5 lb minimum, 5 lb preferred for a fire watch position) or a pressurized water extinguisher is appropriate. For areas containing electrical equipment, a CO2 or dry-chemical ABC (not water) is required. For areas near flammable liquids or compressed gases, dry-chemical or CO2. The fire watch is not expected to fight a large fire — the extinguisher is for incipient-stage (very small, early) fires only. If the fire has grown beyond the initial stage, the fire watch activates the alarm and evacuates. Encode hot_work.fire_watch_requires_extinguisher = true and link to appropriate extinguisher type based on the facility's hazard class.

Does NFPA 51B apply to contractors working in a facility?

Yes — NFPA 51B applies to all hot work in a facility regardless of whether the work is performed by facility employees or contractors. The facility's hot work permit program must cover contractor work, and contractors must follow the facility's permit procedures. Under OSHA multi-employer worksite policies, both the controlling employer (facility) and the creating employer (contractor) share responsibility for hot work permit compliance. Contractors must obtain a permit from the facility's designated authority before beginning hot work. Facilities that allow contractors to perform hot work without requiring permit system compliance are in violation of OSHA 1910.252. Encode hot_work.applies_to_contractors = true on hot work equipment sold to facility managers to surface this contractor management requirement.

Can a fire watch also be the person performing the welding?

No. NFPA 51B Section 8.2 requires the fire watch to be a person other than the welder — the fire watch role is dedicated to watching for fire, not performing work. A welder who is simultaneously watching for fires is not performing either task adequately. The fire watch must have a clear line of sight to all areas where sparks and spatter may land, which is often a different position from where the welder is working. For multi-level work (welding above and sparks falling to a lower level), separate fire watches on each level may be required. Encode hot_work.fire_watch_is_dedicated_role = true on fire watch equipment to signal that this is not a task the welder can perform themselves.

Score Your Store's Hot Work Equipment Listings

CatalogScan checks for hot_work.permit_required, hot_work.fire_watch_duration_min, hot_work.blanket_type, and 16 other AI-agent-critical fields. See which welding blanket and fire watch equipment listings are missing NFPA 51B compliance encoding.

Run Free Scan