【问题标题】:Is there a Schema.org type for SaaS or subscriptions?SaaS 或订阅是否有 Schema.org 类型?
【发布时间】:2023-03-11 22:44:01
【问题描述】:

我们出售按月订阅的软件即服务,我试图弄清楚我们是否可以通过 Schema.org 的规范提供元数据。 我一直在考虑products,但它似乎不支持订阅费用。

对于产品,Google 似乎考虑了电子商务实体对象类型的东西。

还有Software applications,但这似乎是为可下载软件而不是网络应用程序而设计的。

我应该使用什么?

【问题讨论】:

    标签: saas schema.org


    【解决方案1】:

    我也在为此苦苦挣扎。我们开发 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关于这个问题。

    【讨论】:

      【解决方案2】:

      有不同的可能视角:

      您可能只想使用其中的一种或多种类型,具体取决于您对 SaaS 的理解以及您想要提供的元数据。

      【讨论】:

        猜你喜欢
        • 2021-07-01
        • 2019-08-01
        • 1970-01-01
        • 2019-01-31
        • 1970-01-01
        • 1970-01-01
        • 1970-01-01
        • 2021-11-28
        • 2019-01-03
        相关资源
        最近更新 更多