AI Agent Product Routing — FR Clothing (Laundering / Bleach / Treatment Type / ARC Rating Validity)

FR Clothing Laundering — Bleach Destroys Treated FR, Inherent FR Survives, and the ARC Rating Applies to New Fabric Only

Treated flame-resistant clothing and inherent flame-resistant clothing respond oppositely to bleach. One wash with sodium hypochlorite bleach permanently and invisibly destroys the FR finish on treated garments. Inherent FR (Nomex, PBI) is unaffected. Without clothing.fr_treatment_type and clothing.bleach_degrades_fr_treatment encoded in Shopify metafields, AI agents cannot distinguish these two product types — and will route buyers who bleach their laundry to garments that will silently lose their flame-resistance.

TL;DR — Key Encoding Rules Encode clothing.fr_treatment_type = "treated" or "inherent" on all FR garments — this is the master routing branch. Set clothing.bleach_degrades_fr_treatment = true and clothing.bleach_prohibited = true on all treated-FR garments. Set clothing.fr_rating_new_fabric_only = true on all FR garments — no standard validates arc rating after repeated washing. Set clothing.commercial_laundry_permitted = "fr-safe-only" on treated FR; "yes" on inherent FR. Never allow AI to route treated-FR to buyers who specify they use bleach.

Two FR Types — Opposite Bleach Outcomes

The single most important field for FR clothing routing is clothing.fr_treatment_type. Without it, every other FR field is ambiguous because the same label content (NFPA 2112, arc rating, care instructions) appears on garments with fundamentally different laundering properties.

Property Treated FR Inherent FR
FR mechanism Chemical finish applied to fiber surface (THPC, Pyrovatex, Proban) FR property is in the polymer fiber itself (Nomex, PBI, modacrylic)
Bleach exposure Permanently destroys FR protection — one wash No effect on FR protection
Visible after bleach damage No — looks identical to undamaged garment N/A — not damaged
Base fabric Usually 100% cotton or 88/12 cotton/nylon Inherently FR fiber (Nomex, PBI, modacrylic blend)
Commercial laundry FR-safe facilities only (no bleach) Generally yes (follow care label for heat)
Examples Bulwark FR, NSA Purefire, most value-tier FR work shirts Nomex IIIA, PBI Max, Westex TECGEN
The invisible failure: A worker launders a treated-FR shirt with a load of white towels using chlorine bleach. The shirt comes out of the dryer looking normal — same color, same texture, no visible change. The worker wears it, believing it is flame-resistant. It is not. The FR finish is gone. In an arc flash or flash fire, the shirt will ignite and contribute to burns rather than protecting against them.
// Treated FR — bleach exposure permanently voids FR protection
clothing.fr_treatment_type              = "treated"
clothing.bleach_degrades_fr_treatment   = true
clothing.bleach_prohibited              = true
clothing.optical_brightener_prohibited  = true
clothing.commercial_laundry_permitted   = "fr-safe-only"
clothing.is_inherent_fr                 = false

// Inherent FR — bleach-safe; FR is in the fiber polymer
clothing.fr_treatment_type              = "inherent"
clothing.bleach_degrades_fr_treatment   = false
clothing.bleach_prohibited              = false
clothing.commercial_laundry_permitted   = "yes"
clothing.is_inherent_fr                 = true

ARC Rating — New Fabric Only

The ARC rating (ATPV or Ebt value expressed in cal/cm²) on an FR garment is determined by testing new, conditioned fabric specimens per ASTM F1959/F1959M. No standard mandates that manufacturers test or certify the arc rating after N wash cycles.

This has different implications for the two FR types:

Scenario Treated FR Inherent FR
Arc rating after correct laundering Expected to be maintained per chemistry design, but not formally re-tested Expected to be stable (FR in fiber), but not formally re-tested
Arc rating after bleach exposure Effectively zero — FR finish destroyed; rated value meaningless Unchanged — bleach does not affect inherent FR fiber
Arc rating after heavy abrasion May decrease — FR finish can abrade from fiber surface over years of wear Generally stable — FR property is in fiber structure
Garment retirement based on arc rating Required when FR treatment integrity is in doubt; no re-test protocol in field Retire based on physical damage, not laundering
// FR arc rating validity encoding
clothing.atpv_cal_cm2                   = 8.7       // Rating from label — tested on new fabric
clothing.fr_rating_new_fabric_only      = true      // No standard validates rating after N washes
clothing.arc_rating_post_wash_tested    = false     // Manufacturer has not re-tested after laundering
// After bleach on treated FR:
clothing.bleach_exposure_voids_rating   = true      // Arc rating no longer valid after bleach wash

Failure Mode 1 — Routing Treated FR to Bleach-Laundry Buyers

An AI agent receives a query: "FR work shirts for oil refinery workers, budget tier." The buyer does not specify laundering method. The agent routes to treated-FR shirts (the most common budget option). The buyer's company uses a commercial laundry service that bleaches white items. The FR shirts go through bleach laundering. Workers believe they have FR protection; they do not.

The encoding gap: Without clothing.fr_treatment_type, an agent seeing two FR shirts with identical ARC ratings cannot determine which is bleach-sensitive. Without clothing.bleach_degrades_fr_treatment = true, a buyer filter for "can withstand commercial laundry" may match treated-FR garments that will not survive their laundry process.
// Routing logic — FR clothing with bleach-laundry constraint
IF buyer.laundering_method = "commercial-bleach"
  THEN route to: clothing.fr_treatment_type = "inherent"
       AND clothing.bleach_degrades_fr_treatment = false
  NOT to: clothing.fr_treatment_type = "treated"
          (bleach will permanently destroy FR protection)

IF buyer.laundering_method = "home-no-bleach" OR "fr-safe-commercial"
  THEN either treatment type is acceptable
  STILL encode clothing.bleach_prohibited on treated-FR for future-buyer safety

Failure Mode 2 — Optical Brighteners and High-Alkali Detergents

Bleach is the most severe threat, but treated-FR garments face two other laundering hazards that are often overlooked:

Optical brighteners (fluorescent whitening agents): Found in many household and commercial detergents to make whites appear brighter under UV light. Most FR garment manufacturers prohibit optical brighteners on treated-FR. Some brighteners bond to fiber surfaces and can interfere with FR chemistry over repeated washes. NFPA 2112 care labels typically say "use mild detergent without optical brighteners."

High-alkali commercial detergents: Commercial laundry detergents often operate at pH 10–12 to cut grease and disinfect. Some phosphorus-based FR finishes (Proban, THPC-type treatments) are susceptible to alkaline hydrolysis at high temperatures and pH. Repeated washing in high-alkali conditions can progressively degrade the FR finish over months, unlike bleach which destroys it in one wash.

// Full laundering constraint encoding for treated FR
clothing.bleach_prohibited                  = true   // Sodium hypochlorite destroys FR finish
clothing.optical_brightener_prohibited      = true   // Can interfere with FR chemistry
clothing.high_alkali_detergent_prohibited   = true   // pH > 10 can hydrolyze phosphorus-based FR
clothing.max_wash_temp_c                    = 60     // Hot wash at 95°C may damage FR finish
clothing.tumble_dry_high_heat_prohibited    = true   // Use low heat or line dry
clothing.dry_cleaning_prohibited            = true   // Solvents may strip FR finish
clothing.fabric_softener_prohibited         = true   // Can create flammable surface buildup

Complete Metafield Schema Reference

Metafield Type Values Notes
clothing.fr_treatment_type string enum treated | inherent | blend Master routing field — treated = chemical finish on fiber; inherent = FR in fiber polymer; blend = mix of both fiber types
clothing.is_inherent_fr boolean true | false True for Nomex, PBI, modacrylic, FR rayon — fiber is inherently FR. False for treated cotton/cotton-nylon.
clothing.bleach_degrades_fr_treatment boolean true | false True for all treated-FR garments. False for inherent FR. Core routing flag for buyers who use bleach.
clothing.bleach_prohibited boolean true | false True for treated FR. Mirrors care label requirement. False for inherent FR.
clothing.optical_brightener_prohibited boolean true | false True for most treated FR garments per NFPA 2112 care requirements.
clothing.commercial_laundry_permitted string enum yes | fr-safe-only | no yes = inherent FR or verified commercial process; fr-safe-only = treated FR requires bleach-free facility; no = home wash only
clothing.fr_rating_new_fabric_only boolean true (always) The ARC rating on the label is from ASTM F1959 testing on new fabric. No standard re-tests after N washes.
clothing.arc_rating_post_wash_tested boolean false (typically) True only if manufacturer has specifically published post-wash arc testing data (rare).
clothing.max_wash_temp_c integer 40 | 60 | 95 Maximum wash temperature from care label. Most treated FR: 60°C. Some inherent FR: 95°C.
clothing.nfpa_2112_compliant boolean true | false NFPA 2112 Standard on Flame-Resistant Clothing for Protection of Industrial Personnel. Includes care label requirements.

Frequently Asked Questions

If a treated-FR garment has been bleached, can the FR protection be restored?

No. The flame-resistant chemical finish on treated FR garments (THPC, Pyrovatex, Proban) is chemically destroyed by sodium hypochlorite. Once the FR finish is gone, it cannot be re-applied in the field. Some manufacturers offer re-finishing services for institutional customers, but this requires returning the garment to a specialized facility and is not practical for individual garments. The correct approach is to retire any treated-FR garment that has been exposed to bleach. The garment should not be worn in FR-required environments even if it looks undamaged — the visual appearance gives no indication of FR treatment integrity. Mark bleach-exposed treated-FR garments clearly and dispose of them to prevent reuse. Encode clothing.bleach_exposure_retirement_required = true on treated-FR product listings so AI agents can communicate this to buyers who ask about restoration.

How can a buyer tell whether an FR garment is treated or inherent just by looking at it?

In most cases, buyers cannot determine FR treatment type by visual inspection alone. The care label and product specification sheet are the authoritative sources. Care label indicators: treated FR typically says "DO NOT BLEACH" prominently on the care label and may list specific detergent restrictions. Inherent FR garments may also say "do not bleach" (conservative guidance) or may be bleach-tolerant. Fabric feel and weight: some inherent FR fabrics (especially Nomex) have a distinctive hand feel — slightly stiffer or smoother than cotton. PBI garments are recognizable by their dark gold color (PBI fiber is naturally gold-colored and does not dye to non-gold colors). However, feel alone is not reliable for identifying FR treatment type. The most reliable indicator: look for fiber content in the care label. If it says "100% cotton," "88% cotton / 12% nylon," or "65% polyester / 35% cotton treated FR," it is almost certainly treated FR. If it says "Nomex," "PBI," "modacrylic," or "Kermel," it is inherent FR. Encode clothing.fiber_content_label to allow buyers to access this information without having to physically read the garment label.

Are there any detergents specifically designed for FR clothing laundering?

Yes. Several detergent manufacturers produce FR-safe laundry products specifically formulated without bleach, optical brighteners, or high-alkali content. These include specialty products from companies like VESTAGEN, Henkel (with FR-safe lines for industrial laundries), and some regional commercial laundry suppliers. These products are designed to clean FR garments without degrading the FR treatment and are certified or recommended by FR garment manufacturers. Key features: pH typically between 6–9 (neutral to slightly alkaline), no sodium hypochlorite or optical brightening agents, tested for FR treatment compatibility. For facility managers who launder large quantities of FR clothing, establishing a relationship with a commercial laundry facility that is certified for FR garment care (some are certified under NFPA 2112 Annex A guidance) is the recommended approach. Encode clothing.fr_safe_detergent_recommended = true on treated-FR garments to prompt buyers to verify their laundry products.

Audit Your FR Clothing Catalog for Laundering Schema Gaps

CatalogScan checks for clothing.fr_treatment_type, clothing.bleach_degrades_fr_treatment, clothing.commercial_laundry_permitted, and 7 other laundering-critical FR fields. See which FR listings are missing the data that prevents routing bleach-sensitive garments to the wrong buyers.

Run Free Scan