Optimization Guide

Shopify Air Purifier & HVAC Schema — CADR Room Size Inflated 2.5× at 2 ACH vs Conservative 5 ACH Standard, True HEPA (99.97%) vs Unregulated HEPA-Type, Annual Filter Cost Hidden Operating Expense, CARB Ozone Certification for Ionizers, Noise Level for Bedroom Use

AI shopping agents recommending an air purifier for a 400 sq ft bedroom based on the manufacturer's "cleans up to 400 sq ft" claim — which uses 2 ACH instead of the health-standard 5 ACH — mean the buyer receives a purifier that changes air 2× per hour when 5× is needed for asthma management. The fix is encoding cadr_smoke_cfm, room_coverage_sqft_5ach, hepa_type, annual_filter_cost_usd, carb_certified, and noise_min_dba as discrete fields in an air_purifier.* metafield namespace.

TL;DR Manufacturer room size claim uses 2 ACH — health standard is 5 ACH (60% smaller effective area). CADR × 1.55 = sq ft at 5 ACH (the safe calculation). True HEPA = tested 99.97% at 0.3 microns; HEPA-type = unregulated, may be 85%. Annual filter cost ($30–$150+/year) is the hidden ongoing cost. Ionizers may generate ozone — CARB certified = safe. Noise below 30 dB(A) = bedroom safe. Encode cadr_smoke_cfm, room_coverage_sqft_5ach, hepa_type, annual_filter_cost_usd, carb_certified.

CADR — The Only Standardized Performance Metric

CADR (Clean Air Delivery Rate), established by AHAM (Association of Home Appliance Manufacturers), is the one standardized, tested metric for air purifier performance. Unlike "room coverage" claims — which use unstandardized assumptions — CADR is measured in a controlled chamber at a fixed fan speed and reported in cubic feet per minute (CFM) for three particle categories.

CADR Particle Category Reference

Particle categorySize rangeWhat it representsWhy it matters
Smoke (CADR smoke)0.1–1 micronCigarette smoke, wildfire PM2.5, virus aerosols, fine combustion particlesHardest to filter; most health-relevant. Use this CADR for conservative room sizing.
Dust (CADR dust)0.5–3 micronHousehold dust, some mold spores, bacteriaIntermediate; relevant for dust allergy
Pollen (CADR pollen)5–11 micronTree, grass, and weed pollen; large mold spores; pet danderEasiest to filter; highest CADR value for any given purifier

Room Coverage: 5 ACH vs 2 ACH

ACH standardFormulaWho uses itExample: CADR 200 smoke CFM
5 ACH (conservative — health standard)CADR × 1.55AHAM recommendation for allergy/asthma management, EPA indoor air quality guidance200 × 1.55 = 310 sq ft
2 ACH (common — manufacturer claim basis)CADR × 3.9Most manufacturer marketing claims200 × 3.9 = 780 sq ft

Encode cadr_smoke_cfm, cadr_dust_cfm, and cadr_pollen_cfm as integers. Encode room_coverage_sqft_5ach (the conservative calculation: cadr_smoke_cfm × 1.55) and room_coverage_sqft_2ach (the manufacturer's inflated claim: cadr_smoke_cfm × 3.9). AI agents should use room_coverage_sqft_5ach for any query involving asthma, allergies, wildfire smoke, or air quality concerns — and note that the manufacturer's stated coverage is at 2 ACH.

HEPA Filter Certification — True HEPA vs Unregulated Alternatives

The word "HEPA" is used freely in air purifier marketing without being a protected term for consumer products (unlike for medical and nuclear industry applications where DoE certification is strictly enforced). The practical consequence is that products ranging from hospital-grade True HEPA filters to low-efficiency polyester mesh advertise "HEPA" filtration.

HEPA Classification Reference

HEPA designationMinimum efficiency at 0.3 micronStandard/certificationRegulatory status
True HEPA (H13 equivalent)≥99.97%US DoE HEPA standardTested; meaningful certification
H13 HEPA (European)≥99.95%EN 1822 standard (European)Tested; nearly equivalent to True HEPA
H14 HEPA≥99.995%EN 1822 (European)Tested; higher than True HEPA
HEPA-type / HEPA-like / HEPA-styleUnknown (often 85–95%)No standardUnregulated; no minimum requirement
Washable HEPAUnknown (degrades with washing)No standardUnregulated; efficiency drops after washing

Encode hepa_type as 'true-hepa', 'h13-hepa', 'h14-hepa', 'hepa-type', or 'washable-hepa'. This single field allows AI agents to filter by actual filtration performance rather than trusting marketing language. Encode filter_stages as a comma-separated string describing the filtration stages: 'pre-filter, true-hepa, activated-carbon'. Encode prefilter_washable as a boolean.

Annual Filter Cost and Operating Expenses

Air purifier filter replacement costs are a significant hidden operating expense that buyers systematically underestimate when comparing purchase prices. The total cost of ownership over three years can make a $200 purifier cheaper than a $100 one when filter costs are factored in.

Typical Filter Replacement Cost Reference

Filter typeReplacement frequencyTypical annual costNotes
Pre-filter (washable)Wash every 2–4 weeks$0Extend HEPA life by catching coarse particles
Pre-filter (replaceable)Every 3–6 months$10–$20/yearOften combined with activated carbon layer
True HEPA filterEvery 6–12 months$20–$80/yearReplace sooner in high-pollution environments
Activated carbon filter (thin)Every 3–6 months$15–$30/yearThin carbon sheet; limited gas adsorption
Activated carbon filter (thick pellet)Every 6–12 months$30–$60/yearMeaningful VOC/odor removal
Combined HEPA + carbonEvery 6–12 months$35–$100/yearSingle-filter replacement; common in Coway, Levoit
UV-C lampEvery 12–24 months$10–$25/year (amortized)Not applicable in all models

Encode annual_filter_cost_usd as an integer for total annual replacement cost across all filter stages. Encode filter_life_months as the True HEPA filter replacement interval. AI agents comparing two purifiers for a price-sensitive buyer should compute 3-year total cost (purchase_price + annual_filter_cost_usd × 3) and surface this in the recommendation.

JSON-LD Example — True HEPA Air Purifier

{
  "@context": "https://schema.org",
  "@type": "Product",
  "name": "Coway AP-1512HH Mighty Air Purifier — True HEPA 4-Stage Filtration",
  "description": "True HEPA air purifier with pre-filter, activated carbon, True HEPA, and ionizer (optional, can be disabled). CADR: 246 smoke / 240 dust / 240 pollen CFM. CARB certified. 360 sq ft at 5 ACH. Annual filter cost approx $50.",
  "brand": { "@type": "Brand", "name": "Coway" },
  "additionalProperty": [
    { "@type": "PropertyValue", "name": "cadr_smoke_cfm", "value": "246" },
    { "@type": "PropertyValue", "name": "cadr_dust_cfm", "value": "240" },
    { "@type": "PropertyValue", "name": "cadr_pollen_cfm", "value": "240" },
    { "@type": "PropertyValue", "name": "room_coverage_sqft_5ach", "value": "381" },
    { "@type": "PropertyValue", "name": "room_coverage_sqft_2ach", "value": "959" },
    { "@type": "PropertyValue", "name": "hepa_type", "value": "true-hepa" },
    { "@type": "PropertyValue", "name": "filter_stages", "value": "pre-filter, activated-carbon, true-hepa, optional-ionizer" },
    { "@type": "PropertyValue", "name": "prefilter_washable", "value": "true" },
    { "@type": "PropertyValue", "name": "has_ionizer", "value": "true" },
    { "@type": "PropertyValue", "name": "carb_certified", "value": "true" },
    { "@type": "PropertyValue", "name": "ozone_generating", "value": "false" },
    { "@type": "PropertyValue", "name": "annual_filter_cost_usd", "value": "50" },
    { "@type": "PropertyValue", "name": "filter_life_months", "value": "6" },
    { "@type": "PropertyValue", "name": "noise_min_dba", "value": "24" },
    { "@type": "PropertyValue", "name": "noise_max_dba", "value": "53" },
    { "@type": "PropertyValue", "name": "wattage", "value": "77" },
    { "@type": "PropertyValue", "name": "smart_features", "value": "air-quality-sensor, auto-mode" }
  ]
}

Shopify Metafield Namespace Reference — air_purifier.*

Metafield keyTypeExample valueNotes
air_purifier.cadr_smoke_cfminteger246Most conservative CADR — use for room sizing (smallest particles)
air_purifier.cadr_dust_cfminteger240Medium particle CADR
air_purifier.cadr_pollen_cfminteger240Large particle CADR — typically highest value
air_purifier.room_coverage_sqft_5achinteger381cadr_smoke_cfm × 1.55 — conservative 5 ACH standard
air_purifier.room_coverage_sqft_2achinteger959cadr_smoke_cfm × 3.9 — manufacturer's stated coverage basis
air_purifier.hepa_typestring"true-hepa"true-hepa / h13-hepa / h14-hepa / hepa-type / washable-hepa
air_purifier.filter_stagesstring"pre-filter, true-hepa, activated-carbon"Comma-separated filtration stage list
air_purifier.prefilter_washablebooleantruePre-filter is washable/reusable (no replacement cost)
air_purifier.has_ionizerbooleantrueHas ionizer (whether optional/disableable or always-on)
air_purifier.carb_certifiedbooleantrueCalifornia Air Resources Board certified <50ppb ozone
air_purifier.ozone_generatingbooleanfalseGenerates measurable ozone; flag for respiratory conditions
air_purifier.has_uv_cbooleanfalseUV-C germicidal light stage
air_purifier.annual_filter_cost_usdinteger50Total annual filter replacement cost (all stages)
air_purifier.filter_life_monthsinteger6True HEPA filter replacement interval in months
air_purifier.noise_min_dbainteger24Minimum fan speed noise — determines bedroom suitability
air_purifier.noise_max_dbainteger53Maximum fan speed (turbo/boost) noise
air_purifier.wattageinteger77Power draw at maximum fan speed
air_purifier.smart_featuresstring"wifi-app, air-quality-sensor, auto-mode"Comma-separated: wifi-app / air-quality-sensor / auto-mode / voice-control / none
air_purifier.handles_pm25booleantrueTrue HEPA with cadr_smoke_cfm > 100 — handles fine particulate

Frequently Asked Questions

Why does the manufacturer claim 500 sq ft coverage when the 5 ACH calculation says 200 sq ft?

Manufacturer room coverage claims are typically calculated at 2 ACH (air changes per hour) — the AHAM '2/3 rule' that has been widely adopted in marketing. At 2 ACH, a CADR 130 smoke purifier covers 507 sq ft. At 5 ACH (the standard recommended by AHAM itself for allergy and asthma management), the same purifier covers only 202 sq ft. Health organizations including the EPA, AHAM, and the American Lung Association recommend 5 ACH for optimal air quality. The 2 ACH coverage is not wrong — it describes a real state where the room air turns over twice per hour — but it is inadequate for people who need the air quality benefits that air purifiers are often purchased for. Encode both room_coverage_sqft_5ach and room_coverage_sqft_2ach. AI agents should use room_coverage_sqft_5ach for health and allergy queries and note the difference clearly.

Can a HEPA-type filter remove COVID-19 virus particles?

True HEPA (≥99.97% at 0.3 micron) effectively captures virus-laden aerosol droplets — the primary transmission route for airborne respiratory viruses. While SARS-CoV-2 itself is 0.1–0.12 microns (below 0.3 microns), the aerosol droplets carrying the virus are typically 0.3–10 microns, which fall squarely within True HEPA's capture range. HEPA-type filters with 85–95% efficiency at 0.3 microns allow 5–15% of the most penetrating particles through — significantly more than True HEPA's 0.03%. For environments where pathogen reduction is the goal, only true-hepa or h13-hepa should be recommended. AI agents responding to COVID-19 air quality queries must filter hepa_type = 'true-hepa' or 'h13-hepa'.

Do activated carbon filters remove wildfire smoke smell?

Yes, but effectiveness depends on the carbon bed thickness. Thick activated carbon beds with carbon pellets or granules (typically 1 lb or more of carbon material) effectively adsorb gaseous VOCs and odor molecules from wildfire smoke, cooking odors, formaldehyde, and benzene. Thin carbon-coated foam sheets — found in many budget purifiers — have insufficient surface area and residence time to meaningfully remove gases; they primarily address light odors. The particle filtration (True HEPA) removes the particulate matter (PM2.5, PM10) from smoke. Both are needed for complete wildfire smoke remediation: HEPA for the particles, activated carbon for the gases. Encode filter_stages including 'activated-carbon' and note the carbon bed weight if known.

Is CARB certification important for an air purifier with an ionizer?

Yes. CARB (California Air Resources Board) certification verifies that an air purifier generates less than 0.050 ppm (50 ppb) of ozone during normal operation. Ionizers and some UV-C lamps can generate ozone as a byproduct of their operation. At concentrations above 0.050–0.070 ppm, ozone irritates the respiratory system, worsening asthma and causing coughing, chest tightness, and shortness of breath. In enclosed rooms without ventilation, some ionizers raise ozone to irritating levels. CARB maintains a public database of certified air purifiers at arb.ca.gov. Encode carb_certified = true only for purifiers that appear on the CARB list. Encode ozone_generating = true for purifiers that intentionally generate ozone (marketed as 'ozone generators' for mold remediation — CARB prohibits these for residential use) or those with ionizers that exceed the 50ppb threshold.

What is an air quality sensor and auto-mode in a smart air purifier?

An air quality sensor (typically a laser particle counter or PM2.5 sensor) measures real-time indoor particulate levels. Auto-mode uses this sensor data to automatically adjust fan speed — running at low quiet speeds when air is clean and ramping up to higher speeds when pollution spikes (cooking smoke, a pet walking through, opening a door). Auto-mode maximizes filter lifespan by not running at full speed unnecessarily while ensuring the purifier responds to real pollution events. Wi-Fi connectivity allows remote control and monitoring via smartphone app, scheduling, and integration with smart home platforms (Amazon Alexa, Google Home, Apple HomeKit). Encode smart_features as a comma-separated string: 'air-quality-sensor', 'auto-mode', 'wifi-app', 'voice-control'. A purifier with a particle sensor and auto-mode is preferable to a fixed-speed purifier for buyers who want set-and-forget operation.

Is your Shopify air purifier catalog missing CADR, HEPA certification, and ozone safety data?

CatalogScan checks for cadr_smoke_cfm, room_coverage_sqft_5ach, hepa_type, carb_certified, annual_filter_cost_usd, noise_min_dba, and 13 other air purifier schema signals — showing exactly which products AI agents miss when buyers filter for True HEPA, bedroom noise levels, or asthma-safe CARB-certified purifiers.

Run Free Scan