1

例如,我有一个提供酒店房间的网站。此类优惠的价格通常是“按每晚 2 人计算”;这意味着显示的价格是每个人支付的价格,因为他/她与另一个人共享房间。

这是代码片段:

<section itemscope itemtype="http://schema.org/Product"
         itemid="urn:www.example.com:products/1">
    <p itemprop="name">Hotel La Moka</p>

    <section itemprop="offers"
             itemscope
             itemtype="http://schema.org/Offer">

        Price: 
        <span itemprop="price" itemscope
              itemtype="http://schema.org/UnitPriceSpecification">
        From <span itemprop="minPrice">56</span>
             <meta itemprop="currency" content="EUR"> €
        On the basis of <span itemprop="billingIncrement">2</span>
        <meta itemprop="unitCode" content="WHAT??"> persons per night.</span>
    </section>
 </section>

如您所见,单位“每晚人数”实际上没有给出单位代码。所以问题是:这个单元的 UN/CEFACT 代码是什么?

4

2 回答 2

0

I would recommend that you use the schema.org/Hotel markup and for your prices, you could use the pricerange itemprop. You could list other details and text such as "Prices based on double occupancy" outside of your schema tags.

于 2013-11-02T20:02:42.183 回答
0

供您参考:我是 GoodRelations [1] 的 ACCO 扩展的作者,我希望在接下来的几个月内将其变成 schema.org 的扩展提案,以便我们对酒店等有更好的支持。架构.org。

[1] http://ontologies.sti-innsbruck.at/acco/ns.html

于 2014-04-04T06:37:31.953 回答