我有一個商店頁面列出他們銷售的是什麼時尚品牌。但我不確定要使用什麼微數據模式。我正在使用來自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>
這是否是正確使用例如在一個叫做最熱門品牌的部分的頭版上?