Fact check (ClaimReview) structured data

If you have a web page that reviews a claim made by others, you can include ClaimReview structured data on your web page. ClaimReview structured data can enable a summarized version of your fact check to display in Google Search results when your page appears in search results for that claim.

This guide describes the details on how to implement ClaimReview structured data. If you don't want to add structured data manually, you can check out the Fact Check Markup Tool. To learn more, visit About the Fact Check Markup Tool.

如何添加结构化数据

结构化数据是一种提供网页相关信息并对网页内容进行分类的标准化格式。如果您不熟悉结构化数据,可以详细了解结构化数据的运作方式

下面概述了如何构建、测试和发布结构化数据。如需获得向网页添加结构化数据的分步指南,请查看结构化数据 Codelab

  1. 添加必要属性。根据您使用的格式,了解在网页上的什么位置插入结构化数据
  2. 遵循指南
  3. 使用富媒体搜索结果测试验证您的代码,并修复所有严重错误。此外,您还可以考虑修正该工具中可能会标记的任何非严重问题,因为这些这样有助于提升结构化数据的质量(不过,要使内容能够显示为富媒体搜索结果,并非必须这么做)。
  4. 部署一些包含您的结构化数据的网页,然后使用网址检查工具测试 Google 看到的网页样貌。请确保您的网页可供 Google 访问,不会因 robots.txt 文件、noindex 标记或登录要求而被屏蔽。如果网页看起来没有问题,您可以请求 Google 重新抓取您的网址
  5. 为了让 Google 随时了解日后发生的更改,我们建议您提交站点地图Search Console Sitemap API 可以帮助您自动执行此操作。

Example

Imagine a page that evaluates the claim that the earth is flat. Here is what a search for "the world is flat" might look like in Google Search results if the page provides a ClaimReview element (note that the actual visual design may change):

Single claim review associated with a page

Here's an example of structured data on the page that hosts this fact check:


<html>
  <head>
    <title>The world is flat</title>
    <script type="application/ld+json">
    {
      "@context": "https://schema.org",
      "@type": "ClaimReview",
      "url": "https://example.com/news/science/worldisflat.html",
      "claimReviewed": "The world is flat",
      "itemReviewed": {
        "@type": "Claim",
        "author": {
          "@type": "Organization",
          "name": "Square World Society",
          "sameAs": "https://example.flatworlders.com/we-know-that-the-world-is-flat"
        },
        "datePublished": "2024-06-20",
        "appearance": {
          "@type": "OpinionNewsArticle",
          "url": "https://example.com/news/a122121",
          "headline": "Square Earth - Flat earthers for the Internet age",
          "datePublished": "2024-06-22",
          "author": {
            "@type": "Person",
            "name": "T. Tellar"
          },
          "image": "https://example.com/photos/1x1/photo.jpg",
          "publisher": {
            "@type": "Organization",
            "name": "Skeptical News",
            "logo": {
              "@type": "ImageObject",
              "url": "https://example.com/logo.jpg"
            }
          }
        }
      },
      "author": {
        "@type": "Organization",
        "name": "Example.com science watch"
      },
      "reviewRating": {
        "@type": "Rating",
        "ratingValue": "1",
        "bestRating": "5",
        "worstRating": "1",
        "alternateName": "False"
      }
    }
    </script>
  </head>
  <body>
  </body>
</html>

Eligibility guidelines

Google doesn't guarantee that fact checks will be shown in search results, even if your page is marked up correctly according to the Rich Result Test. Using structured data enables a feature to be present, it does not guarantee that it will be present. The Google algorithm programmatically determines the eligibility for fact check rich results, depending on many variables, including the following guidelines.

For your fact check content to be eligible to display as a fact check rich result on Google Search, you must meet the following guidelines:

  • Your site must have several pages marked with ClaimReview structured data.
  • You must follow all the structured data guidelines and Search Essentials.
  • There must not be any mismatch between the structured data and page content (for example, if the structured data indicated that the claim is true, but the content on the page said the claim was false). Instead, make sure that both the content and structured data match (for example, both indicate that the claim is true).
  • You must meet the standards for accountability, transparency, readability, and site misrepresentation, as articulated in our Google News General Guidelines.
  • You must have a corrections policy or have a mechanism for users to report errors.
  • Websites for political entities (such as campaigns, parties, or elected officials) aren't eligible for this feature.
  • Your readers can easily identify the claims and checks in the body of the article. Your readers are able to understand what was checked and what conclusions were reached.
  • You must clearly attribute the specific claim that you're assessing to a distinct origin (separate from your website), whether it's another website, public statement, social media, or other traceable source.
  • Your fact check analysis must be traceable and transparent about sources and methods, with citations and references to primary sources.

Technical guidelines

  • To be eligible for the single fact check rich result, a page must only have one ClaimReview element. If you add multiple ClaimReview elements per page, the page won't be eligible for the single fact check rich result.
  • The page hosting the ClaimReview element must have at least a brief summary of the fact check and the evaluation, if not the full text.
  • A specific ClaimReview must only be on one page on your site. Do not repeat the same fact check on multiple pages, unless they are variations of the same page (for example, you can post the same ClaimReview on the mobile and desktop versions of a page).
  • If your website aggregates fact-check articles, ensure that all articles match the criteria and that you provide an open and publicly available list of all fact-check websites you aggregate.

Structured data type definitions

The following structured data types are required to implement fact checks:

You must include the required properties for your content to be eligible for display as a rich result. You can also include the recommended properties to add more information about your content, which could provide a better user experience.

ClaimReview

The full definition of ClaimReview is available at schema.org/ClaimReview. The Google-supported properties are the following:

Required properties
claimReviewed

Text

A short summary of the claim being evaluated. Try to keep this less than 75 characters to minimize wrapping when displayed on a mobile device.

reviewRating

Rating

The assessment of the claim. This object supports both a numeric and a textual assessment. The textual value is currently the only value shown in search results.

Different fact-checking projects have a variety of rating schemes which can have subtle differences, particularly for intermediate values. It is important to document such rating schemes to clarify the meaning of the numeric ratings. Minimally, there must be a number to text rating system for all your fact checks that carry numeric scores.

  • 1 = "False"
  • 2 = "Mostly false"
  • 3 = "Half true"
  • 4 = "Mostly true"
  • 5 = "True"

For more information, see Rating.

url

URL

Link to the page hosting the full article of the fact check.

The domain of this URL value must be the same domain as, or a subdomain of, the page hosting this ClaimReview element. Redirects or shortened URLs (such as g.co/searchconsole) are not resolved, and so will not work here.

author

Organization or Person

The publisher of the fact check article, not the publisher of the claim. The author must be an organization or a person. The author have at least one of the following properties:

name Text

Name of the organization that is publishing the fact check.

url

URL

The URL of the publisher of the fact check. This can be a home page, contact page, or other appropriate page.

To help Google best understand authors across various features, consider following the author markup best practices.

itemReviewed

Claim

An object describing the claim being made. For more information, see Claim.

Claim

The full definition of Claim is available at schema.org/Claim.

appearance

URL or CreativeWork

A link to, or inline description of, a CreativeWork in which this claim appears.

We recommend that you add either appearance or firstAppearance. You don't need to add both.

author

Organization or Person

The author of the claim, not the author of the fact check. Don't include the author property if the claim doesn't have an author. If you add author, define the following properties:

nameText, required

The publisher of the claim. The publisher can be a person or organization.

sameAs URL, recommended

Indicates the party that is making the claim, regardless of whether the party is a Person or Organization. When multiple publishers report on the same claim, the appearance property can be repeated. When multiple parties are making essentially the same claim, the author property can be repeated.

The URL can be:

  • The home page of the organization that is making the claim.
  • Another definitive URL that provides information about the party that is making the claim, such as a person or organization's Wikipedia or Wikidata entry.
datePublished

DateTime or Date

The date when the claim was made or entered public discourse (for example, when it became popular in social networks).

firstAppearance

URL or CreativeWork

A link to, or inline description of, a CreativeWork in which this specific claim first appears.

We recommend that you add either appearance or firstAppearance. You don't need to add both.

Rating

The full definition of Rating is available at schema.org/Rating.

Required properties
alternateName

Text

The truthfulness rating assigned to ClaimReview.reviewRating, as a human-readible short word or phrase. This value is displayed in the fact check in search results. Examples: "True" or "Mostly true".

If using a longer sentence, be sure that the beginning of the sentence expresses the meaning, in case the sentence is truncated to fit the display. For example: "Mostly true in the specifics, although the overall claim is somewhat misleading"

bestRating

Number

For numeric ratings, the best value possible in the scale from worst to best. Must be greater than worstRating. Must be able to be evaluated as a number. Example: 4

name

Text

Same as alternateName, and used when alternateName is not provided, but we recommend that you specify alternateName instead of name.

ratingValue

Number

A numeric rating of this claim, in the range worstRatingbestRating inclusive. Integer values are recommended but not required. The closer the numeric rating is to bestRating, the more true it is; the closer this value is to worstRating, the more false it is. The numeric rating must be able to be evaluated as a number. Example: 4

worstRating

Number

For numeric ratings, the worst value possible in a scale from worst to best. Must be less than bestRating. Must be able to be evaluated as a number. Must have a minimum value of 1. Example: 1

Monitor rich results with Search Console

Search Console is a tool that helps you monitor how your pages perform in Google Search. You don't have to sign up for Search Console to be included in Google Search results, but it can help you understand and improve how Google sees your site. We recommend checking Search Console in the following cases:

  1. After deploying structured data for the first time
  2. After releasing new templates or updating your code
  3. Analyzing traffic periodically

After deploying structured data for the first time

After Google has indexed your pages, look for issues using the relevant Rich result status report. Ideally, there will be an increase of valid items, and no increase in invalid items. If you find issues in your structured data:

  1. Fix the invalid items.
  2. Inspect a live URL to check if the issue persists.
  3. Request validation using the status report.

After releasing new templates or updating your code

When you make significant changes to your website, monitor for increases in structured data invalid items.
  • If you see an increase in invalid items, perhaps you rolled out a new template that doesn't work, or your site interacts with the existing template in a new and bad way.
  • If you see a decrease in valid items (not matched by an increase in invalid items), perhaps you are no longer embedding structured data in your pages. Use the URL Inspection tool to learn what is causing the issue.

Analyzing traffic periodically

Analyze your Google Search traffic using the Performance Report. The data will show you how often your page appears as a rich result in Search, how often users click on it and what is the average position you appear on search results. You can also automatically pull these results with the Search Console API.

问题排查

如果您在实施或调试结构化数据时遇到问题,请查看下面列出的一些实用资源。

  • 如果您使用了内容管理系统 (CMS) 或其他人负责管理您的网站,请向其寻求帮助。请务必向其转发列明问题细节的任何 Search Console 消息。
  • Google 不能保证使用结构化数据的功能一定会显示在搜索结果中。如需查看导致 Google 无法将您的内容显示为富媒体搜索结果的各种常见原因,请参阅结构化数据常规指南
  • 您的结构化数据可能存在错误。请参阅结构化数据错误列表
  • 如果您的网页受到结构化数据手动操作的影响,其中的结构化数据将会被忽略(但该网页仍可能会出现在 Google 搜索结果中)。如需修正结构化数据问题,请使用“人工处置措施”报告
  • 再次查看相关指南,确认您的内容是否未遵循指南。问题可能是因为出现垃圾内容或使用垃圾标记导致的。不过,问题可能不是语法问题,因此富媒体搜索结果测试无法识别这些问题。
  • 针对富媒体搜索结果缺失/富媒体搜索结果总数下降进行问题排查
  • 请等待一段时间,以便 Google 重新抓取您的网页并重新将其编入索引。请注意,网页发布后,Google 可能需要几天时间才会找到和抓取该网页。有关抓取和索引编制的常见问题,请参阅 Google 搜索抓取和索引编制常见问题解答
  • Google 搜索中心论坛中发帖提问。