-
Notifications
You must be signed in to change notification settings - Fork 905
Closed
Labels
Fixed Awaiting ReleaseFixed in main branch / posted to webschemas.org site / proposed for inclusion in next releaseFixed in main branch / posted to webschemas.org site / proposed for inclusion in next release
Description
The (mircodata) example on the HowTo page uses the wrong types for the value of tool and supply.
<div itemprop="tool" itemscope itemtype="http://schema.org/HowToItem">Spare tire</div>
<div itemprop="tool" itemscope itemtype="http://schema.org/HowToItem">Lug wrench</div>
<div itemprop="tool" itemscope itemtype="http://schema.org/HowToItem">Jack</div>
<div itemprop="tool" itemscope itemtype="http://schema.org/HowToItem">Wheel wedges</div>
<div itemprop="supply" itemscope itemtype="http://schema.org/HowToItem">Flares</div>
The itemtype for tool should be HowToTool; the itemtype for supply should be HowToSupply
<div itemprop="tool" itemscope itemtype="http://schema.org/HowToTool">Spare tire</div>
<div itemprop="tool" itemscope itemtype="http://schema.org/HowToTool">Lug wrench</div>
<div itemprop="tool" itemscope itemtype="http://schema.org/HowToTool">Jack</div>
<div itemprop="tool" itemscope itemtype="http://schema.org/HowToTool">Wheel wedges</div>
<div itemprop="supply" itemscope itemtype="http://schema.org/HowToSupply">Flares</div>
Reactions are currently unavailable
Metadata
Metadata
Assignees
Labels
Fixed Awaiting ReleaseFixed in main branch / posted to webschemas.org site / proposed for inclusion in next releaseFixed in main branch / posted to webschemas.org site / proposed for inclusion in next release