结构化数据测试工具

时间:2018-12-26 10:50:03

标签: javascript structure price

运行结构化数据的测试工具时出现错误。找不到解决方案或错误原因的解释。 Google用瑞典语显示错误,不允许我用Google搜索问题,也不允许Google提供任何链接来解释问题所在。我正在尝试将结构化数据添加到网站,并同时包括报价和评分。一旦我尝试通过测试工具运行该代码段,Google便说无法将价格值标准化。我不知道这意味着什么,也找不到任何信息。

这是我的脚本的样子:

<script type="application/ld+json">
    {
      "@context": "http://schema.org/",
      "@type": "Product",
      "image": "https://www.test.com/bild.png",
      "name": "Produktnamn",  
      "description": "Beskrivning.",
      "brand": {
        "@type": "Product",
        "name": "Företag"
      },
      "aggregateRating": {
        "@type": "AggregateRating",
        "ratingValue": "15",
        "reviewCount": "3",
        "worstRating": "1",
        "bestRating": "5"
      },
      "offers": {
        "@type": "Offer",
        "priceCurrency": "sek",
        "price": "519",
        "priceValidUntil": "2019-01-01",
        "itemCondition": "http://schema.org/NewCondition",
        "availability": "http://schema.org/InStock",
        "url": "https://www.test.com/produktsida"
      }    }
    </script>

1 个答案:

答案 0 :(得分:2)

您已使用 ratingValue 作为 15 ,该值超出了您为 worstRating bestRating 定义的范围。

应该将您的值更正为介于1到5之间,或者范围错误。