Thing > Product
可出售的任何产品,如一双鞋子、一张演唱会门票或一辆汽车。属性 | 预期类型 | 描述 |
---|---|---|
Thing的属性 | ||
additionalType | URL | 该项的一个附加类型, 通常用于从外部词典中向微数据语法添加更加具体的类型。它表示事物和事物本身所属的类之间的关系。在RDFa语法中, 对多类型最好使用‘typeof’属性这样的本地RDFa语法. Schema.org 工具对额外类型的理解较弱,特别是外部定义的额外类型。 |
description | Text | 该项的一个简单描述。 |
image | URL | 该项的图像URL地址。 |
name | Text | 该项的名称。 |
url | URL | 该项的URL地址。 |
Product的属性 | ||
aggregateRating | AggregateRating | 基于该项的一系列评论或评价的一个总体评价。 |
brand | Organization | 该产品的商标。 |
manufacturer | Organization | 该产品的生产商。 |
model | Text | 该产品的模型。 |
offers | Offer | 售出该项的一份报价,如售出一个产品,一个电影DVD或比赛项目门票的报价。 |
productID | Text | 该产品标识,如ISBN, <meta itemprop='productID' content='isbn:123-456-789'/> . |
review | Review | 该项的评论。 |
reviews | Review | 该项的评论(拼写的单数形式, review)。 |
Schema Draft Version 0.97
例 1
原 HTML:
Kenmore White 17英寸 微波炉 <img src="kenmore-microwave-17in.jpg" alt='Kenmore 17" Microwave' /> 评价 3.5/5 基于11个用户评论 $55.00 有库存 产品描述: 0.7 立方英尺.有六种烹饪策略可选,并且提供了便捷操作如,继续烹饪一分钟和儿童锁等等 用户评价: 一个不愉快的露营 - 曾兰留,2011年4月1号 1/5 星 灯烧坏了,现在不得不更换一个。 性价比高 - 欧阳克, 2011年3月25号 4/5 星 这个价格段中非常棒的一款微波炉。 非常小巧适合我的公寓。 ...
加上微数据:
<div itemscope itemtype="http://schema.org/Product"> <span itemprop="name">Kenmore White 17英寸 微波炉</span> <img src="kenmore-microwave-17in.jpg" alt='Kenmore 17" Microwave' /> <div itemprop="aggregateRating" itemscope itemtype="http://schema.org/AggregateRating"> Rated <span itemprop="ratingValue">3.5</span>/5 based on <span itemprop="reviewCount">11</span> 用户评论 </div> <div itemprop="offers" itemscope itemtype="http://schema.org/Offer"> <span itemprop="price">$55.00</span> <link itemprop="availability" href="http://schema.org/InStock" />有库存 </div> 产品描述: <span itemprop="description">0.7 立方英尺。有六种烹饪策略可选,并且提供了便捷操作如,继续烹饪一分钟和儿童锁等等 。</span> 用户评论: <div itemprop="review" itemscope itemtype="http://schema.org/Review"> <span itemprop="name">Not a happy camper</span> - by <span itemprop="author">曾兰留</span>, <meta itemprop="datePublished" content="2011-04-01">2011年4月1号 <div itemprop="reviewRating" itemscope itemtype="http://schema.org/Rating"> <meta itemprop="worstRating" content = "1"> <span itemprop="ratingValue">1</span>/ <span itemprop="bestRating">5</span>星 </div> <span itemprop="description">灯烧坏了,现在不得不更换一个。 </span> </div> <div itemprop="review" itemscope itemtype="http://schema.org/Review"> <span itemprop="name">性价比高</span> - by <span itemprop="author">欧阳克</span>, <meta itemprop="datePublished" content="2011-03-25">2011年3月25号 <div itemprop="reviewRating" itemscope itemtype="http://schema.org/Rating"> <meta itemprop="worstRating" content = "1"/> <span itemprop="ratingValue">4</span>/ <span itemprop="bestRating">5</span>星 </div> <span itemprop="description">这个价格段中非常棒的一款微波炉. 非常小巧适合我的公寓。</span> </div> ... </div>
例 2
原 HTML:
<img src="dell-30in-lcd.jpg" /> 戴尔 UltraSharp 30" LCD 显示屏 87 out of 100 基于24个用户评价 8个经销商价格从$1250 到 $1495 经销商: <a href="save-a-lot-monitors.com/dell-30.html"> 广埠屯电脑大世界 - $1250</a> <a href="jondoe-gadgets.com/dell-30.html"> 中关村电脑城 - $1350</a> ...
加上微数据:
<div itemscope itemtype="http://schema.org/Product"> <img itemprop="image" src="dell-30in-lcd.jpg" /> <span itemprop="name">戴尔 UltraSharp 30" LCD 显示屏</span> <div itemprop="aggregateRating" itemscope itemtype="http://schema.org/AggregateRating"> <span itemprop="ratingValue">87</span> out of <span itemprop="bestRating">100</span> 基于 <span itemprop="ratingCount">24</span> 用户评价 </div> <div itemprop="offers" itemscope itemtype="http://schema.org/AggregateOffer"> <span itemprop="lowPrice">$1250</span> 到<span itemprop="highPrice">$1495</span> 从 <span itemprop="offerCount">8</span> 经销商 经销商: <div itemprop="offers" itemscope itemtype="http://schema.org/Offer"> <a itemprop="url" href="save-a-lot-monitors.com/dell-30.html"> 广埠屯电脑大世界 - $1250</a> </div> <div itemprop="offers" itemscope itemtype="http://schema.org/Offer"> <a itemprop="url" href="jondoe-gadgets.com/dell-30.html"> 中关村电脑城 - $1350</a> </div> ... </div>