我正在尝试将 schema.org 片段添加到我的产品页面。我的客户要求我在产品单页中显示以下 schema.org 标签
1) 物品条件
2) logo(仅显示品牌形象网址)
Schema.org 只给出了每个标签的标签描述,但没有提到它应该如何为大多数标签实现。目前我的片段显示如下
<div itemscope itemtype="http://schema.org/Product">
<img itemprop="image" src="/uploads/pen102-a13-olv_1.jpg" />
<span itemprop="name">BOWERBRIDGE INSULATED JKT</span>
<div itemprop="offers" itemscope itemtype="http://schema.org/AggregateOffer">
<span itemprop="lowPrice">$400</span>
to <span itemprop="highPrice">$600</span>
from <span itemprop="offerCount">20</span> sellers
</div>
</div>
谁能让我知道如何将我的客户所需的标签包含在上面的代码段中。
我的客户需要以下 schema.org 标签。
1) 物品条件
2) logo(仅显示品牌形象网址)
编辑
<div itemscope itemtype="http://schema.org/Product">
<meta itemprop='logo' content='http://rstest.mydomain.com/images/userfiles/logos/stone-island.png'/>
<span itemprop='itemCondition'><br />
• Removable arm badge logo<br />
• Pull over hoddy<br />
• Panel pocket<br />
• Regular fit<br />
• Zip side pockets<br />
• Long sleeve<br />
• 100% Cotton<br />
• 40 Degree wash<br />
<br />
591565220<br />
<br />
View our full range of <a href="http://www.mydomain.com/mens/hoodies/" target="_self">Mens Hoodies</a>
</span>
</div>
受众代码
<div itemscope itemtype="http://schema.org/Product">
<span itemprop="audience" itemscope itemtype="http://schema.org/PeopleAudience">
<meta itemprop="gender" content="male"/>
</span>
</div>
错误:页面包含不属于架构的属性“性别”。