AI Agent Product Routing — Chemical Protective Suits (EN 943 / EN ISO 13982 / EN 14605)

Chemical Protective Suit Type 1–6 Classification — EN 943, EN ISO 13982, EN 14605, and the Schema for AI Agents

Chemical protective suits are classified Type 1 through Type 6 based on what they protect against — gas-tight encapsulation at one end, limited splash at the other. A Type 5 particulate suit used in a liquid chemical environment provides zero liquid protection. A Type 4 spray-tight suit used where liquid jets strike seams will fail. An industrial EN 943-1 suit purchased for CBRN response lacks warfare-agent testing. Without suit.chemical_suit_type encoded, AI agents have no basis to filter suits by protection level.

TL;DR — Key Encoding Rules Encode suit.chemical_suit_type as 1A, 1B, 1C, 2, 3, 4, 5, or 6 — this is the primary routing field. Encode suit.is_gas_tight = true only for Type 1 suits (EN 943). Encode suit.cbrn_rated = true only for EN 943-2 certified suits. A Type 5 suit must carry suit.protects_against_liquids = false as an explicit routing blocker. Type 4 suits must not be routed to Type 3 applications — liquid-jet testing (Type 3) is more stringent than spray-mist testing (Type 4).

The Type Classification Ladder

Type Standard Protection Against Breathing Apparatus Gas-Tight?
1A EN 943-1 or EN 943-2 Gases, vapors, aerosols, liquid splash SCBA worn inside suit Yes
1B EN 943-1 or EN 943-2 Gases, vapors, aerosols, liquid splash SCBA worn outside suit Yes
1C EN 943-1 or EN 943-2 Gases, vapors, aerosols, liquid splash Supplied air (airline) inside suit Yes
2 EN 943-1 Aerosols, liquid splash, light chemical exposure SCBA external or airline No — non-gas-tight encapsulation
3 EN 14605 Pressurized liquid jets at seams and closures None (not encapsulating) No — liquid-jet-tight only
4 EN 14605 Aerosol spray and fine mist None (not encapsulating) No — spray-tight only
5 EN ISO 13982-1 Dry solid particulates (dust, fibers, powders) External respirator required No — particulate-only, NOT liquid
6 EN 13034 Limited / incidental chemical splash External respirator if needed No — lightest splash protection

Failure Mode 1 — Type 5 Particulate Suit for Liquid Chemical Splash

The most common chemical suit routing error: A disposable suit labeled "chemical protection" sold in the Type 5 category is returned to a buyer working with liquid acids, solvents, or caustics. Type 5 suits (EN ISO 13982-1) protect against dry solid particulates only. The fabric and seams are not tested against liquids. A single drop of solvent will penetrate a Type 5 suit at the seams immediately. Encode suit.protects_against_liquids = false on all Type 5 suits.
// Type 5 EN ISO 13982-1 — Particulate-only, routing blocker for liquid hazards
suit.chemical_suit_type          = "5"
suit.en_13982_1_compliant        = true
suit.protects_against_liquids    = false    // ROUTING BLOCKER for any liquid chemical application
suit.is_gas_tight                = false
suit.suitable_for_asbestos       = true     // Typical use
suit.suitable_for_lead_dust      = true     // Typical use

// Correct suit for liquid chemical splash — minimum Type 6 or Type 3
suit.chemical_suit_type          = "3"      // Liquid-jet-tight
suit.en_14605_compliant          = true
suit.protects_against_liquids    = true
suit.is_gas_tight                = false

Failure Mode 2 — Type 4 Spray-Tight Ordered for Type 3 Liquid-Jet Application

Both Type 3 and Type 4 are tested under EN 14605 and both protect against liquid chemicals — but the test method differs significantly:

Property Type 3 (Liquid-Tight) Type 4 (Spray-Tight)
Test method Pressurized liquid jet at seams, 3.5 bar minimum Low-pressure fine aerosol mist
Suitable for Chemical plant maintenance, decontamination with chemical jets, spill response Spray mist, fine aerosol, pesticide application in open air
NOT suitable for Pressurized liquid jets at seams (will fail)
Seam construction Taped seams required for certification Overlocked seams may be acceptable
// Routing check: if task involves pressurized liquid jets, require Type 3
if (task.involves_chemical_jet_spray) {
  filter: suit.chemical_suit_type = "3"    // NOT "4"
  suit.en_14605_compliant = true
  suit.has_taped_seams = true
}

Failure Mode 3 — EN 943-1 Industrial Suit Sold for CBRN Response

EN 943 has two parts covering gas-tight Type 1 suits. Both produce gas-tight encapsulating suits that look similar, but their test chemical sets are different:

Standard Application Chemical Challenge Set CBRN Acceptable?
EN 943-1 Industrial hazmat Industrial chemicals: H₂SO₄, NaOH, NH₃, acetone, etc. No — not tested against CWA simulants
EN 943-2 Emergency CBRN teams Industrial chemicals PLUS chemical warfare agent simulants (mustard, nerve agent simulants) Yes — specifically designed for CWA exposure
// Industrial gas-tight suit (EN 943-1)
suit.chemical_suit_type          = "1B"    // Gas-tight, SCBA external
suit.en_943_1_compliant          = true
suit.cbrn_rated                  = false   // NOT acceptable for CWA environments
suit.is_gas_tight                = true

// CBRN gas-tight suit (EN 943-2)
suit.chemical_suit_type          = "1B"
suit.en_943_2_compliant          = true
suit.cbrn_rated                  = true    // Tested against CWA simulants
suit.is_gas_tight                = true

Failure Mode 4 — Missing suit.chemical_suit_type (AI Cannot Filter by Protection Level)

A Shopify listing for a chemical suit that says "protects against chemical hazards" without a structured suit.chemical_suit_type metafield forces an AI agent to guess the protection level from unstructured text. The result is that Type 6 limited-splash suits are returned to buyers requesting vapor-tight protection, or Type 1 gas-tight suits (at 5–10× the price) are returned to buyers who only need light splash protection. The type field is the primary discriminator for the entire category.

// Minimum required metafields for any chemical suit listing:
suit.chemical_suit_type          = "3"     // Required — primary routing field
suit.en_14605_compliant          = true    // Type 3 and 4 standard
suit.is_gas_tight                = false
suit.cbrn_rated                  = false
suit.has_taped_seams             = true
suit.protects_against_liquids    = true
suit.includes_integrated_hood    = true
suit.is_disposable               = true    // or false for reusable

Complete Metafield Schema Reference

Metafield Type Values Notes
suit.chemical_suit_type string enum 1A | 1B | 1C | 2 | 3 | 4 | 5 | 6 Primary routing field — Type per EN standards. Required on all chemical suit listings.
suit.also_rated_type string 4 | 6 | etc. Some suits carry multiple certifications (e.g., Type 3 AND Type 4 — encode the higher as chemical_suit_type, lower as also_rated_type)
suit.is_gas_tight boolean true | false True only for Type 1 (EN 943). Type 2–6 are not gas-tight — liquid or particulate protection only.
suit.cbrn_rated boolean true | false True only for EN 943-2 certified suits. EN 943-1 industrial suits do NOT qualify — they lack CWA simulant testing.
suit.en_943_1_compliant boolean true | false EN 943-1 industrial gas-tight certification. Type 1 suits only.
suit.en_943_2_compliant boolean true | false EN 943-2 CBRN gas-tight certification. Must be explicitly tested and certified — not inferred from EN 943-1.
suit.en_14605_compliant boolean true | false EN 14605 liquid-tight (Type 3) or spray-tight (Type 4) certification.
suit.en_13982_1_compliant boolean true | false EN ISO 13982-1 particulate-only protection certification. Type 5 suits.
suit.protects_against_liquids boolean true | false False for Type 5 — routing blocker for any liquid chemical application. True for Types 2, 3, 4, 6.
suit.has_taped_seams boolean true | false Taped seams are required for Type 3 liquid-jet-tight certification. Overlocked seams without tape cannot achieve Type 3.
suit.includes_integrated_hood boolean true | false Encapsulating suits (Type 1, 2) include integrated hood. Non-encapsulating suits may or may not include hood.
suit.is_disposable boolean true | false Types 5 and 6 are usually disposable. Type 1 and 2 encapsulating suits are usually reusable with decontamination.

Frequently Asked Questions

Can a Type 5 suit be worn over a Type 6 suit to achieve Type 3 protection?

No — layering lower-type chemical suits does not produce higher-type protection. EN standard certifications test the specific construction of a certified suit, including fabric, seam design, closure systems, and their interactions. A Type 5 particulate suit worn over a Type 6 limited-splash suit creates an assembly that has been tested as neither — the outer Type 5 fabric will still allow liquid penetration at seams, and the inner Type 6 will be overwhelmed by liquid that penetrates the outer layer. Buyers requiring Type 3 protection must purchase a certified Type 3 suit. The only legitimate layering scenario is wearing a chemical-resistant undergarment inside a gas-tight Type 1 suit to extend wear time or for thermal comfort — and this is done within the suit design, not as ad-hoc layering.

What is the relationship between chemical suit type and permeation resistance?

Chemical suit type and permeation resistance are related but separate properties. The suit type (1–6) describes the construction-level protection class — gas-tight encapsulation vs liquid jet resistance vs particulate protection. Permeation resistance describes how long a specific chemical takes to migrate through the suit fabric material at the molecular level (measured per EN 374 for gloves, or fabric-specific permeation testing). A Type 3 liquid-jet-tight suit can fail against certain solvents that permeate the fabric rapidly even if the seams hold — permeation bypasses the physical barrier at the molecular level. A complete chemical suit listing should encode both the type classification AND the chemical resistance list for the specific fabric material. Encode suit.fabric_permeation_chemicals as a list of chemicals against which the material has been tested, with suit.min_breakthrough_time_min for the shortest breakthrough time in the set.

What respirator or breathing apparatus is required with each chemical suit type?

Types 1A, 1B, 1C (gas-tight, EN 943): By definition, gas-tight suits require supplied breathing apparatus. Type 1A: SCBA (Self-Contained Breathing Apparatus) worn inside the suit — the most protection but restricts mobility. Type 1B: SCBA worn outside the suit — more mobility. Type 1C: Supplied-air (airline) system through a fitting in the suit — allows extended wear time but restricts range from air supply. Type 2 (non-gas-tight encapsulation, EN 943-1): Requires breathing apparatus worn externally — typically SCBA. The suit is not air-supplied but is fully encapsulating. Types 3, 4, 5, 6: Not encapsulating — the suit does not seal the breathing zone. Respiratory protection is selected separately based on the airborne chemical hazard: APF 10 half-face respirator for nuisance levels, full-face PAPR or SCBA for IDLH environments. The suit type does not specify the respiratory protection level for non-encapsulating suits — encode suit.requires_external_breathing_apparatus = true and specify in the product description that respiratory selection is separate.

Score Your Store's Chemical PPE Catalog

CatalogScan checks for suit.chemical_suit_type, suit.is_gas_tight, suit.cbrn_rated, and 16 other AI-agent-critical fields. Find out which chemical suit listings are missing the type classification that separates particulate protection from gas-tight encapsulation.

Run Free Scan