Structured data for subscription and paywalled content (CreativeWork)

This page describes how to use schema.org JSON-LD to indicate paywalled content on your site with CreativeWork properties. This structured data helps Google differentiate paywalled content from the practice of cloaking, which violates spam policies. Learn more about subscription and paywalled content.

Example

Here's an example of NewsArticle structured data with paywalled content.

<html>
  <head>
    <title>Article headline</title>
    <script type="application/ld+json">
    {
      "@context": "https://schema.org",
      "@type": "NewsArticle",
      "headline": "Article headline",
      "image": "https://example.org/thumbnail1.jpg",
      "datePublished": "2025-02-05T08:00:00+08:00",
      "dateModified": "2025-02-05T09:20:00+08:00",
      "author": {
        "@type": "Person",
        "name": "John Doe",
        "url": "https://example.com/profile/johndoe123"
      },
      "description": "A most wonderful article",
      "isAccessibleForFree": false,
      "hasPart":
        {
        "@type": "WebPageElement",
        "isAccessibleForFree": false,
        "cssSelector" : ".paywall"
        }
    }
    </script>
  </head>
  <body>
    <div class="non-paywall">
      Non-Paywalled Content
    </div>
    <div class="paywall">
      Paywalled Content
    </div>
  </body>
</html>

Guidelines

You must follow the general structured data guidelines and technical guidelines for your page to be eligible to appear in search results. In addition, the following guidelines apply to paywalled content:

  • JSON-LD and microdata formats are accepted methods for specifying structured data for paywalled content.
  • Don't nest content sections.
  • Only use .class selectors for the cssSelector property.

Add markup to paywalled content

If you offer any subscription-based access to your website content, or if users must register for access to any content you want to be indexed, follow these steps. The following example applies to NewsArticle structured data. Make sure to follow these steps for all versions of your page (including AMP and non-AMP).

  1. Add a class name around each paywalled section of your page. For example:
    <body>
    <p>This content is outside a paywall and is visible to all.</p>
    <div class="paywall">This content is inside a paywall, and requires a subscription or registration.</div>
    </body>
  2. Add NewsArticle structured data.
  3. Add the highlighted JSON-LD structured data to your NewsArticle structured data.
    {
    "@context": "https://schema.org",
    "@type": "NewsArticle",
    "mainEntityOfPage": {
    "@type": "WebPage",
    "@id": "https://example.org/article"
    },
    (...)
    "isAccessibleForFree": false,
    "hasPart": {
    "@type": "WebPageElement",
    "isAccessibleForFree": false,
    "cssSelector": ".paywall"
    }
    }
  4. Validate your code using the Rich Results Test and fix any critical errors.

Multiple paywalled sections

If you have multiple paywalled sections on a page, add the class names as an array.

Here's an example of the paywalled sections on a page:

<body>
<div class="section1">This content is inside a paywall, and requires a subscription or registration.</div>
<p>This content is outside a paywall and is visible to all.</p>
<div class="section2">This is another section that's inside a paywall, or requires a subscription or registration.</div>
</body>

Here's an example of NewsArticle structured data with multiple paywalled sections.

{
  "@context": "https://schema.org",
  "@type": "NewsArticle",
  "mainEntityOfPage": {
    "@type": "WebPage",
    "@id": "https://example.org/article"
    },
  (...)
  "isAccessibleForFree": false,
  "hasPart": [
    {
      "@type": "WebPageElement",
      "isAccessibleForFree": false,
      "cssSelector": ".section1"
    }, {
      "@type": "WebPageElement",
      "isAccessibleForFree": false,
      "cssSelector": ".section2"
    }
  ]
}

Supported types

This markup is supported for the CreativeWork type or one of the following more specific types of CreativeWork:

Multiple schema.org types can be used, such as the following:

"@type": ["Article", "LearningResource"]

You must include the required properties for Google to understand that your article has paywalled content. You can add the recommended properties for more granularity about which sections of a page are behind a paywall (or require a subscription or registration).

Required properties
isAccessibleForFree

Boolean

Whether the article is accessible to everyone, or if it's behind a paywall (or requires a subscription or registration). Set the isAccessibleForFree property to false to specify that this section is behind a paywall.

Recommended properties
hasPart.cssSelector

CssSelectorType

A CSS selector that references the class name that you set in the HTML to specify the paywalled section.

hasPart.@type

Text

Set the @type to WebPageElement.

hasPart.isAccessibleForFree

Boolean

Whether this section of the article is behind a paywall (or requires a subscription or registration). Set the isAccessibleForFree property to False to specify that this section is behind a paywall.

AMP considerations

Here's a list of considerations to keep in mind if you use AMP pages:

  • If you have an AMP page with paywalled content, use amp-subscriptions where appropriate.
  • Make sure that your authorization endpoint grants access to content to the appropriate bots from Google and others. This is different per publisher.
  • Ensure that your bot access policy is the same for AMP and non-AMP pages, otherwise this can result in content mismatch errors that appear in Search Console.

Generative AI in Search considerations

SGE (Search Generative Experience) overviews are generated with the help of AI. They are supported by info from across the web and Google's Knowledge Graph, a collection of info about people, places, and things. Content blocked using snippet controls will not be shown in overviews.

SGE is designed to help people discover helpful information on the web that supports the information in the overview and provides a jumping off point for people to explore further. As in Search more broadly, SGE overviews may include links to paywalled content as a way for people to discover those pages.

SGE while browsing, a separate feature than SGE in Search, will not show key points for paywalled articles, if paywall structured data is on the page.

Make sure Google can crawl and index your pages

If you want Google to crawl and index your content, including the paywalled sections, make sure Googlebot, and Googlebot-News if applicable, can access your page.

Use the URL Inspection tool to test how Google crawls and renders a URL on your site.

Control what information is shown in search results

To prevent Google from showing a cached link for your page, use the noarchive robots meta tag.

To exclude certain sections of your content from appearing in search result snippets, use the data-nosnippet HTML attribute. You can also limit how many characters a search result snippet may have by using the max-snippet robots meta tag.

Troubleshooting

If you're having trouble implementing or debugging structured data, here are some resources that may help you.

  • If you're using a content management system (CMS) or someone else is taking care of your site, ask them to help you. Make sure to forward any Search Console message that details the issue to them.
  • Google does not guarantee that features that consume structured data will show up in search results. For a list of common reasons why Google may not show your content in a rich result, see the General Structured Data Guidelines.
  • You might have an error in your structured data. Check the list of structured data errors.
  • If you received a structured data manual action against your page, the structured data on the page will be ignored (although the page can still appear in Google Search results). To fix structured data issues, use the Manual Actions report.
  • Review the guidelines again to identify if your content isn't compliant with the guidelines. The problem can be caused by either spammy content or spammy markup usage. However, the issue may not be a syntax issue, and so the Rich Results Test won't be able to identify these issues.
  • Troubleshoot missing rich results / drop in total rich results.
  • Allow time for re-crawling and re-indexing. Remember that it may take several days after publishing a page for Google to find and crawl it. For general questions about crawling and indexing, check the Google Search crawling and indexing FAQ.
  • Post a question in the Google Search Central forum.