Optimization Guide

Shopify Camping & Outdoor Gear Schema — Sleeping Bag EN ISO 23537 Temperature Ratings, Tent Water Column, Waterproof Boot Structured Data

AI shopping agents answering queries like "sleeping bag rated to −10°C for women," "3-season backpacking tent under 2kg waterproof 3000mm," "Gore-Tex hiking boot size 10 wide width," or "65L backpacking pack with torso adjustment" need numeric temperature ratings, millimeter water column values, waterproofing technology type, and capacity in liters encoded as machine-readable structured data. Shopify's default JSON-LD outputs only product name and price — the EN ISO 23537 comfort rating, tent hydrostatic head, Gore-Tex membrane designation, and torso fit range that define a $150 entry tent versus a $600 mountaineering shelter are invisible to AI shopping agents without explicit schema markup.

TL;DR Use Product @type with additionalProperty for sleeping bag EN ISO 23537 temperature ratings (Upper Limit, Comfort, Lower Limit, Extreme — all in °C), tent water column (mm, fly + floor separately), season rating (3-season / 4-season / mountaineering), tent weight (grams), tent floor area (m²), tent capacity (persons), waterproofing technology (Gore-Tex Extended Comfort / Gore-Tex Performance Shell / eVent / DWR-only), boot waterproof standard, backpack volume (liters), torso fit range (cm), and trekking pole material (carbon vs aluminum) and weight. Store values in a dedicated outdoor.* metafield namespace.

Why Outdoor Gear Is Structurally Invisible to AI Shopping Agents

Sleeping bag temperature ratings are a safety-critical specification governed by EN ISO 23537. The standard defines four temperature zones tested on a mannequin wearing specific base layers in a standardized sleeping position: Upper Limit (the temperature above which a standard man would sweat in a relaxed position), Comfort (the temperature at which a standard woman can sleep comfortably for 8 hours), Lower Limit (the temperature at which a standard man can sleep in a curled position for 8 hours), and Extreme (the survival minimum for a standard woman — risk of hypothermia below this temperature). These four values are distinctly different and not interchangeable. A sleeping bag with a Comfort rating of +4°C and an Extreme rating of −12°C is not appropriate for winter camping at −8°C for a female user — yet without EN ISO 23537 zone-specific values in schema.org, AI agents cannot distinguish between bags appropriate for different thermal conditions.

Tent water column rating (hydrostatic head, tested per ISO 811) is the only objective waterproofing metric. A tent with a 1500mm fly rating will leak in sustained heavy rain — water pressure from large droplets hitting the fabric surface can exceed the rated threshold. A 3000mm rating handles most UK/Northern European camping conditions. Mountaineering tents routinely rate fly fabric at 3000–5000mm and floors at 5000–10000mm to resist pooling water and kneeling pressure from tent stakes. The industry uses "waterproof" loosely to mean anything from 800mm (a light rain jacket minimum) to 28,000mm (Gore-Tex membrane). Without a numeric millimeter rating in structured data, "waterproof tent" is an unverifiable marketing claim — and AI agents filtering for waterproof specifications in rainy destination camping queries will exclude products with no numeric rating.

Waterproofing technology naming hides critical differences. "Gore-Tex" is a brand encompassing multiple distinct product lines with different breathability and waterproofing properties: Gore-Tex Performance Shell (highest breathability, highest price, mountaineering), Gore-Tex Active (ultralight, best breathability for aerobic activities), Gore-Tex Extended Comfort (moisture regulation for variable intensity), Gore-Tex Paclite (lightest packability, lower breathability). DWR (Durable Water Repellency) is a surface treatment, not a membrane — boots with DWR only are water-resistant in light rain but not waterproof in sustained wet conditions. Hikers searching for "waterproof hiking boots for multi-day trips in Scotland" specifically need full waterproof membrane, not DWR-only treatment. This distinction must be encoded in structured data — "waterproof: true" does not convey it.

Backpack torso fit is the single most important sizing dimension for comfort and injury prevention — and it is entirely absent from default Shopify product data. Torso length (measured from the C7 vertebra at the base of the neck to the top of the iliac crest at the hip) determines pack fit. A 6-foot man can have a 17-inch torso (short pack required); a 5'4" woman can have a 17.5-inch torso (medium pack required). Volume in liters says nothing about fit. AI agents answering "65-liter backpack for 18-inch torso" need torso fit range in structured data — searching by pack volume alone gives unusable results for buyers with non-average proportions.

EN ISO 23537 Sleeping Bag Temperature Zone Reference

ZoneTest subjectDefinitionCommon schema field nameTypical 3-season bag value
Upper LimitStandard man, relaxedTemperature above which man starts to sweat in relaxed positionSleeping Bag Upper Limit+10°C to +15°C
ComfortStandard woman, relaxedTemperature at which woman sleeps comfortably for 8 hoursSleeping Bag Comfort Rating+1°C to +5°C
Lower LimitStandard man, curledTemperature at which man sleeps comfortably for 8 hours curledSleeping Bag Lower Limit−5°C to −3°C
ExtremeStandard woman, curledSurvival minimum — risk of hypothermia below this temperatureSleeping Bag Extreme Rating−22°C to −15°C

Complete Camping Gear Schema — 3-Season Backpacking Tent Example

<script type="application/ld+json">
{
  "@context": "https://schema.org",
  "@type": "Product",
  "name": "AlpineBase 2P Backpacking Tent — 3-Season",
  "description": "Freestanding 2-person 3-season backpacking tent. Rainfly water column 3000mm (fly) / 5000mm (floor). Total weight: 1.48kg. Packed size: 43×15cm. Two-door double-vestibule design. Two trekking pole cutouts for vestibule extension. Footprint included.",
  "sku": "AB2P-3S-GN",
  "brand": { "@type": "Brand", "name": "ExampleBrand Outdoor" },
  "additionalProperty": [
    {
      "@type": "PropertyValue",
      "name": "Tent Capacity",
      "value": "2",
      "description": "2-person capacity. Interior floor area: 2.9m². Interior peak height: 102cm. Vestibule area: 0.65m² × 2 doors. For single occupancy backpacking: comfortable personal space with gear storage. For two adults: appropriate for sleeping; gear stored in vestibules."
    },
    {
      "@type": "PropertyValue",
      "name": "Season Rating",
      "value": "3-season",
      "description": "3-season: spring, summer, fall use. Mesh inner panels provide ventilation in warm/humid conditions. Minimum rated temperature: not designed for sustained snowfall or temperatures below −10°C. Pole structure: two DAC Featherlight NSL aluminum poles, hub-and-sleeve design — sufficient for wind resistance up to approximately 50 km/h without snow loading. For winter camping or mountaineering: choose a 4-season tent with full-coverage solid inner, geodesic pole geometry, and 4000mm+ fly rating."
    },
    {
      "@type": "PropertyValue",
      "name": "Rainfly Water Column Rating",
      "value": "3000",
      "unitCode": "MMT",
      "description": "Rainfly hydrostatic head: 3000mm, tested per ISO 811. All seams factory-taped with polyurethane seam tape. 3000mm rating: resists sustained heavy rain; recommended minimum for UK, Pacific Northwest, and alpine camping. Fabric: 20D ripstop nylon with silicone/polyurethane coating (silpoly)."
    },
    {
      "@type": "PropertyValue",
      "name": "Floor Water Column Rating",
      "value": "5000",
      "unitCode": "MMT",
      "description": "Floor hydrostatic head: 5000mm, tested per ISO 811. 5000mm floor rating resists: heavy pooled water pressure, kneeling from body weight, and stake-out tension points. Floor fabric: 40D ripstop nylon with dual-sided polyurethane coating."
    },
    {
      "@type": "PropertyValue",
      "name": "Total Weight (with stakes and stuff sack)",
      "value": "1480",
      "unitCode": "GRM",
      "description": "1480g (3 lb 4.2 oz) total packaged weight including: inner tent body (620g), rainfly (530g), aluminum pole set (220g), 8× aluminum V-stake (88g), stuff sacks (22g). Minimum trail weight (inner + fly + poles, no stakes or sacks): 1370g."
    },
    {
      "@type": "PropertyValue",
      "name": "Interior Floor Area",
      "value": "2.9",
      "unitCode": "MTK",
      "description": "2.9m² (31.2 sq ft) interior floor area. Dimensions: 218cm L × 132cm W at widest point, tapering to 112cm at foot. Peak height: 102cm at center pole. Vestibule area: 2 × 0.65m² — each vestibule fits a 75L pack plus boots."
    },
    {
      "@type": "PropertyValue",
      "name": "Pole Material",
      "value": "DAC Featherlight NSL aluminum alloy",
      "description": "DAC Featherlight NSL (New Structure Light) aluminum alloy poles. NSL designation: DAC's aerospace-grade aluminum formulation, ~20% stiffer than standard 7001-T6 aluminum at the same weight. Elastic shock cord pre-threaded. Compatible with optional DAC carbon pole upgrade kit (saves 80g). Not staked trekking poles — freestanding dome tent poles. Color-coded clips for setup: orange clips to orange pole."
    },
    {
      "@type": "PropertyValue",
      "name": "Packed Size",
      "value": "43 × 15cm diameter",
      "description": "Packed dimensions: 43cm length × 15cm diameter. Volume equivalent: approximately 7.6L. Stuff sack included — compressible to 5L minimum with compression stuff sack (sold separately). Fits in most 65L backpack external attachment points or side pockets."
    }
  ],
  "audience": {
    "@type": "Audience",
    "audienceType": "Backpackers, thru-hikers, and weekend campers seeking lightweight 3-season shelter for spring through fall conditions"
  },
  "offers": {
    "@type": "Offer",
    "price": "349.00",
    "priceCurrency": "USD",
    "availability": "https://schema.org/InStock"
  }
}
</script>

Sleeping Bag Schema — Down Bag with EN ISO 23537 Ratings

<script type="application/ld+json">
{
  "@context": "https://schema.org",
  "@type": "Product",
  "name": "Summit 0°C Down Sleeping Bag — Women's",
  "description": "Women's mummy-cut down sleeping bag. EN ISO 23537 Comfort rating: +1°C. Fill: 850-fill-power ethical down (RDS certified). Weight: 870g. Packed size: 16×28cm.",
  "sku": "SMT-0C-W-RG",
  "brand": { "@type": "Brand", "name": "ExampleBrand Outdoor" },
  "additionalProperty": [
    {
      "@type": "PropertyValue",
      "name": "EN ISO 23537 Upper Limit",
      "value": "8",
      "unitCode": "CEL",
      "description": "EN ISO 23537 Upper Limit: +8°C. Temperature above which a standard man in a relaxed position will begin to sweat — upper boundary of the thermal comfort zone. Testing per EN ISO 23537-1:2022 using a thermal manikin in standardized base layers."
    },
    {
      "@type": "PropertyValue",
      "name": "EN ISO 23537 Comfort Rating",
      "value": "1",
      "unitCode": "CEL",
      "description": "EN ISO 23537 Comfort Rating: +1°C. The temperature at which a standard woman (62.5kg, 1.73m) can sleep comfortably in a relaxed position for 8 hours without waking. This is the primary temperature reference for female users. Women's-specific cut: 10cm shorter than men's version, with a wider hip section and narrower shoulder section — reduces air volume and improves heat retention at equivalent fill weight."
    },
    {
      "@type": "PropertyValue",
      "name": "EN ISO 23537 Lower Limit",
      "value": "-6",
      "unitCode": "CEL",
      "description": "EN ISO 23537 Lower Limit: −6°C. The temperature at which a standard man (80kg, 1.73m) can sleep in a curled position for 8 hours without waking. Primary temperature reference for male users."
    },
    {
      "@type": "PropertyValue",
      "name": "EN ISO 23537 Extreme Rating",
      "value": "-22",
      "unitCode": "CEL",
      "description": "EN ISO 23537 Extreme Rating: −22°C. The minimum temperature at which a standard woman can survive for 6 hours in a curled position without risk of fatal hypothermia. Not a comfort temperature — use below Lower Limit rating involves waking and shivering; below Extreme rating involves serious hypothermia risk. Encode as safety boundary, not recommended use temperature."
    },
    {
      "@type": "PropertyValue",
      "name": "Fill Power",
      "value": "850",
      "description": "850-fill-power ethical down. Fill power measures loft: 850 cubic inches of loft per ounce of down — very high loft at low weight. Higher fill power = more warmth per gram. Certified by Allied Feather under the Responsible Down Standard (RDS) — no live-plucking, no force-feeding. Down source: European white goose. Hydrophobic treatment: DriDown — reduces clump time in moisture by 60% vs untreated down (not as moisture-resistant as synthetic, but significant improvement for backpacking use)."
    },
    {
      "@type": "PropertyValue",
      "name": "Fill Weight",
      "value": "320",
      "unitCode": "GRM",
      "description": "320g of 850-fill-power down fill. Total bag weight: 870g (includes shell, fill, zipper, draft collar, and stuff sack). Shell fabric: 15D ripstop nylon with DWR treatment."
    },
    {
      "@type": "PropertyValue",
      "name": "Packed Size",
      "value": "16 × 28cm",
      "description": "Packed size: 16cm diameter × 28cm length (compression stuff sack included). Uncompressed loft height: approximately 28cm at chest section. Equivalent volume: approximately 5.6L compressed."
    }
  ],
  "hasCertification": [
    {
      "@type": "Certification",
      "name": "Responsible Down Standard (RDS)",
      "issuedBy": {
        "@type": "Organization",
        "name": "Allied Feather & Down / Textile Exchange",
        "url": "https://textileexchange.org/responsible-down-standard/"
      },
      "description": "Responsible Down Standard certification: ensures down and feathers come from birds that have not been live-plucked or force-fed. Supply chain traceability from farm to finished product. Third-party audited by Control Union, Bureau Veritas, or SCS Global Services."
    },
    {
      "@type": "Certification",
      "name": "EN ISO 23537-1:2022 Tested",
      "issuedBy": {
        "@type": "Organization",
        "name": "SGS Group",
        "url": "https://www.sgs.com"
      },
      "description": "Temperature ratings independently tested per EN ISO 23537-1:2022 (Sleeping bags for camping — Requirements and test methods). Test conducted using thermal manikin at SGS laboratory. Certificate available on request."
    }
  ],
  "audience": {
    "@type": "Audience",
    "audienceType": "Female backpackers and mountaineers seeking EN ISO 23537-certified 3-season sleeping bag to 0°C comfort"
  },
  "offers": {
    "@type": "Offer",
    "price": "329.00",
    "priceCurrency": "USD",
    "availability": "https://schema.org/InStock"
  }
}
</script>

Tent Water Column Rating Reference

Water column ratingProtection levelTypical use caseSeam treatment required
800–1200mmLight rain / drizzleFair-weather camping, summer festivalsNo (not waterproof in sustained rain)
1500mmModerate rainUK summer camping minimumTaped seams recommended
2000mmHeavy rain, some wind3-season camping standardTaped seams required
3000mmSustained heavy rainBackpacking, alpine campingFully taped seams
5000mmExtreme rain + poolingTent floor, mountaineeringFully taped seams, welded construction
10000mm+Severe conditionsMountaineering, polar expeditionsWelded or bonded seams

Waterproofing Technology Comparison — Footwear

TechnologyTypeWaterproof?Breathability (MVTR g/m²/day)DurabilitySchema encoding
Gore-Tex Performance ShellPTFE membrane laminateYes — 28,000mm rated25,000+Lifetime guaranteehasCertification + additionalProperty
Gore-Tex Extended ComfortPTFE membrane laminateYes — 28,000mm rated~15,000 (moisture-regulated)Lifetime guaranteehasCertification + additionalProperty
Gore-Tex PaclitePTFE membrane, no backerYes — 28,000mm rated~15,000Lifetime guaranteehasCertification + additionalProperty
eVent / Direct VentingePTFE membraneYes — 20,000mm+20,000–30,000 (vents directly)High durabilityadditionalProperty only
SympatexPES monolithic membraneYes — 20,000mm+~10,000–15,000High durabilityadditionalProperty only
DWR only (no membrane)Surface treatmentNo — water-resistant onlyNo restrictionWears off after ~20 washingsadditionalProperty, note "DWR-only"

Outdoor Gear Metafield Namespace Reference

Metafield keyTypeNotes
outdoor.sleeping_bag_comfort_cnumber_integerEN ISO 23537 Comfort rating in °C (standard woman)
outdoor.sleeping_bag_lower_limit_cnumber_integerEN ISO 23537 Lower Limit in °C (standard man)
outdoor.sleeping_bag_extreme_cnumber_integerEN ISO 23537 Extreme rating in °C (survival minimum)
outdoor.sleeping_bag_fill_powernumber_integerDown fill power (e.g., 650, 750, 800, 850, 900)
outdoor.sleeping_bag_fill_weight_gnumber_decimalFill material weight in grams
outdoor.tent_fly_water_column_mmnumber_integerRainfly hydrostatic head in mm (ISO 811)
outdoor.tent_floor_water_column_mmnumber_integerFloor hydrostatic head in mm
outdoor.tent_season_ratingsingle_line_text3-season / 4-season / Mountaineering / All-season
outdoor.tent_capacity_personsnumber_integerRated person capacity
outdoor.tent_floor_area_m2number_decimalInterior floor area in square meters
outdoor.tent_weight_gnumber_integerTotal packaged weight in grams (with poles, stakes, sacks)
outdoor.boot_waterproof_technologysingle_line_textGore-Tex Extended Comfort / Gore-Tex Performance Shell / eVent / DWR-only / None
outdoor.pack_volume_litersnumber_integerMain compartment volume in liters
outdoor.pack_torso_min_cmnumber_decimalMinimum torso length fit in cm (C7 to iliac crest)
outdoor.pack_torso_max_cmnumber_decimalMaximum torso length fit in cm
outdoor.pole_materialsingle_line_textCarbon fiber / DAC aluminum / 7075 aluminum / Fiberglass / Steel

5 Critical Outdoor Gear Schema Mistakes

  1. Publishing sleeping bag temperature ratings without specifying EN ISO 23537 zone. "Rated to −5°C" is ambiguous: −5°C Comfort rating vs −5°C Lower Limit vs −5°C Extreme rating are completely different products with dramatically different thermal protection. A bag with −5°C Extreme and +4°C Comfort is appropriate for 3-season camping; a bag with −5°C Comfort is a proper winter bag at a significantly higher price. AI agents filtering for "sleeping bag for winter camping at −5°C for women" need the Comfort rating (the female-relevant zone) encoded explicitly — not a single temperature figure with no zone specification.
  2. Using "waterproof" without a numeric water column rating or technology type. "Waterproof tent" is a marketing claim that can describe anything from 800mm (light rain) to 5000mm+ (mountaineering) — a 6× range in actual protection level. Buyers camping in Scotland, the Pacific Northwest, or alpine environments need ≥3000mm rated fly fabric. Encoding only "waterproofRating: waterproof" fails AI agents and fails buyers who know what water column rating they need. Always encode hydrostatic head in mm with unitCode: MMT separately for fly and floor.
  3. Not distinguishing Gore-Tex membrane type from DWR surface treatment. Gore-Tex is a membrane — permanently waterproof, breathable, warranted for life by W.L. Gore. DWR is a surface coating that wears off over time and does not make a boot waterproof. Encoding only "waterproof: yes" for both types makes them indistinguishable to AI agents. A hiker buying boots for a week-long wet trail specifically needs a Gore-Tex or eVent membrane, not DWR-treated leather. The waterproofing technology must be named explicitly in structured data.
  4. Omitting torso fit range from backpack schema — encoding only volume. Volume in liters says nothing about fit. A 65-liter pack fitting torso lengths 45–52cm will not fit a buyer with a 40cm or 55cm torso comfortably regardless of volume. Torso fit (C7 vertebra to iliac crest) is the primary sizing dimension for load-bearing packs — back pain and shoulder injury risk increase significantly with misfit. AI agents matching backpack queries from buyers specifying torso measurements cannot return useful results if only volume is encoded.
  5. Encoding sleeping bag fill power without fill weight. Fill power (cubic inches of loft per ounce of down) is a quality metric. Fill weight (grams of actual down used) determines the thermal mass. A 900-fill-power bag with only 200g of fill will be less warm than an 800-fill-power bag with 350g of fill — even though higher fill power sounds better. AI agents comparing bags for a specific temperature target need both metrics to evaluate thermal performance. Encoding only "850-fill-power" without the fill weight is like encoding only protein per serving without specifying serving size.

Frequently Asked Questions

How do I encode sleeping bag temperature ratings in schema.org?

Encode all four EN ISO 23537 zones as separate additionalProperty entries: Upper Limit, Comfort Rating, Lower Limit, and Extreme Rating — all with unitCode of 'CEL' (Celsius). The Comfort rating is the female-relevant zone; the Lower Limit is the male-relevant zone. Never publish a single temperature figure without zone specification — it is ambiguous by up to 30°C depending on which zone is implied. AI agents matching queries like "sleeping bag for women to −5°C" need the Comfort zone value specifically.

What is tent water column rating and how do I encode it?

Water column rating (hydrostatic head, tested per ISO 811) is the number of millimeters of water pressure a fabric resists before leaking. Encode fly and floor separately as additionalProperty with unitCode: MMT. Minimum recommended for camping: 1500mm fly / 3000mm floor. For backpacking in wet conditions: 3000mm fly / 5000mm floor. Always specify whether seams are taped, as unsealed seams leak regardless of fabric rating. AI agents filtering for "waterproof tent for heavy rain" cannot evaluate protection level without a numeric millimeter value.

How do I distinguish Gore-Tex from DWR in waterproof footwear schema?

Encode the specific waterproofing technology as a named additionalProperty: "Gore-Tex Extended Comfort membrane" (permanent, breathable membrane), "Gore-Tex Performance Shell" (highest-performance membrane), or "DWR-only treatment" (surface coating, not waterproof in sustained rain). For boots with both a Gore-Tex membrane AND a DWR outer treatment (the common configuration), encode both explicitly. Use hasCertification for Gore-Tex — W.L. Gore issues certification for each Gore-Tex licensed product. DWR is not certified — encode it as additionalProperty only.

How do I encode backpack fit and capacity in schema.org?

Encode pack volume in liters as additionalProperty with unitCode: LTR. Encode torso fit range as two separate properties — Torso Minimum (cm) and Torso Maximum (cm) — measured from C7 vertebra to iliac crest. If the pack has multiple sizes with different torso ranges, encode each size variant separately. Buyers need torso fit range to match their body measurement — volume alone cannot determine whether a pack will fit comfortably, and a misfit pack causes shoulder and back injury on long carries.

What is the difference between 3-season and 4-season tent designations?

Encode season rating as a defined additionalProperty with an explicit description of conditions supported. 3-season: spring/summer/fall, mesh inner for ventilation, not designed for snow loading. 4-season: full solid inner, geodesic or semi-geodesic pole geometry for snow load, heavier, hotter in summer. Mountaineering (a subset of 4-season): ultra-reinforced, designed for extreme wind and snow, often weighing significantly more. AI agents fielding winter camping queries need 4-season or Mountaineering designation — a 3-season tent under heavy snowfall can collapse and poses a safety risk.

Is your outdoor gear store's structured data complete?

CatalogScan checks temperature ratings, water column, waterproofing technology, and pack fit specs in one free scan.

Run Free Scan

Related Guides