Thing > Intangible > Offer > AggregateOffer

当一个商品有多个不同报价时 (比如, 由不同的经销商提供的同样一款鞋),那么就使用 AggregateOffer .
属性 预期类型 描述
Thing 的属性
additionalType URL 该项的一个附加类型, 通常用于从外部词典中向微数据语法添加更加具体的类型。它表示事务和事务本身所属的类之间的关系。在RDFa语法中, 对多类型最好使用‘typeof’属性这样的本地RDFa语法. Schema.org 工具对额外类型的理解较弱,特别是外部定义的额外类型。
description Text 该项的一个简单描述。
image URL 该项的图像URL地址。
name Text 该项的名称。
url URL 该项的URL地址。
Offer 的属性
aggregateRating AggregateRating 基于该项的一系列评论或评价的一个总体评价。
availability ItemAvailability 该项是否可得—例如 有库存, 无库存,已预订,等等。
itemCondition OfferItemCondition 该销售项的状况—比如 全新的, 翻新的, 使用过的,等等.
itemOffered Product 被销售的项。
price Number or Text 产品的报价。
priceCurrency Text 报价所用货币单位(见 ISO 4217 format) 。
priceValidUntil Date 价格的有效日期。
review Review 该项的评论。
reviews Review 该项的评论(拼写的单数形式, review)。
seller Organization 产品的经销商
AggregateOffer 的属性
highPrice Number or Text 所有报价中的最高价格。
lowPrice Number or Text 所有报价中的最低价格。
offerCount Integer 该产品的报价数量。
Schema Draft Version 0.97

例 1

原 HTML:

 <a href="nba-miami-philidelphia-game3.html"> NBA 东区第一轮季后赛门票:  迈阿密热火队对阵费城76人队 - 第三场 (主场第一场) </a>  2016年4月21号 星期四 晚上八点。  <a href="wells-fargo-center.html"> 富国银行中心 </a> 宾夕法尼亚州 费城 价格: $35 1938 票剩余 


加上微数据:
 <div itemscope itemtype="http://schema.org/Event">   <a itemprop="url" href="nba-miami-philidelphia-game3.html"> NBA 东区第一轮季后赛门票:<span itemprop="name">迈阿密热火队对阵费城76人队 - 第三场 (主场第一场) </span>   </a>    <meta itemprop="startDate" content="2016-04-21T20:00">2016年4月21号 星期四 晚上八点。<div itemprop="location" itemscope itemtype="http://schema.org/Place">     <a itemprop="url" href="wells-fargo-center.html">     富国银行中心     </a>     <div itemprop="address" itemscope itemtype="http://schema.org/PostalAddress">       <span itemprop="addressLocality">费城</span>,       <span itemprop="addressRegion">宾夕法尼亚州</span>     </div>   </div>    <div itemprop="offers" itemscope itemtype="http://schema.org/AggregateOffer">    价格: <span itemprop="lowPrice">$35</span>     <span itemprop="offerCount">1938</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>