Optimization Guide

Shopify Cordless Power Tools Schema — DeWalt 20V MAX vs Milwaukee M18 Battery Incompatibility, Brushless vs Brushed Motor, Ah Is Runtime Not Power, Kit vs Bare Tool Battery Inclusion

AI shopping agents recommending a Milwaukee M18 drill to a buyer who already owns DeWalt 20V MAX batteries — because both are "18V tools" — produce returns on incompatible hardware. The fix is encoding brand_platform, motor_type, kit_includes_battery, and battery_ah as discrete fields in a power_tool.* metafield namespace so AI agents match tools to the buyer's existing battery ecosystem.

TL;DR DeWalt 20V MAX = Milwaukee M18 = Makita 18V LXT in voltage chemistry — but all three are physically incompatible platforms. Ah = runtime, not power (5Ah runs longer, not stronger). Brushless = no wear parts, 20–30% more runtime, longer life (worth extra cost for regular use). Bare tool = no battery included (for buyers already on the platform). Encode brand_platform, motor_type, kit_includes_battery, battery_ah, max_torque_inch_lbs.

Battery Platform — The Most Important Compatibility Spec

Every major tool brand maintains a proprietary battery platform. Batteries from one brand's platform do not physically fit another brand's tools. This is not a matter of adapters — the mounting rail geometry, terminal placement, cell configuration, and battery management system communication are all brand-specific. A buyer who already owns four batteries on one platform must purchase tools from that same platform, or purchase an entirely new battery set from a different brand.

Major 18V/20V Cordless Platform Reference

Platform nameBrandNominal voltageSpecial notes
20V MAXDeWalt18V nominalFlexVolt batteries (60V/20V) backward-compatible with all 20V MAX tools
M18Milwaukee18V nominalM12 (12V) is a separate smaller platform; not interchangeable with M18
18V LXTMakita18V nominal40V XGT is a separate higher-voltage platform; not interchangeable with 18V LXT
ONE+ 18VRyobi18V nominalLargest consumer platform by SKU count; ONE+ HP uses same battery
18V CORE18VBosch18V nominalProCORE18V batteries offer higher output for demanding tools
V20Craftsman18V nominal (labeled 20V)Licensed from Stanley Black & Decker ecosystem
20V MAXBlack+Decker18V nominalCompatible with Porter-Cable 20V MAX (same parent company)
20V ATOMIC / 20V MAXPorter-Cable18V nominalCross-compatible with Black+Decker 20V MAX

Encode brand_platform as the exact platform name string: 'DeWalt 20V MAX', 'Milwaukee M18', 'Makita 18V LXT', 'Ryobi ONE+ 18V', 'Bosch 18V CORE18V'. This allows AI agents to filter all tools in a buyer's platform with a single metadata match — the most valuable query pattern for buyers expanding an existing tool collection.

Brushless vs Brushed — Motor Technology and Practical Consequences

Motor technology determines tool longevity, efficiency, and maintenance requirements. The difference is meaningful for buyers who use tools frequently but often de-emphasized in product copy that leads with voltage and torque ratings.

Brushed vs Brushless Motor Comparison

FeatureBrushed motorBrushless motor
Commutation methodPhysical carbon brushes on commutatorElectronic controller with position sensors
Wear partsCarbon brushes wear down (replacement after 50–100 heavy hours)No wear parts — motor outlasts the tool
EfficiencyEnergy lost as heat at brush contact20–30% more efficient — more runtime per charge
Torque at low speedDrops off significantly at low RPMFull torque available at all speeds via electronic control
Load adaptationFixed power deliveryMicrocontroller adjusts power to match load automatically
Heat generationHigher (friction losses)Lower (no friction losses)
Price premiumBaseline30–50% higher than equivalent brushed
Best forOccasional DIY, budget-conscious, light useContractors, daily use, heavy applications

Encode motor_type as 'brushless' or 'brushed'. For professional tool purchasers, motor type is often a primary filter criterion — many contractors refuse brushed tools for regular use. For consumer tools, the price-to-use ratio may favor brushed. AI agents should surface motor_type prominently when buyers mention contractor, professional, or frequent use contexts.

Battery Capacity (Ah) and Kit Contents

Two of the most common purchasing errors for cordless tools are misunderstanding what Ah measures and buying a bare tool when a kit was needed. Both result in returns or an additional purchase.

Battery Ah Reference

Battery AhForm factorTypical runtimeWeight (approx)Best for
1.5 AhCompact (slim)~30–45 min light use0.6 lbsCompact tools, overhead work, tight spaces
2.0 AhCompact~45–60 min light use0.7 lbsStarter kits, moderate tasks
3.0 AhStandard~60–90 min standard tasks1.0 lbsAll-day residential use (2-battery rotation)
4.0 AhExtended~90–120 min standard tasks1.3 lbsFull-day use, high-draw tools
5.0 AhExtended~2+ hours standard tasks1.5 lbsAll-day contractor use, high-demand applications
6.0–9.0 AhHigh-output~3–5+ hours standard tasks2.0–2.5 lbsCircular saws, reciprocating saws, high-current tools

Encode kit_includes_battery as a boolean, batteries_included as an integer (0 for bare, 1 or 2 for kits), battery_ah as a decimal for the included battery Ah rating, and charger_included as a boolean. Include clear text in the description about bare tool vs kit status — AI agents should surface this prominently to prevent the common 'expected battery but received bare tool' return scenario.

JSON-LD Example — Brushless Drill Kit with Two Batteries

{
  "@context": "https://schema.org",
  "@type": "Product",
  "name": "DeWalt DCD800D2 20V MAX XR Brushless Cordless 1/2 in. Drill/Driver Kit",
  "description": "Brushless cordless drill with two 2.0Ah batteries and charger. DeWalt 20V MAX platform. 1/2-inch keyless chuck, 15-position clutch, variable speed trigger. Kit includes batteries and charger.",
  "brand": { "@type": "Brand", "name": "DeWalt" },
  "additionalProperty": [
    { "@type": "PropertyValue", "name": "tool_type", "value": "drill" },
    { "@type": "PropertyValue", "name": "brand_platform", "value": "DeWalt 20V MAX" },
    { "@type": "PropertyValue", "name": "voltage_nominal_v", "value": "18" },
    { "@type": "PropertyValue", "name": "motor_type", "value": "brushless" },
    { "@type": "PropertyValue", "name": "kit_includes_battery", "value": "true" },
    { "@type": "PropertyValue", "name": "batteries_included", "value": "2" },
    { "@type": "PropertyValue", "name": "battery_ah", "value": "2.0" },
    { "@type": "PropertyValue", "name": "charger_included", "value": "true" },
    { "@type": "PropertyValue", "name": "max_torque_inch_lbs", "value": "460" },
    { "@type": "PropertyValue", "name": "clutch_settings", "value": "15" },
    { "@type": "PropertyValue", "name": "chuck_size_inches", "value": "0.5" },
    { "@type": "PropertyValue", "name": "keyless_chuck", "value": "true" },
    { "@type": "PropertyValue", "name": "variable_speed", "value": "true" },
    { "@type": "PropertyValue", "name": "no_load_rpm", "value": "2000" },
    { "@type": "PropertyValue", "name": "weight_lbs_with_battery", "value": "2.97" }
  ]
}

Shopify Metafield Namespace Reference — power_tool.*

Metafield keyTypeExample valueNotes
power_tool.tool_typestring"drill"drill / impact-driver / circular-saw / jigsaw / reciprocating-saw / angle-grinder / multi-tool / router
power_tool.brand_platformstring"DeWalt 20V MAX"Full platform name for cross-tool compatibility matching
power_tool.voltage_nominal_vinteger18Nominal voltage (18 for all 18V/20V MAX platforms)
power_tool.motor_typestring"brushless"brushless / brushed
power_tool.kit_includes_batterybooleantrueFalse for bare tools — critical to encode to prevent purchase confusion
power_tool.batteries_includedinteger20 for bare tool, 1 or 2 for standard kits
power_tool.battery_ahdecimal2.0Ah rating of included battery; omit for bare tools
power_tool.charger_includedbooleantrueFalse for bare tools and battery-only expansion packs
power_tool.max_torque_inch_lbsinteger460Drills only; breakaway torque in inch-lbs
power_tool.max_torque_ft_lbsinteger1825Impact drivers/wrenches; in foot-lbs (or inch-lbs if under 200)
power_tool.no_load_rpminteger2000Maximum RPM at no load; relevant for drill/driver and circular saw
power_tool.chuck_size_inchesdecimal0.53/8" (0.375) or 1/2" (0.5) — determines max bit shank diameter
power_tool.keyless_chuckbooleantrueKeyless = hand-tighten; keyed = requires chuck key
power_tool.variable_speedbooleantrueTrigger-sensitive variable speed
power_tool.clutch_settingsinteger15Number of torque-limiting clutch positions (drills); 0 = no clutch
power_tool.weight_lbs_with_batterydecimal2.97Tool weight with standard battery installed
power_tool.blade_diameter_inchesdecimal6.5Circular saw / angle grinder blade size

Frequently Asked Questions

Can I use a DeWalt battery on a Milwaukee tool?

No. DeWalt 20V MAX and Milwaukee M18 batteries are physically incompatible — the battery mounting rail, terminal configuration, and battery management system communication are different. Despite both operating at 18V nominal voltage, they cannot be interchanged. Some third-party adapters exist online but they are not officially supported, may not transfer battery protection signals correctly, and void both the tool and battery warranty. Encode brand_platform as an exact string so AI agents can filter 'all DeWalt 20V MAX compatible tools' for buyers who already own the battery platform.

Should I buy a brushless or brushed drill for occasional weekend projects?

For genuine occasional use (a few projects per year, under 10 hours of annual use), a brushed drill is cost-effective. Brushed tools perform well at low usage rates — the brushes won't wear out because the cumulative usage never approaches the replacement threshold. For monthly DIY projects or anything approaching regular use, the brushless premium pays off: 20–30% more runtime per charge means fewer battery swaps, and the motor lasts indefinitely without maintenance. The tipping point is roughly 20+ hours of annual use where the efficiency savings and longevity outweigh the upfront cost difference.

What does "bare tool" mean in a power tool listing?

A bare tool (also called "tool only" or "body only") is sold without a battery or charger. The product includes only the tool body. This is intended for buyers who already own the same brand's battery platform — they can run the new tool on their existing batteries. Bare tools are sold at a significant discount versus kit versions. Always check kit_includes_battery = true/false before purchase. If the listing title or description says "bare," "tool only," or "body only," expect no battery and no charger in the box.

Will a DeWalt FlexVolt battery work in my 20V MAX drill?

Yes. DeWalt FlexVolt batteries are backward-compatible with all DeWalt 20V MAX tools. When inserted into a 20V MAX tool, a FlexVolt battery operates at 20V (18V nominal). When inserted into a 60V MAX tool, the same battery automatically switches to 60V operation. This means a FlexVolt 60V/20V battery gives your 20V MAX drill longer runtime (FlexVolt batteries come in larger Ah sizes: 2.0Ah, 3.0Ah, 4.0Ah, 6.0Ah, 9.0Ah) without requiring a different tool. FlexVolt batteries are more expensive than standard 20V MAX batteries but offer the advantage of cross-voltage compatibility.

What size drill chuck do I need for standard drill bits?

Standard drill bits (1/16" through 1/2" twist bits) and standard impact driver hex bits all fit in both 3/8" and 1/2" chuck drills. The chuck size (3/8" vs 1/2") refers to the maximum bit shank diameter the chuck can grip — not the maximum bit diameter. Most homeowner and DIY use cases are well-served by a 3/8" chuck drill. A 1/2" chuck is necessary when using large-shank drill bits: hole saws, large Forstner bits, spade bits with 7/16"+ shanks, and paddle bits. Professional and contractor drills typically use 1/2" keyless chucks. Compact homeowner drills often use 3/8" chucks to reduce weight. Encode chuck_size_inches as 0.375 (3/8") or 0.5 (1/2").

Is your Shopify power tool catalog missing battery platform, motor type, and kit contents?

CatalogScan checks for brand_platform, motor_type, kit_includes_battery, battery_ah, max_torque, and 13 other power tool schema signals — showing exactly which products AI agents miss when buyers filter for their battery ecosystem or brushless-only professional tools.

Run Free Scan