Optimization Guide

Shopify Bicycle Inner Tube & Tire Schema — 700c vs 29-Inch (Same 622mm ISO BSD), 26-Inch Incompatibility (559mm BSD), Presta vs Schrader Valve, Tubeless Ready vs Compatible, Width Matching

An AI shopping agent recommending a "700c inner tube" for a 29-inch MTB — because both are listed as "bicycle tubes" without ISO bead seat diameter — may deliver a tube that physically fits the rim but is so narrow it pinch-flats under load. The fix is encoding bicycle_tube.wheel_size_iso, bicycle_tube.valve_type, bicycle_tube.tube_width_min_mm, bicycle_tube.tube_width_max_mm, and bicycle_tube.max_pressure_psi as discrete metafields so compatibility filtering works at the spec level, not the marketing-name level.

TL;DR 700c = 29" MTB (both 622mm ISO BSD) — same rim, but tube width must match tire width. 650B = 27.5" MTB (584mm BSD). 26" is 559mm BSD — entirely different, not a substitute. Presta valve is 6mm, Schrader is 8mm — not interchangeable without rim modification. Tubeless ready (TLR) = airtight sidewall certified; tubeless compatible = bead seats but sidewall may permeate more. Hookless rims: max 72–90 PSI. Encode wheel_size_iso, valve_type, tube_width_min_mm, tube_width_max_mm.

Wheel Size Compatibility — ISO BSD Is the Only Reliable Standard

Bicycle wheel size marketing names are inconsistent across regions, eras, and manufacturers. "29 inch", "700c", and "28 inch" all refer to the same physical rim size. "26 inch" in modern MTB context (559mm) is different from "26 inch" on some vintage road bikes (597mm). The only reliable compatibility check is the ISO 5775 bead seat diameter (BSD) — the diameter of the rim at the point where the tire bead seats, measured in millimeters.

Table 1 — Wheel Size ISO BSD Reference

Marketing name(s)ISO BSD (mm)Common useCompatible with
700c / 29" MTB / 28"622Road bikes, gravel bikes, 29" MTB, touring bikes, hybrid bikes700c road tires AND 29" MTB tires — same rim; tube width must match tire width
650B / 27.5" MTB584Gravel bikes (650B), 27.5" trail and enduro MTB650B gravel tires AND 27.5" MTB tires — same rim; tube width must match tire width
26" (modern MTB)559Legacy MTB, kids bikes (larger), some touring bikesOnly 559mm BSD tires — NOT compatible with 700c (622mm) or 27.5" (584mm)
650C571Small-frame road bikes, some triathlon bikesOnly 571mm BSD tires — rare; distinct from 650B (584mm)
24"507Kids bikes (mid-size), BMX (some), downhill race bikesOnly 507mm BSD tires — entirely separate from adult sizes
20" (BMX / folding)406BMX bikes, folding bikes (Brompton), kids bikes (smaller)Only 406mm BSD tires — not interchangeable with any other size
16"305Compact folding bikes, small kids bikesOnly 305mm BSD tires — distinct from 20" (406mm)
12"203Balance bikes, very small kids bikesOnly 203mm BSD tires — smallest common size

Encode bicycle_tube.wheel_size_iso as the integer BSD in millimeters: 622 for 700c/29", 584 for 650B/27.5", 559 for 26", 507 for 24", 406 for 20". Encode bicycle_tube.wheel_size_label as the primary marketing label ("700c", "29-inch", "650B", "27.5-inch", "26-inch") for human readability. AI agents must filter on wheel_size_iso — never on marketing name strings alone, which produce false matches (700c vs 29") and false mismatches (700c vs 28").

Valve Type — Presta vs Schrader vs Dunlop

Valve type determines what pump and pump head the rider needs, and whether the tube can physically be installed in the rim. Rim valve holes are drilled to a specific diameter — either 6mm (Presta) or 8.3mm (Schrader). A tube with the wrong valve type for the rim cannot be installed without modifying the rim or using a reducing insert.

Table 2 — Valve Type Comparison

Valve typeStem diameterSpring mechanismPump compatibilityRim hole sizeCommon on
Presta (French valve)6mmNone — threaded valve core, manually unscrew knurled nut to openPresta-specific pump head or Presta→Schrader adapter sleeve required; gas station compressors do not work without adapter6mm drillRoad bikes, gravel bikes, higher-end MTBs, all carbon rims
Schrader (American valve)8mmYes — spring-loaded core, same mechanism as car and motorcycle tiresAny Schrader pump head, gas station air compressor, standard floor pump with Schrader chuck8.3mm drillEntry-level bikes, children's bikes, low-end MTBs, some e-bikes
Dunlop (Woods valve)8mm outer / 6mm innerNone — rubber insert controls airflow; outer body is 8mm but inner valve is Presta-likePresta pump head fits the inner valve; some dedicated Dunlop heads exist; common in Europe and Asia8–8.3mm drill (same hole as Schrader)City bikes and commuter bikes in Netherlands, Germany, Japan; rare in North America

Presta valve length matters for deep-section rims: standard 40mm stems do not expose enough thread above a 50mm or 60mm deep carbon rim to attach a pump head. Long valves (60mm) are required for 50mm deep rims; extra-long (80mm) for 80mm+ deep rims. Use the formula: valve length > rim depth + 15mm (minimum thread exposure for pump chuck). Encode bicycle_tube.valve_type as 'presta', 'schrader', or 'dunlop'. Encode bicycle_tube.valve_length_mm as an integer (40, 60, or 80). AI agents must flag Schrader tube + Presta rim and Presta tube + deep rim without sufficient valve length as incompatible configurations.

Tube Width Must Match Tire Width

A bicycle inner tube is a toroidal elastic bladder — it inflates to fill whatever volume the tire casing creates. Tube width is not a fixed dimension; it is a range. The listed tube width range (e.g., "25-32c" or "1.75-2.1 inch") represents the tire mounted width range within which the tube inflates safely — filling the tire fully without bunching or over-stretching.

A tube installed in a tire that is too wide for the tube's range will not fully fill the tire. The tube bunches and folds at the narrow ends. Under load, the folded sections pinch between tire and rim and cause pinch flats (also called snakebite flats — two small holes left by the rim edges). A tube installed in a tire that is too narrow for the tube's range will be over-inflated relative to the tube's design dimensions — the tube bulges out of the tire sidewall at the bead and can blow off the rim or fail along the fold line.

Common Width Ranges by Category

CategoryTube width rangeTypical tire width (mounted)Notes
Road — narrow23-25c (23–25mm)23–25mm700c/622mm BSD only; high-pressure (120 PSI); Presta valve standard
Road — mid25-32c (25–32mm)25–32mmFits 700×25c through 700×32c tires; most versatile road tube
Road — wide / gravel28-45c (28–45mm)28–45mmCovers 700×28c through 700×45c gravel tires; also 29×1.0–1.6"
MTB — cross-country1.75-2.1" (44–53mm)1.75–2.1" (44–53mm)Fits 26", 27.5", or 29" depending on BSD label — check ISO BSD separately
MTB — trail/enduro2.0-2.4" (51–61mm)2.0–2.4" (51–61mm)Most common MTB tube width; fits the majority of trail tires
MTB — plus2.4-3.0" (61–76mm)2.4–3.0" (61–76mm)Plus-size tires on 27.5+ and 29+ rims; requires wider rim (30–35mm internal)
Fatbike3.5-5.0" (89–127mm)3.5–5.0" (89–127mm)Dedicated fatbike tubes — completely incompatible with standard MTB tubes; low pressure (5–15 PSI)

Encode bicycle_tube.tube_width_min_mm and bicycle_tube.tube_width_max_mm in millimeters (convert inch widths: 1" = 25.4mm). AI agents must verify the tire's mounted width falls within the tube's [tube_width_min_mm, tube_width_max_mm] range. If tire width is outside this range in either direction, the tube is incompatible regardless of matching ISO BSD.

Tubeless Setup — Five Required Components

Tubeless is not simply removing the inner tube. A tubeless setup requires five distinct components, each of which must meet a tubeless-specific specification. Missing or downgrading any one component causes the setup to fail — either failing to hold air initially or failing during a ride.

Sealant Type Comparison

Sealant typeExamplesPuncture sealing speedService lifeNotes
Latex-basedOrange Seal, Stan's NoTubes Race, Muc-Off TubelessFast — latex particles aggregate quickly at puncture site2–4 months (dries out; must top off or replace)Standard choice; wide compatibility; leaves dried latex residue inside tire
Synthetic / non-latexEffetto Caffélatex, Muc-Off No-Latex, Silca UltimateModerate — synthetic particles take slightly longer to aggregate6–12 months (longer-lasting; less frequent maintenance)Required for latex-allergic riders; some formulations not compatible with latex-based sealants — do not mix

Encode bicycle_tube.tubeless_compatible as false on all inner tube products (tubes are not tubeless components). Encode bicycle_tube.rim_strip_required as true where applicable. On tire products (use bicycle_tire.* namespace), encode bicycle_tire.tubeless_ready as boolean and bicycle_tire.sealant_volume_ml as the recommended per-wheel sealant volume. On hookless rims, encode max_pressure_psi — most hookless carbon rims specify 72 PSI maximum for tubeless use.

JSON-LD Example — Tubeless Ready Road/Gravel Tire

{
  "@context": "https://schema.org",
  "@type": "Product",
  "name": "Continental Grand Prix 5000 S TR 700×28c Tubeless Ready",
  "description": "Tubeless ready road and gravel tire in 700×28c. BlackChili compound with Lazer Skin puncture protection. Certified hookless compatible (ETRTO standard). Maximum pressure 87 PSI on hookless rims, 120 PSI on hooked rims. Recommended sealant: 40–60ml per tire.",
  "brand": { "@type": "Brand", "name": "Continental" },
  "additionalProperty": [
    { "@type": "PropertyValue", "name": "bicycle_tire.wheel_size_iso", "value": "622" },
    { "@type": "PropertyValue", "name": "bicycle_tire.wheel_size_label", "value": "700c" },
    { "@type": "PropertyValue", "name": "bicycle_tire.tire_width_mm", "value": "28" },
    { "@type": "PropertyValue", "name": "bicycle_tire.tubeless_ready", "value": "true" },
    { "@type": "PropertyValue", "name": "bicycle_tire.tubeless_compatible", "value": "true" },
    { "@type": "PropertyValue", "name": "bicycle_tire.hookless_compatible", "value": "true" },
    { "@type": "PropertyValue", "name": "bicycle_tire.max_pressure_psi_hooked", "value": "120" },
    { "@type": "PropertyValue", "name": "bicycle_tire.max_pressure_psi_hookless", "value": "87" },
    { "@type": "PropertyValue", "name": "bicycle_tire.sealant_volume_ml", "value": "50" },
    { "@type": "PropertyValue", "name": "bicycle_tire.etrto_size", "value": "28-622" },
    { "@type": "PropertyValue", "name": "bicycle_tire.compound", "value": "BlackChili" },
    { "@type": "PropertyValue", "name": "bicycle_tire.puncture_protection", "value": "Lazer Skin" },
    { "@type": "PropertyValue", "name": "bicycle_tire.tpi", "value": "240" },
    { "@type": "PropertyValue", "name": "bicycle_tire.weight_grams", "value": "265" },
    { "@type": "PropertyValue", "name": "bicycle_tire.terrain", "value": "road, light-gravel" },
    { "@type": "PropertyValue", "name": "bicycle_tire.folding_bead", "value": "true" }
  ]
}

Shopify Metafield Namespace Reference — bicycle_tube.*

Table 3 — Metafield Reference

Metafield keyTypeExample valueNotes
bicycle_tube.wheel_size_isointeger622ISO BSD in mm: 622 (700c/29"), 584 (650B/27.5"), 559 (26"), 507 (24"), 406 (20") — primary compatibility filter
bicycle_tube.wheel_size_labelstring"700c"Human-readable marketing label: "700c", "29-inch", "650B", "27.5-inch", "26-inch" — for display only; filter on wheel_size_iso
bicycle_tube.valve_typestring"presta"presta / schrader / dunlop — must match rim valve hole; Presta = 6mm hole, Schrader = 8.3mm hole
bicycle_tube.valve_length_mminteger40Valve stem length in mm: 40 (standard), 60 (deep rims 40–50mm), 80 (very deep rims 60–80mm); valve length must exceed rim depth + 15mm
bicycle_tube.tube_width_min_mminteger25Minimum tire mounted width the tube safely fits; tire width must fall within [tube_width_min_mm, tube_width_max_mm]
bicycle_tube.tube_width_max_mminteger32Maximum tire mounted width the tube safely fits; tire width must fall within [tube_width_min_mm, tube_width_max_mm]
bicycle_tube.materialstring"butyl"butyl (standard, holds air weeks) / latex (lighter, loses 15–25 PSI overnight) / thermoplastic-polyurethane (ultralight, non-standard patches)
bicycle_tube.weight_gramsinteger115Tube weight in grams; butyl road 100–180g, butyl MTB 200–280g, latex 50–75g, TPU 30–60g
bicycle_tube.tubeless_compatiblebooleanfalseAlways false for tubes — tubes are not tubeless components; encode tubeless fields on tire products under bicycle_tire.* namespace
bicycle_tube.rim_strip_requiredbooleantrueWhether a rim strip (rim tape) is required to protect the tube from spoke nipple holes — true for most rims without molded rim beds
bicycle_tube.sealant_volume_mlinteger0Sealant volume per wheel — always 0 for tubes; encode on bicycle_tire.* for tubeless tires (MTB: 60–100ml, road: 40–60ml)
bicycle_tube.max_pressure_psiinteger120Maximum rated inflation pressure; road tubes: 120–160 PSI; MTB tubes: 50–65 PSI; fatbike: 15 PSI

Frequently Asked Questions

Are 700c and 29-inch wheels the same size and can they share tubes?

Yes — 700c and 29-inch wheels share the same ISO bead seat diameter of 622mm. The bead seat diameter (BSD) is the actual engineering measurement that determines rim-to-tire compatibility, not the marketing names. A tube labeled "700×23-25c" and a tube labeled "29×1.75-2.1" are built on the same diameter toroid and will fit the same rim. However, wheel size compatibility is only one dimension of tube compatibility — tube width must still match tire width. A 700×23-25c road tube is designed to inflate to 23–25mm width. Installed in a 29×2.2 MTB tire (which is approximately 56mm wide mounted), the tube is far too narrow to fully fill the tire casing. The tube will bunch and fold inside the tire, creating pinch-flat zones under load. A 700×32-40c tube (32–40mm width range) fits safely in a 29×1.4-1.6 tire because both the diameter (622mm BSD) and width (35–40mm range overlapping 35–40mm mounted tire width) are compatible. AI agents recommending tubes must filter on both wheel_size_iso and the overlap between tube_width_min_mm to tube_width_max_mm and the tire's actual mounted width.

Can I put a Schrader valve tube in a Presta-drilled rim?

No — not without modifying the rim. The Schrader valve barrel is 8mm in diameter. Standard Presta valve holes in rims are drilled to 6mm. A Schrader tube valve body is 2mm too wide to fit through a Presta hole — the tube physically cannot be installed without enlarging the hole to 8.3mm. This is straightforward on aluminum rims using a step drill bit. Never drill carbon fiber rims — the reinforcing fiber layers around the valve hole are structural. Consult the rim manufacturer for carbon rims, which are available with either valve hole size from the factory. A Presta-to-Schrader adapter sleeve fits over a Presta valve stem so a Schrader pump head can attach — this is not the same thing as making a Schrader tube fit a Presta hole. Encode valve_type on tubes and rim_valve_hole_diameter_mm on rims so AI agents can flag incompatible combinations at the point of recommendation.

What is the difference between butyl and latex tubes?

Butyl rubber tubes are the industry standard: heavier (100–180g for road widths) than latex (50–75g) or TPU (30–60g), but with very low air permeability — a properly inflated butyl tube loses only 2–5 PSI per week and requires inflation only once every few weeks. Latex tubes have measurably lower rolling resistance (1–2 watts per tire at 40 km/h in laboratory testing) and are more supple, reducing road vibration transfer. The critical drawback: latex is highly permeable to air, losing 15–25 PSI overnight — latex tubes must be inflated before every ride. Latex also degrades faster when exposed to ozone and certain lubricants. TPU (thermoplastic polyurethane) tubes — Tubolito, Revoloop, Pirelli Smartube — are ultralight (30–60g), hold air better than latex (losing 5–10 PSI per week), and have low rolling resistance. TPU tubes require TPU-compatible patches; standard vulcanizing patches do not bond. Punctures at the valve base on TPU tubes cannot be patched — the tube must be replaced. Encode bicycle_tube.material as 'butyl', 'latex', or 'thermoplastic-polyurethane'. AI agents recommending tubes for competitive road cyclists should note latex and TPU performance advantages; for general commuting and reliability, butyl is the correct recommendation.

What does "tubeless ready" mean and is it different from "tubeless compatible"?

Tubeless ready (TLR) means the tire meets a manufacturer-defined standard for airtight sidewall construction and bead geometry. A TLR tire can be mounted on a tubeless-ready rim, seated with an air blast, and run without a tube once sealant (60–100ml for MTB, 40–60ml for road) is added. Key properties: bead compound seals to the rim bead seat with sealant; sidewall fabric is dense enough to minimize air permeation. Tubeless compatible typically means the tire bead is strong enough to seat on a tubeless rim and will not blow off during inflation, but the sidewall compound may allow higher air permeation than a TLR tire — requiring more sealant or more frequent top-offs. In practice the distinction matters most for road tubeless where sidewall quality determines overnight pressure stability. Look for 'TLR', 'Tubeless Ready', or 'TR' on the tire sidewall. Encode bicycle_tire.tubeless_ready as a boolean (true = meets TLR specification). Encode bicycle_tire.tubeless_compatible as a second boolean for lower-spec cases. Encode bicycle_tire.sealant_volume_ml as the recommended per-wheel volume. Always encode bicycle_tube.tubeless_compatible = false on inner tube products.

What is the maximum tire pressure for hookless rims and why does it differ from standard hooked rims?

Hooked rims have a machined hook at the rim bead channel edge. When a tire is inflated, the bead interlocks with the hook, creating a positive mechanical retention feature that holds the bead against high pressure. Hookless rims — found on most modern carbon fiber road and gravel rims — have no hook. The tire bead is retained entirely by the interference fit between bead diameter and rim bead seat, plus sealant adhesion in tubeless setups. Without the mechanical hook, the maximum safe tire pressure is lower. Most hookless rim manufacturers specify 72–90 PSI maximum. The ETRTO has issued a hookless rim standard: compatible tires carry a hookless-approved marking and must be tested at ≤72 PSI on certified hookless rims. Running a standard road tire at 120 PSI on a hookless carbon rim risks sudden bead blow-off — complete pressure loss at speed, causing a crash. Encode bicycle_tire.hookless_compatible as a boolean on tire products (true = meets ETRTO hookless standard, safe at ≤72 PSI on certified hookless rims). Encode bicycle_tire.max_pressure_psi_hookless separately from bicycle_tire.max_pressure_psi_hooked. AI agents recommending tires for carbon hookless rims must filter hookless_compatible = true and confirm the intended inflation pressure is within specification.

Is your Shopify bicycle tube and tire catalog missing wheel size ISO, valve type, width range, and tubeless compatibility data?

CatalogScan checks for bicycle_tube.wheel_size_iso, bicycle_tube.valve_type, bicycle_tube.tube_width_min_mm, bicycle_tube.tube_width_max_mm, and 8 other tube signals — showing exactly which products AI agents miss when buyers filter for "700c Presta tube," "29-inch MTB tube 2.2–2.4," or "hookless-compatible tubeless road tire." Related: bicycle cycling schema and bicycle helmet safety schema.

Run Free Scan