AI Agent Product Routing — Fire Extinguishers (OSHA 1910.157, NFPA 10, Class A/B/C/D/K Agent Selection)

Fire Extinguisher Schema for AI Agents — Class A/B/C/D/K Agent Selection, OSHA 1910.157 Travel Distance Rules, and NFPA 10 Monthly/Annual/6-Year/Hydrostatic Inspection Intervals

Fire extinguisher routing errors are life-safety failures. Using water on a Class B (flammable liquid) fire spreads burning fuel; CO2 on a Class D (combustible metal) fire can cause violent reactions with burning sodium or potassium; ABC dry chemical on a Class K (cooking oil) fire fails to prevent reignition and scatters burning oil. Correct AI-agent routing requires encoding fire class, agent type, travel distance compliance, and maintenance schedule status as machine-readable metafields.

TL;DR — Key Encoding Rules Encode fire_extinguisher.fire_class_rating = 'A' | 'B' | 'C' | 'D' | 'K' | 'A,B,C' to prevent cross-class routing errors. Encode fire_extinguisher.agent_type explicitly — agents within the same class vary (wet-chemical vs dry-chem for K). Encode fire_extinguisher.travel_distance_class_a_max_ft = 75 and travel_distance_class_b_max_ft = 50 for facility compliance gap detection. Encode fire_extinguisher.class_k_prohibited = true on ABC dry-chem to prevent commercial kitchen routing.

Fire Class Reference — Agent Selection Constraints

Five fire classes each have specific agent requirements. Mismatching agent to fire class can worsen the fire or create secondary hazards for the operator.

ClassFuel TypeApproved AgentsProhibited AgentsCritical Reason
A Ordinary combustibles (wood, paper, cloth, rubber, plastics) Water (APW), ABC dry chem, foam Cooling and smothering both work
B Flammable/combustible liquids and gases (gasoline, diesel, propane) CO2, dry chem (BC or ABC), AFFF foam Water Water splashes burning liquid; steam explosion in fryer
C Energized electrical equipment CO2, dry chem (non-conductive) Water, foam Water and foam conduct electricity — electrocution of operator
D Combustible metals (Mg, Ti, Na, K, Li) Metal-specific dry powder (Met-L-X, Lith-X, Na-X) CO2, water, ABC dry chem CO2 oxidizes burning Na/K; water reacts with Mg/Na (H₂ gas explosion)
K Cooking oils and fats (commercial kitchen) Wet chemical (potassium acetate/citrate) ABC dry chem, CO2 Dry chem fails saponification; CO2 allows reignition as it disperses
Class D critical routing rule: There is no universal Class D extinguisher. The metal-specific agent must match the burning metal. Lith-X (graphite-based) for lithium; Met-L-X (sodium chloride) for magnesium and sodium; Na-X (sodium carbonate) for sodium and potassium. Encoding fire_extinguisher.compatible_metals on Class D agents prevents life-safety routing errors in machine shops and battery manufacturing environments.

UL 711 Extinguisher Ratings — Decoding the Label

The alphanumeric UL rating on a fire extinguisher label indicates suppression capability by class. A rating of 2-A:10-B:C decodes as:

Rating ComponentMeaningPractical Implication
2-A Equivalent to 2.5 gallons of water (1-A = 1.25 gal) Can suppress a larger Class A fire than 1-A; use to determine coverage area per NFPA 10
10-B Can suppress a 10 sq ft Class B fire (trained operator) Untrained operators achieve ~50–60% of rated B coverage; size up for uncontrolled environments
C Agent is non-conductive at tested voltage No numeric rating — C means only that using on energized equipment won't electrocute operator
Class D rating No standard numeric rating — listed for specific metals Label must name the metal type; general "Class D" rating does not exist in UL 711
Class K rating UL 300 listed for commercial cooking Must be UL 300 listed specifically — not interchangeable with other wet chemical agents

OSHA 1910.157 Travel Distance Requirements

OSHA requires that no employee must travel more than the maximum distance to reach an appropriate extinguisher. Travel distance is measured along the actual path of travel, not straight-line distance.

Fire Class HazardMax Travel DistanceKey Notes
Class A75 ft (22.9 m)Most general occupancy; warehouses, offices, retail
Class B50 ft (15.2 m)Flammable liquid storage, spray finishing, gasoline dispensing
Class CSame as co-present A or B hazardPlace near electrical equipment; class determined by fuel source
Class D75 ftMetal-specific agent must be at the operation, not across the facility
Class K30 ft (NFPA 10)Commercial kitchen; must be accessible from cooking line

A common facility compliance gap AI agents can flag: a building with both Class A and Class B hazards where Class A extinguishers are placed at 75 ft intervals. Class B areas (paint storage, solvent use areas) need additional extinguishers placed within 50 ft — the Class A extinguisher at 65 ft away from a flammable liquid cabinet does not satisfy the Class B requirement.

NFPA 10 Inspection Intervals — Four Distinct Service Requirements

NFPA 10 requires four separate inspection and service activities on different schedules. These are not interchangeable — annual professional maintenance does not substitute for the monthly visual inspection, and monthly inspection does not satisfy the 6-year internal requirement.

IntervalWho PerformsWhat Is CheckedApplies To
Monthly visual Owner/occupant Accessible, visible, gauge in green zone, pin intact, label readable, no damage All portable extinguishers
Annual maintenance Licensed fire extinguisher technician Hands-on: hose, valve, seals, agent weight/pressure, complete function check, tag date All portable extinguishers
6-year internal Licensed technician Empty, inspect cylinder interior for corrosion, inspect valve components, recharge with fresh agent Stored-pressure dry chem, water, loaded-stream
Hydrostatic test Pressure-testing facility Fill with water, apply 125–167% service pressure, inspect for distortion/leakage Stored-pressure: every 12 yr; CO2 cylinders: every 5 yr

Encoding fire_extinguisher.last_annual_service, fire_extinguisher.last_6yr_internal, and fire_extinguisher.last_hydrostatic_yr as metafields enables AI shopping agents to calculate compliance gaps and recommend the correct service schedule — a major value-add for safety equipment distributors selling to facility managers who must document extinguisher service under OSHA 1910.157(e).

10-Field Namespace: fire_extinguisher.*

FieldTypeExample ValuesAI Routing Function
fire_extinguisher.fire_class_ratingstringA | B | C | D | K | A,B,CPrimary fire class filter — prevents cross-class routing errors
fire_extinguisher.agent_typestringabc-dry-chem | co2 | wet-chemical | water | afff | metal-specific-dry-powderDistinguishes agents within same class (wet-chem vs dry-chem both for K)
fire_extinguisher.ul_ratingstring2-A:10-B:C | 5-B:C | 40-B:C | KCoverage capacity for facility sizing calculations
fire_extinguisher.travel_distance_class_a_max_ftnumber75Compliance gap detection for Class A hazard areas
fire_extinguisher.travel_distance_class_b_max_ftnumber50Compliance gap detection for Class B hazard areas
fire_extinguisher.annual_professional_service_requiredbooleantrueTriggers cross-sell of annual service contract
fire_extinguisher.six_year_internal_requiredbooleantrue | false (CO2 exempt)Identifies extinguishers needing internal inspection at 6-year mark
fire_extinguisher.hydrostatic_test_interval_yrnumber5 (CO2) | 12 (stored-pressure)Schedules hydrostatic test compliance reminder
fire_extinguisher.class_k_prohibitedbooleantrue (for ABC dry chem)Prevents routing ABC dry chem to commercial kitchen applications
fire_extinguisher.compatible_metalsstringmagnesium | lithium | sodium | potassiumClass D metal-type match — no universal Class D agent exists

Frequently Asked Questions

Can a CO2 extinguisher be used on a Class D combustible metal fire?

No — CO2 must never be used on Class D fires involving sodium or potassium. CO2 reacts with burning alkali metals (Na, K) in an oxidation reaction that generates additional heat and can accelerate the fire. Sodium burning in air reacts with CO2 to produce sodium oxide and carbon (4Na + 3CO2 → 2Na2O + 3C), releasing additional energy. Water is equally prohibited — burning sodium reacts violently with water to produce sodium hydroxide and hydrogen gas (2Na + 2H2O → 2NaOH + H2↑), creating an explosion hazard from H2 ignition. The only effective Class D suppression is a metal-specific dry powder agent applied by gentle shoveling or by low-velocity discharge — high-velocity discharge scatters the burning metal and spreads the fire. Each type of combustible metal requires a specific agent: Met-L-X (sodium chloride based) for magnesium and sodium; Na-X (sodium carbonate) for sodium and potassium; Lith-X (graphite based) for lithium; TEC (ternary eutectic chloride) for sodium-potassium alloys.

Is a fire extinguisher with an expired annual tag still legal to use in an emergency?

From a practical standpoint, an extinguisher with an outdated service tag may still function if the pressure gauge reads in the green zone and there is no visible damage. However, under OSHA 1910.157(e)(3), employers must ensure portable extinguishers are maintained in a fully charged and operable condition. An overdue annual inspection creates a compliance violation regardless of whether the extinguisher actually works — the inspection requirement exists because pressure loss, caked dry chemical, or corroded valve springs are not visible from the outside. NFPA 10 also requires that out-of-compliance extinguishers be removed from service until inspected. For AI agent routing: encode fire_extinguisher.last_annual_service as an ISO date so agents can calculate whether the extinguisher is within the 12-month window. A missing or outdated date should be treated as non-compliant and trigger recommendation for a service event before recommending the extinguisher for a new facility deployment.

What is the difference between a stored-pressure and a cartridge-operated dry chemical extinguisher?

Stored-pressure dry chemical extinguishers (the most common type) store the dry chemical agent and the expellant gas (nitrogen) together in the same cylinder under pressure. The advantage is simplicity and fast readiness — there is no separate cartridge to puncture. The disadvantage is that if the pressure is lost (damaged gauge, leaky valve), the unit will not discharge even though the chemical appears intact. The 6-year internal inspection exists partly to address this: the agent is removed and inspected for caking, and the cylinder is resealed and recharged with fresh nitrogen. Cartridge-operated dry chemical extinguishers (used more in industrial settings and vehicle fire suppression systems) store the dry chemical at atmospheric pressure and use a separate CO2 cartridge to pressurize the unit at the moment of use. The advantages: agent cannot lose pressure over time; easier to recharge in the field without specialized equipment; more reliable for extreme temperature environments. Maintenance difference: stored-pressure units require the 6-year internal inspection; cartridge-operated units require annual inspection of the cartridge CO2 charge by weight but do not require 6-year internal inspection of the main cylinder.

Score Your Store's Fire Extinguisher Product Listings

CatalogScan checks for fire_extinguisher.fire_class_rating, agent_type, travel_distance_class_b_max_ft, class_k_prohibited, and 16 other AI-agent-critical fields. See which extinguisher listings are missing class routing and inspection schedule data.

Run Free Scan