HowToTool
HowToTool is a HowToItem subtype for tools the reader needs and keeps: drills, clamps, knives, whisks, serving bowls. It has no unique properties; use the inherited requiredQuantity (always 1 in most cases, but some guides need "2 clamps", "3 baking sheets").
Pair HowToTool with HowToSupply on the parent HowTo's tool and supply properties respectively. AI cooking and DIY assistants read both to generate "things to get before you start" lists.
Full example of schema.org/HowToTool json-ld markup
The markup is verified as valid with Rich Results Test from Google.
<script type="application/ld+json">
{
"@context": "https://schema.org",
"@type": "HowToTool",
"name": "Craft knife with fresh #11 blade",
"requiredQuantity": { "@type": "QuantitativeValue", "value": 1, "unitText": "knife" },
"image": "https://xoocode.com/guides/stand/craft-knife.jpg"
}
</script>Minimal valid version
The smallest markup that still produces a valid HowToTool entity. Use it as the floor. Reach for the advanced example above when you want search engines and AI agents to understand more about your content.
<script type="application/ld+json">
{
"@context": "https://schema.org",
"@type": "HowToTool",
"name": "Craft knife"
}
</script>Google rich results this unlocks
HowToTool is a structural type. It does not produce a rich result on its own.
Its value comes from combining it with a primary type whose markup earns a rich result (Article, Product, Event, and so on). HowToTool becomes the trunk that the primary type branches off viamainEntityorbreadcrumb. Include it on every page as the backbone of your markup.
Common HowToTool mistakes
Mistakes that pass validation but silently fail to earn rich results or mislead consumers walking the graph. Avoid these and your markup will be ahead of most sites in the wild.
- 01
HowToTool for a consumable
WrongHowToTool for glue, paint, or an ingredientRightHowToSupply for consumablesTools are kept; supplies are consumed. Shopping-list generators diverge on that axis.
Schema properties in this example
Also mentioned in 2 other examples
HowToTool also appears in HowTo, and HowToDirection. See the full HowToTool schema page for every reference.
About the example data
The craft knife used in the barcode-scanner stand guide.
Comments
Loading comments...