我们以每月订阅的方式销售软件即服务,我试图弄清楚我们是否可以通过Schema.org的规范提供元数据。 我一直在考虑products,但它似乎不支持订阅费用。
对于产品,谷歌似乎考虑到了电子商务物理对象类型的东西。
还有Software applications,但这似乎是针对可下载软件而非网络应用程序。
我应该使用什么?
答案 0 :(得分:14)
有不同的可能观点:
这是SoftwareApplication
(或更具体的WebApplication
,可能还有browserRequirements
)。
您可能只想使用其中的一种或多种类型,具体取决于您对SaaS的理解以及您希望提供的元数据。
答案 1 :(得分:8)
我也在努力解决这个问题。我们开发SEO工具,基于Web的应用程序,并有3个计划,每个年度和月度版本,以及免费计划。我完全建议你也包括一个免费的计划,因为它将作为免费产品在SERP中显示。如果不这样,最低价格将显示在SERP中。但是我最终得到了以下解决方案:
<script type="application/ld+json">
{
"@context": "http://schema.org",
"@type": "WebApplication",
"@id": "kwfinder",
"applicationCategory": "BusinessApplication",
"name": "KWFinder - find logtail keywords with low seo difficulty",
"operatingSystem": "all",
"browserRequirements": "Requires Javascript and HTML5 support",
"url": "https://app.kwfinder.com",
"screenshot": "https://kwfinder.com/images/kwfinder-big.png",
"aggregateRating": {
"@type": "AggregateRating",
"ratingValue": "4.53",
"reviewCount": "3"
},
"offers": {
"@type": "AggregateOffer",
"offeredBy": {
"@type": "Organization",
"name":"mangools"
},
"highPrice": "469.00",
"lowPrice": "0",
"offerCount": "6",
"priceCurrency": "USD",
"priceSpecification": [
{
"@type": "UnitPriceSpecification",
"price": "0.00",
"priceCurrency": "USD",
"name": "mangools FREE subscription"
},
{
"@type": "UnitPriceSpecification",
"price": "469.00",
"priceCurrency": "USD",
"name": "mangools Premium annual subscription",
"referenceQuantity": {
"@type": "QuantitativeValue",
"value": "1",
"unitCode": "ANN"
}
},
{
"@type": "UnitPriceSpecification",
"price": "49",
"priceCurrency": "USD",
"name": "mangools Premium monthly subscription",
"referenceQuantity": {
"@type": "QuantitativeValue",
"value": "1",
"unitCode": "MON"
}
}
]
},
"creator": {
"@type":"Organization",
"@id":"#organization",
"url":"https://mangools.com/",
"name":"mangools",
"logo":{
"@type":"ImageObject",
"url":"https://mangools.com/mangools-logo.png",
"width":"700px",
"height":"235px"
}
}
}
</script>
使用此代码,您将获得以下内容:
请注意,如果您在主页上标记产品,它将不会出现在SERP中。 Google accepts structured data only for leaf pages
我还在博客上写了一篇关于这个问题的quick case study。