SaaS 或订阅是否有 Schema.org 类型?
Is there a Schema.org type for SaaS or subscriptions?
我们销售按月订阅的软件即服务,我想弄清楚我们是否可以通过 Schema.org 的规范提供元数据。
一直在考虑products,不过好像不支持订阅费。
对于产品,Google似乎想到了电子商务实物类型的东西。
还有 Software applications,但它似乎是为可下载软件而不是网络应用程序制作的。
我应该使用什么?
有不同的可能观点:
这是一个SoftwareApplication
(or the more specific WebApplication
, maybe with browserRequirements
).
这是一个Service
with a ServiceChannel
+serviceUrl
。
这是一个Product
and/or an Offer
(均包含服务)。
(它 是 可能 specify subscription costs in Schema.org。)
您可能只想使用其中的一种或多种类型,具体取决于您对 SaaS 的理解以及您想要提供的元数据。
我也在为此苦苦挣扎。我们开发 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 中。 .
我也在我们的博客上写了一篇关于这个问题的文章quick case study。
我们销售按月订阅的软件即服务,我想弄清楚我们是否可以通过 Schema.org 的规范提供元数据。 一直在考虑products,不过好像不支持订阅费。
对于产品,Google似乎想到了电子商务实物类型的东西。
还有 Software applications,但它似乎是为可下载软件而不是网络应用程序制作的。
我应该使用什么?
有不同的可能观点:
这是一个
SoftwareApplication
(or the more specificWebApplication
, maybe withbrowserRequirements
).这是一个
Service
with aServiceChannel
+serviceUrl
。这是一个
Product
and/or anOffer
(均包含服务)。(它 是 可能 specify subscription costs in Schema.org。)
您可能只想使用其中的一种或多种类型,具体取决于您对 SaaS 的理解以及您想要提供的元数据。
我也在为此苦苦挣扎。我们开发 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 中。
我也在我们的博客上写了一篇关于这个问题的文章quick case study。