製品ページに schema.org スニペットを追加しようとしています。私のクライアントは、製品の単一ページに次の schema.org タグを表示するように私に要求しました
1) 商品状態
2) ロゴ(ブランド画像のURLのみ表示)
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) ロゴ(ブランド画像のURLのみ表示)
編集
<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>
エラー: ページには、スキーマの一部ではないプロパティ「性別」が含まれています。