彼らが販売しているファッションブランドをリストしたストアページがあります。しかし、使用するマイクロデータスキーマがわかりません。schema.orgのスキーマを使用しています。
基本的に、リストは次のようになります。
<span itemscope itemtype="http://schema.org/Store">
// Store info here
<ul id="brandList">
<li id="7750">
<div class="brandInfo">
<a href="http://...">Celine Engelstad</a>
</div>
<div class="logo">
<img title="Celine Engelstad" src="http://..." class="logo">
</div>
</li>
// More items here
</ul>
</span>
これは使用する正しい回路図でしょうか?
<span itemscope itemtype="http://schema.org/Store">
// Store info here
<span itemscope itemtype="http://schema.org/Product">
<ul id="brandList">
<li itemprop="productID" id="7750">
<div itemprop="manufacturer" class="brandInfo">
<a itemprop="url" href="http://...">Celine Engelstad</a>
</div>
<div itemprop="logo" class="logo">
<img itemprop="logo" title="Celine Engelstad" src="http://..." class="logo">
</div>
</li>
// More items here
</ul>
</span>
1)製品のリストではなく、ブランドのリストであるため、使用するのが正しいですhttp://schema.org/Product
。2)ブランド名は、名前とリンクの両方です。これまでと同じようにネストを使用できますitemprop
か?
3)itemprop="productID"
これは購入アイテムではないので、使用する意味はありますが、私のサイトのブランドのIDはありますか?
2013年7月17日更新
外部からの支援を受けて、リストするブランドをストアに格納するために、次の構造を実装しました。
<ul class="brand-list>
<li id="426">
<span itemtype="http://schema.org/Organization" itemscope="">
<div class="brandInfo floatLef" itemprop="name">
<a href="#" class="" itemprop="url">American Retro</a>
</div>
</span>
</li>
</ul>
これは、たとえば、最も人気のあるブランドと呼ばれるセクションのフロントページでも使用するのが正しいでしょうか?