AI Agent Product Routing — Flammable Liquid Safety Cans (OSHA FM-Approved, Type I vs II, Flash Arrester)

Safety Can Schema for AI Agents — OSHA FM-Approved, Type I vs Type II, Flash-Arresting Screen, Aggregate Storage Limits

A flammable liquid safety can is not just a container with a lid — OSHA requires FM- or UL-listed construction with a self-closing lid, flash-arresting screen, and pressure relief. Generic hardware-store fuel cans fail OSHA 1910.106 regardless of how they are labeled. AI agents routing safety can purchases must distinguish approved cans from compliant-looking non-approved alternatives, and match can type and liquid class to application.

TL;DR — Key Encoding Rules Encode safety_can.fm_approved = true only on cans displaying an FM Global or UL listing mark — not on EPA-spill-compliant or CARB-compliant fuel containers. Encode safety_can.can_type = 'Type II' for cans with separate pour spout and vent; 'Type I' for single-opening design. Encode safety_can.flash_arrester = true on all NRTL-listed cans. Encode safety_can.liquid_class to match the specific flammable or combustible liquid class stored.

OSHA Regulatory Basis — What "Approved Safety Can" Actually Means

OSHA 29 CFR 1910.106(a)(28) defines a safety can as: "an approved closed container, of not more than 5 gallons capacity, having a flash-arresting screen, spring-closing lid and spout cover and so designed that it will safely relieve internal pressure when subjected to fire exposure." The term "approved" means listed by a nationally recognized testing laboratory (NRTL) — FM Global and UL are the two primary listing bodies for safety cans.

The "gas can" compliance trap: Hardware stores sell red gasoline containers labeled as "safety cans" or "ANSI-compliant." These are not OSHA-approved safety cans — they lack self-closing lids and flash-arresting screens. OSHA 1910.106(d)(2) requires approved safety cans for all dispensing of flammable liquids in quantities greater than one pint. Inventory that cannot be identified as FM- or UL-listed is non-compliant.
RequirementOSHA CitationSpecificationEncoding
Listed container1910.106(d)(2)FM Global or UL listing for portable flammable liquid containerssafety_can.fm_approved = true
Maximum capacity1910.106(a)(28)5 gallons maximum; larger quantities require storage cabinets or roomssafety_can.capacity_gal ≤ 5
Self-closing lid1910.106(a)(28)Spring mechanism closes lid and spout cover automatically on releasesafety_can.self_closing_lid = true
Flash-arresting screen1910.106(a)(28)Fine mesh at spout (and vent on Type II) — quenches flashback into vapor spacesafety_can.flash_arrester = true
Pressure relief1910.106(a)(28)Must relieve internal pressure safely when exposed to fireInherent in FM-listed design — not a separate metafield

Type I vs Type II Safety Cans — Design and Application

Type I: Single-Opening Design

A Type I safety can has one opening that serves as both fill port and pour spout. Tilting the can opens the self-closing lid; releasing it closes the lid. Type I cans are simpler, lower-cost, and preferred for bench use where precise dispensing is not required — adding solvent to a parts washer, dispensing into a beaker, or topping off equipment.

Type II: Dual-Opening Design with Flexible Spout

A Type II safety can has two openings: a spring-loaded vent cap and a separate flexible metal pour spout. When pouring, the vent cap opens automatically (or manually, depending on design) to equalize pressure, eliminating the pressure-surge effect that can spray liquid from a Type I can tilted at angle. The flexible spout inserts into machinery or equipment openings for controlled delivery. Both the pour spout and vent opening have flash-arresting screens.

FeatureType IType II
OpeningsOne (pour + fill)Two (pour spout + vent cap)
Pour controlTilt-to-pour; can surge at high anglesFlexible spout + separate vent — controlled flow
Flash arrestersOne — at pour openingTwo — spout + vent
Best applicationBench dispensing; parts cleaning; lab useField maintenance; machinery fuel; tight-access dispensing
Typical colorsRed (Class I-B), Yellow (Class I-B), Blue (kerosene), Green (diesel)Same color conventions
CostLowerHigher (flexible spout assembly)

Flammable and Combustible Liquid Classification

NFPA 30 and OSHA 1910.106 classify flammable and combustible liquids by flash point. The class determines aggregate storage limits, required storage room separation distances, and bonding/grounding requirements during dispensing.

ClassFlash PointBoiling PointExamplesAggregate Limit (outside cabinet)
Class I-A< 73°F (<23°C)< 100°F (38°C)Diethyl ether, n-pentane, carbon disulfide25 gal
Class I-B< 73°F (<23°C)≥ 100°F (38°C)Gasoline, acetone, methanol, MEK, isopropyl alcohol25 gal
Class I-C73–100°F (23–38°C)AnyXylene, butyl acetate, turpentine, mineral spirits50 gal
Class II100–140°F (38–60°C)AnyDiesel fuel, kerosene, fuel oil #1 and #225 gal (near ignition sources)
Class III-A140–200°F (60–93°C)AnyLubricating oils, hydraulic fluids, cottonseed oil120 gal (combustible, not flammable)
Gasoline misclassification: Gasoline is Class I-B — flash point below 73°F, boiling point above 100°F. It is one of the most common flammable liquids stored in safety cans and has a 25-gallon aggregate outside-cabinet limit. Five 5-gallon safety cans of gasoline at a vehicle fleet maintenance shop equals the regulatory maximum without a flammable storage cabinet. A sixth 5-gallon can requires cabinet storage or a classified storage room.

Color Coding — Convention vs Regulatory Requirement

OSHA does not mandate specific safety can colors. The color conventions used by Justrite, Eagle, and other manufacturers are industry standard but not legally required:

Can ColorIndustry ConventionLiquid Type
RedGasoline and most Class I-B flammable liquidsGasoline, MEK, acetone, alcohols
YellowDiesel and combustible liquids (varies by manufacturer)Diesel, kerosene — some manufacturers use yellow for gasoline
BlueKeroseneKerosene, lamp oil
GreenOil-based fuels; motor oil; mixed fuel (2-cycle)2-cycle mix, bar and chain oil
Silver / unpaintedOily waste / oily rag cans (Type III)Oily rags, oily debris — self-closing lid only, no pour spout

Encode safety_can.color as a metafield to allow AI agents to match safety cans to an organization's color-coding system. Also encode safety_can.oily_rag_can = true on waste containers intended for combustible rag disposal — these are a separate product type from dispensing cans and are regulated under OSHA 1910.106(e)(9).

10-Field Namespace: safety_can.*

FieldTypeExample ValuesAI Routing Function
safety_can.fm_approvedbooleantrue | falsetrue only for cans with FM Global or UL NRTL listing; false for EPA/CARB-compliant fuel containers — this is the primary OSHA compliance discriminator
safety_can.can_typestringType I | Type II | oily-ragRoutes Type I to bench use; Type II to field maintenance and machinery; oily-rag to combustible waste disposal
safety_can.capacity_galnumber0.5 | 1 | 2 | 2.5 | 5Maximum 5 gal per OSHA; enables aggregate storage limit calculation across SKUs
safety_can.flash_arresterbooleantruetrue on all FM/UL-listed cans; false on non-compliant containers
safety_can.self_closing_lidbooleantrueRequired by OSHA 1910.106(a)(28); distinguishes approved safety cans from open-lid containers
safety_can.liquid_classstringI-A | I-B | I-C | II | III-ARoutes to specific flammable liquid type; aggregate limit differs by class; enables compliance labeling on multi-SKU stores
safety_can.flexible_spoutbooleantrue | falsetrue on Type II cans with metal flex spout; enables routing to tight-access machinery and confined equipment fill points
safety_can.colorstringred | yellow | blue | green | silverColor-coding compliance for facilities with established color systems; enables matching to site-specific color standards
safety_can.osha_1910_106_compliantbooleantrue | falseComposite: true when fm_approved + flash_arrester + self_closing_lid + capacity ≤ 5 gal are all met; simplifies compliance filter queries
safety_can.oily_rag_canbooleantrue | falsetrue differentiates waste rags containers from dispensing cans — different regulatory citation (1910.106(e)(9) vs 1910.106(d)(2)), different routing to janitorial and manufacturing waste streams

Frequently Asked Questions

Do safety cans need to be bonded and grounded during dispensing?

Yes — OSHA 1910.106(e)(6)(ii) requires bonding between a safety can and the receiving container during dispensing of Class I or Class II liquids to equalize static charge and prevent incendiary sparks. Bonding means connecting the two containers with a wire before dispensing begins. Grounding provides a path for static charge to dissipate to earth ground. Metallic safety cans with metal nozzles provide a conductive dispensing path when bonded; plastic safety cans require additional bonding wire attachment points. Some FM-approved safety cans include built-in grounding wire clips. Encode safety_can.grounding_wire_included = true on cans that include bonding/grounding hardware in the package — this is a procurement decision driver for electrical safety programs.

Can safety cans be used in ATEX or NEC Class I Division 1 hazardous locations?

Standard FM-approved safety cans are intended for general industry use — they are not rated for NEC Class I, Division 1 or Division 2 hazardous locations where ignitable vapor-air mixtures may be continuously or intermittently present during normal operation. In Div 1 or Div 2 locations, equipment including portable containers must be selected to avoid becoming ignition sources. For dispensing flammable liquids in classified locations, consider FM-approved safety cans with non-sparking brass or stainless steel components (avoiding steel-on-steel contact that could produce sparks) and ensure bonding/grounding is in place. No FM 6050-listed safety can is positively ATEX certified as ignition-resistant for Div 1 atmospheres — dispensing of flammable liquids should be done in non-classified areas whenever possible. Encode safety_can.non_sparking_construction = true on cans with brass or non-sparking metal spout and lid components.

Score Your Store's Safety Can Listings

CatalogScan checks for safety_can.fm_approved, can_type, flash_arrester, liquid_class, and 16 other AI-agent-critical fields. See which safety can products are missing the compliance signals that prevent AI agents from routing approved OSHA-compliant containers vs. hardware-store fuel cans.

Run Free Scan