Review snippet

A review snippet is a short excerpt of a review or a rating from a review website, unremarkably an average of the combined rating scores from many reviewers. When Google finds valid reviews or ratings markup, we may show a rich snippet that includes stars and other summary info from reviews or ratings. In addition to the text of the review, a rating is an evaluation described on a numeric scale (such as 1 to five). Review snippets may appear in rich results or Google Knowledge Panels. You can supply ratings for the following content types (and subtypes):

  • Book
  • Course
  • Event
  • How-to
  • Local business organisation
  • Moving picture
  • Production
  • Recipe
  • Software App

Google also supports reviews for the following schema.org types (and their subtypes):

  • CreativeWorkSeason
  • CreativeWorkSeries
  • Episode
  • Game
  • MediaObject
  • MusicPlaylist
  • MusicRecording
  • Organization

How to add structured data

Structured data is a standardized format for providing information about a folio and classifying the page content. If you're new to structured data, y'all can learn more than about how structured data works.

Hither's an overview of how to build, test, and release structured data. For a stride-past-step guide on how to add together structured data to a web page, cheque out the structured information codelab.

  1. Add the required properties. Based on the format you're using, acquire where to insert structured data on the page.
  2. Follow the guidelines.
  3. Validate your lawmaking using the Rich Results Test.
  4. Deploy a few pages that include your structured data and use the URL Inspection tool to test how Google sees the page. Be sure that your page is attainable to Google and not blocked by a robots.txt file, the noindex tag, or login requirements. If the folio looks okay, you lot can enquire Google to recrawl your URLs.
  5. To go on Google informed of future changes, nosotros recommend that yous submit a sitemap. Y'all can automate this with the Search Console Sitemap API.

Examples

There are several ways you can add Review structured data to a page:

  • Add a unproblematic review.
  • Nest a review into some other schema.org type using its review holding.
  • Add aggregate ratings. You can omit the rating for an individual review if your marked-upward content contains both an author and a review date. For aggregate reviews, you must supply the average rating for the rich snippet to display.
  • Nest amass ratings into another schema.org blazon using its aggregateRating property.

Simple review

Hither's an example of a simple review.

JSON-LD


<html>   <caput>   <title>Legal Seafood</title>     <script type="awarding/ld+json">     {       "@context": "https://schema.org/",       "@blazon": "Review",       "itemReviewed": {         "@blazon": "Eatery",         "paradigm": "http://www.example.com/seafood-restaurant.jpg",         "name": "Legal Seafood",         "servesCuisine": "Seafood",         "priceRange": "$$$",         "telephone": "1234567",         "address" :{           "@type": "PostalAddress",           "streetAddress": "123 William St",           "addressLocality": "New York",           "addressRegion": "NY",           "postalCode": "10038",           "addressCountry": "United states of america"         }       },       "reviewRating": {         "@type": "Rating",         "ratingValue": "4"       },       "name": "A good seafood identify.",       "writer": {         "@blazon": "Person",         "name": "Bob Smith"       },       "reviewBody": "The seafood is great.",       "publisher": {         "@type": "Organization",         "proper noun": "Washington Times"       }     }     </script>   </head>   <torso>   </torso> </html>

RDFa


                        <html>   <head>     <title>Legal Seafood</title>   </head>   <body>     <div vocab="https://schema.org/" typeof="Review">       <div property="itemReviewed" typeof="Eating house">         <img property="image" src="https://case.com/photos/1x1/seafood-eating place.jpg" alt="Legal Seafood"/>         <span property="name">Legal Seafood</span>         <bridge property="servesCuisine">Seafood</span>         <span property="priceRange">$$$</span>         <bridge property="telephone">1234567</bridge>         <bridge property="accost">123 William St, New York</span>       </div>       <bridge property="reviewRating" typeof="Rating">         <span property="ratingValue">iv</span>       </span> stars -       <b>"<span property="name">A expert seafood identify.</bridge>" </b>       <span property="author" typeof="Person">         <bridge property="name">Bob Smith</span>       </span>       <span property="reviewBody">The seafood is great.</bridge>       <div holding="publisher" typeof="Arrangement">         <meta property="name" content="Washington Times">       </div>     </div>   </torso> </html>

Microdata


                        <html>   <head>   <title>Legal Seafood</title>   </head>   <torso>     <div itemscope itemtype="https://schema.org/Review">       <div itemprop="itemReviewed" itemscope itemtype="https://schema.org/Eating house">         <img itemprop="epitome" src="https://example.com/photos/1x1/seafood-eatery.jpg" alt="Legal Seafood"/>         <span itemprop="name">Legal Seafood</span>         <span itemprop="servesCuisine">Seafood</span>         <span itemprop="priceRange">$$$</bridge>         <span itemprop="telephone">1234567</span>         <span itemprop="address">123 William St, New York</span>       </div>       <bridge itemprop="reviewRating" itemscope itemtype="https://schema.org/Rating">         <bridge itemprop="ratingValue">4</span>       </span> stars -       <b>"<span itemprop="proper noun">A proficient seafood identify.</span>" </b>       <span itemprop="author" itemscope itemtype="https://schema.org/Person">         <bridge itemprop="proper name">Bob Smith</span>       </span>       <span itemprop="reviewBody">The seafood is smashing.</span>       <div itemprop="publisher" itemscope itemtype="https://schema.org/Arrangement">         <meta itemprop="name" content="Washington Times">       </div>     </div>   </trunk> </html>

Nested review

Here's an instance of a review that's nested in a Product. You tin re-create and paste the example to your own HTML page.

JSON-LD


<html>   <head>     <championship>The Catcher in the Rye</title>     <script type="application/ld+json">     {       "@context": "https://schema.org/",       "@blazon": "Production",       "make": {         "@type": "Brand",         "proper noun": "Penguin Books"       },       "clarification": "The Catcher in the Rye is a classic coming-of-age story: an story of teenage alienation, capturing the human need for connection and the bewildering sense of loss as we leave babyhood backside.",       "sku": "9780241984758",       "mpn": "925872",       "image": "http://www.example.com/catcher-in-the-rye-volume-cover.jpg",       "name": "The Catcher in the Rye",       "review": [{         "@type": "Review",         "reviewRating": {           "@type": "Rating",           "ratingValue": "v"         },         "author": {           "@type": "Person",           "proper noun": "John Doe"         },         "reviewBody": "I really enjoyed this volume. It captures the essential challenge people face as they try make sense of their lives and grow to adulthood."       },       {         "@type": "Review",         "reviewRating": {           "@blazon": "Rating",           "ratingValue": "i"         },         "author": {           "@type": "Person",           "name": "Jane Doe"         },         "reviewBody": "I actually didn't intendance for this book."       }],       "aggregateRating": {         "@type": "AggregateRating",         "ratingValue": "88",         "bestRating": "100",         "ratingCount": "twenty"       },       "offers": {         "@type": "Offer",         "url": "https://instance.com/offers/catcher-in-the-rye",         "priceCurrency": "USD",         "price": "5.99",         "priceValidUntil": "2020-11-05",         "itemCondition": "https://schema.org/UsedCondition",         "availability": "https://schema.org/InStock",         "seller": {           "@type": "Organisation",           "proper name": "eBay"         }       }     }     </script>   </head>   <torso>   </torso> </html>

RDFa


                        <html>   <head>     <title>The Catcher in the Rye</championship>   </head>     <body>       <div vocab="https://schema.org/" typeof="Product">         <div rel="schema:brand">           <div typeof="schema:Brand">             <div property="schema:name" content="Penguin"></div>           </div>         </div>         <div belongings="schema:description" content="The Catcher in the Rye is a classic coming-of-age story: an story of teenage breach, capturing the human being need for connection and the bewildering sense of loss as we leave babyhood behind."></div>         <div property="schema:sku" content="9780241984758"></div>         <div property="schema:mpn" content="925872"></div>         <img holding="image" src="https://example.com/photos/1x1/catcher-in-the-rye-book-cover.jpg" alt="Catcher in the Rye"/>         <span property="proper name">The Catcher in the Rye</span>         <div property="review" typeof="Review"> Review:           <span holding="reviewRating" typeof="Rating">             <span property="ratingValue">5</span> -           </bridge>           <b>"<span property="name">A masterpiece of literature</span>" </b> past           <span belongings="author" typeof="Person">             <span property="proper noun">John Doe</span></span>, written on           <meta property="datePublished" content="2006-05-04">May 4, 2006           <div property="reviewBody">I really enjoyed this book. It captures the essential challenge people face as they effort make sense of their lives and grow to adulthood.</div>           <span holding="publisher" typeof="System">             <meta property="proper name" content="Washington Times">           </span>           <span holding="reviewRating" typeof="Rating">             <span belongings="ratingValue">ane</span> -           </span>           <b>"<span property="proper name">The worst affair I've ever read</span>" </b> past           <span property="author" typeof="Person">             <bridge property="name">Jane Doe</span></span>, written on           <meta property="datePublished" content="2006-05-04">May 10, 2006           <div belongings="reviewBody">I really did not like this book.</div>           <span property="publisher" typeof="Arrangement">             <meta property="name" content="Washington Times">           </span>         </div>         <div rel="schema:aggregateRating">           <div typeof="schema:AggregateRating">             <div holding="schema:reviewCount" content="89"></div>             <div belongings="schema:ratingValue" content="4.4"></div>           </div>         </div>         <div rel="schema:offers">           <div typeof="schema:Offer">             <div property="schema:price" content="4.99"></div>             <div property="schema:availability" content="https://schema.org/InStock"></div>             <div property="schema:priceCurrency" content="USD"></div>             <div belongings="schema:priceValidUntil" datatype="xsd:engagement" content="2020-11-21"></div>             <div rel="schema:url" resource="https://instance.com/catcher"></div>             <div holding="schema:itemCondition" content="https://schema.org/UsedCondition"></div>           </div>         </div>     </div>   </torso> </html>

Microdata


                        <html>   <head>     <title>The Catcher in the Rye</title>   </head>   <trunk>     <div itemscope itemtype="https://schema.org/Product">       <div itemprop="make" itemtype="https://schema.org/Brand" itemscope>         <meta itemprop="name" content="Penguin" />       </div>       <meta itemprop="description" content="The Catcher in the Rye is a classic coming-of-age story: an story of teenage breach, capturing the human demand for connectedness and the bewildering sense of loss equally we exit childhood behind." />       <meta itemprop="sku" content="0446310786" />       <meta itemprop="mpn" content="925872" />       <img itemprop="image" src="https://case.com/photos/1x1/catcher-in-the-rye-book-cover.jpg" alt="Catcher in the Rye"/>       <span itemprop="proper name">The Catcher in the Rye</span>       <div itemprop="review" itemscope itemtype="https://schema.org/Review"> Reviews:         <span itemprop="reviewRating" itemscope itemtype="https://schema.org/Rating">           <span itemprop="ratingValue">5</span> -         </span>         <b>"<span itemprop="proper noun">A masterpiece of literature</span>" </b> by         <span itemprop="author" itemscope itemtype="https://schema.org/Person">           <span itemprop="proper name">John Doe</span></span>, written on         <meta itemprop="datePublished" content="2006-05-04">May 4, 2006         <div itemprop="reviewBody">I really enjoyed this book. Information technology captures the essential challenge people face up every bit they try brand sense of their lives and grow to adulthood.</div>         <bridge itemprop="publisher" itemscope itemtype="https://schema.org/System">             <meta itemprop="proper noun" content="Washington Times">         </span>         <span itemprop="reviewRating" itemscope itemtype="https://schema.org/Rating">             <bridge itemprop="ratingValue">i</span> -         </span>         <b>"<bridge itemprop="name">The worst thing I've ever read</span>" </b> by         <span itemprop="author" itemscope itemtype="https://schema.org/Person">           <span itemprop="proper name">Jane Doe</span></span>, written on         <meta itemprop="datePublished" content="2006-05-04">May 10, 2006         <div itemprop="reviewBody">I really did not like this volume.</div>         <span itemprop="publisher" itemscope itemtype="https://schema.org/Organization">           <meta itemprop="proper noun" content="Washington Times">         </span>       </div>       <div itemprop="aggregateRating" itemtype="https://schema.org/AggregateRating" itemscope>         <meta itemprop="reviewCount" content="89" />         <meta itemprop="ratingValue" content="iv.iv" />       </div>       <div itemprop="offers" itemtype="https://schema.org/Offer" itemscope>         <link itemprop="url" href="https://case.com/catcher" />         <meta itemprop="availability" content="https://schema.org/InStock" />         <meta itemprop="priceCurrency" content="USD" />         <meta itemprop="itemCondition" content="https://schema.org/UsedCondition" />         <meta itemprop="cost" content="4.99" />         <meta itemprop="priceValidUntil" content="2020-11-21" />       </div>     </div>   </torso> </html>

Aggregate rating

Here's an example of an amass rating.

JSON-LD


<html>   <caput>     <title>Legal Seafood</title>     <script type="application/ld+json">     {       "@context": "https://schema.org/",       "@blazon": "AggregateRating",       "itemReviewed": {         "@type": "Eatery",         "image": "http://www.example.com/seafood-eatery.jpg",         "proper noun": "Legal Seafood",         "servesCuisine": "Seafood",         "telephone": "1234567",         "address" : {           "@type": "PostalAddress",           "streetAddress": "123 William St",           "addressLocality": "New York",           "addressRegion": "NY",           "postalCode": "10038",           "addressCountry": "Us"         }       },       "ratingValue": "88",       "bestRating": "100",       "ratingCount": "20"     }     </script>   </head>   <torso>   </body> </html>

RDFa


                        <html>   <head>     <title>Legal Seafood</title>   </caput>   <body>     <div vocab="https://schema.org/" typeof="AggregateRating">       <div belongings="itemReviewed" typeof="Restaurant">         <img property="image" src="https://example.com/photos/1x1/seafood-restaurant.jpg" alt="Legal Seafood"/>         <span property="proper name">Legal Seafood</span>         <span property="servesCuisine">Seafood</span>         <span property="telephone">1234567</span>         <span holding="address">123 William St, New York</span>       </div>       <span belongings="ratingValue">four.2</span> out of <bridge property="bestRating">v</span> stars -       <span belongings="ratingCount">123</bridge> votes     </div>   </body> </html>

Microdata


                        <html>   <caput>     <title>Legal Seafood</title>   </head>   <torso>     <div itemscope itemtype="https://schema.org/AggregateRating">       <div itemprop="itemReviewed" itemscope itemtype="https://schema.org/Restaurant">         <img itemprop="prototype" src="https://instance.com/photos/1x1/seafood-restaurant.jpg" alt="Legal Seafood"/>         <span itemprop="proper name">Legal Seafood</span>         <bridge itemprop="servesCuisine">Seafood</span>         <span itemprop="telephone">1234567</span>         <bridge itemprop="address">123 William St, New York</span>       </div>       <bridge itemprop="ratingValue">four.2</span> out of <span itemprop="bestRating">five</span> stars -       <span itemprop="ratingCount">123</span> votes     </div>   </body> </html>

Nested aggregate rating

Here's an case of an aggregate rating that'southward nested in a Product. You can copy and paste the example to your own HTML folio.

JSON-LD


<html>   <head>   <championship>Executive Anvil</title>   <script blazon="application/ld+json">   {     "@context": "https://schema.org/",     "@type": "Product",     "proper noun": "Executive Anvil",     "image": [       "https://instance.com/photos/1x1/photo.jpg",       "https://example.com/photos/4x3/photo.jpg",       "https://example.com/photos/16x9/photo.jpg"      ],     "brand": {       "@type": "Brand",       "name": "ACME"     },     "aggregateRating": {       "@type": "AggregateRating",       "ratingValue": "4.iv",       "ratingCount": "89"     },     "offers": {       "@type": "AggregateOffer",       "lowPrice": "119.99",       "highPrice": "199.99",       "priceCurrency": "USD"     }   }   </script>   </caput>   <trunk>   </trunk> </html>

RDFa


                        <html>   <caput>     <title>Executive Anvil</championship>   </head>   <body>     <div vocab="https://schema.org/" typeof="Production">      <bridge holding="brand" typeof="Brand">Pinnacle</span> <span property="name">Executive Anvil</span>      <img property="image" src="https://example.com/photos/1x1/anvil_executive.jpg" alt="Executive Anvil logo" />      <span belongings="aggregateRating"            typeof="AggregateRating">       Average rating: <bridge property="ratingValue">4.iv</span>, based on       <bridge belongings="ratingCount">89</span> reviews      </span>      <span property="offers" typeof="AggregateOffer">       from $<span holding="lowPrice">119.99</span> to       $<span property="highPrice">199.99</span>       <meta property="priceCurrency" content="USD" />      </span>     </div>   </body> </html>

Microdata


                        <html>   <caput>     <title>Executive Anvil</title>   </caput>   <body>     <div itemscope itemtype="https://schema.org/Product">       <span itemprop="make" itemtype="https://schema.org/Brand" itemscope>Acme</span> <span itemprop="name">Executive Anvil</span>       <img itemprop="image" src="https://example.com/photos/1x1/anvil_executive.jpg" />       <span itemprop="aggregateRating" itemscope itemtype="https://schema.org/AggregateRating">         Average rating: <span itemprop="ratingValue">iv.4</span>, based on         <span itemprop="ratingCount">89</span> reviews       </span>       <span itemprop="offers" itemscope itemtype="https://schema.org/AggregateOffer">         from $<bridge itemprop="lowPrice">119.99</span> to         $<span itemprop="highPrice">199.99</span>         <meta itemprop="priceCurrency" content="USD" />       </span>     </div>   </body> </html>

Guidelines

Your content must follow these guidelines to be eligible to appear as a rich outcome.

  • Technical guidelines
  • Webmaster guidelines
  • Full general structured data guidelines

Technical guidelines

  • Make certain to marker up an amass evaluation of an item by many people with schema.org/AggregateRating. Google may display aggregate ratings equally rich snippets or, for sure types of items, answers in search results.
  • Refer clearly to a specific product or service by nesting the review within the markup of another schema.org blazon, such as schema.org/Volume or schema.org/Recipe, or by using a schema.org blazon every bit a value for the itemReviewed property.
  • Make certain the reviews and ratings y'all marker upwardly are readily available to users from the marked-up page. Information technology must be immediately obvious to users that the folio has review content.
  • Provide review information near a specific item, not about a category or a list of items.
  • If yous include multiple individual reviews, also include an amass rating of the individual reviews.
  • Don't aggregate reviews from other websites.
  • If the review snippet is for a local business or an organization, you must follow these additional guidelines:
    • Pages using LocalBusiness or whatsoever other type of Organization structured data are ineligible for star review feature if the entity being reviewed controls the reviews about itself. For case, a review about entity A is placed on the website of entity A, either directly in their structured information or through an embedded third-political party widget.
    • Ratings must be sourced direct from users.
    • Don't rely on human editors to create, curate, or compile ratings data for local businesses.

Structured information blazon definitions

You must include the required backdrop for your structured data to display in search results. You tin can also include the recommended backdrop to add together more information to your structured data, which could provide a meliorate user experience.

Review

The total definition of Review is bachelor at schema.org/Review.

Required backdrop
author

Person or Organization

The writer of the review. The reviewer's proper noun must exist a valid proper name. For case, "50% off until Sat" is non a valid name for a reviewer.

This field must exist shorter than 100 characters. If it'southward longer than 100 characters, your page won't be eligible for an author-based review snippet.

itemReviewed

One of the valid types

The item that is being reviewed. However, if the review is nested into another schema.org type using the review belongings, you lot tin omit the itemReviewed property.

The valid types for the reviewed detail are:

  • Book
  • Grade
  • CreativeWorkSeason
  • CreativeWorkSeries
  • Episode
  • Event
  • Game
  • HowTo
  • LocalBusiness
  • MediaObject
  • Motion picture
  • MusicPlaylist
  • MusicRecording
  • Organization
  • Product
  • Recipe
  • SoftwareApplication
itemReviewed.name

Text

The proper name of the item that is being reviewed. If the review is nested into another schema.org type using the review property, yous nonetheless need to provide the name of the thing that is being reviewed. For example:

{   "@context": "https://schema.org/",   "@type": "Game",                            "proper name": "Firefly",                            "review": {     "@type": "Review",     "reviewRating": {       "@type": "Rating",       "ratingValue": "5"     },     "writer": {       "@type": "Person",       "name": "John Doe"     },     "reviewBody": "I really enjoyed this game. You lot     get to capture fireflies and put them in jars."   } }
reviewRating

Rating

The rating given in this review. The rating can exist a nested Rating or more specific subtype. The well-nigh typical subtype is AggregateRating.

reviewRating.ratingValue

Number or Text

A numerical quality rating for the particular, either a number, fraction, or percent (for case, "4", "60%", or "6 / ten"). Google understands the scale for fractions and percentages, since the scale is unsaid in the fraction itself or the percentage. The default calibration for numbers is a 5-point calibration, where 1 is the lowest value and five is the highest value. If another scale is intended, use bestRating and worstRating.

Recommended backdrop
datePublished

Engagement

The date that the review was published, in ISO 8601 appointment format.

reviewRating.bestRating

Number

The highest value allowed in this rating system. If bestRating is omitted, 5 is assumed.

reviewRating.worstRating

Number

The lowest value allowed in this rating system. If worstRating is omitted, 1 is assumed.

AggregateRating

The full definition of AggregateRating is bachelor at schema.org/AggregateRating.

Required properties
itemReviewed

One of the valid types

The item that is being rated. Nevertheless, if the amass rating is nested into some other schema.org type using the aggregateRating holding, you can omit the itemReviewed property.

The valid types for the reviewed item are:

  • Book
  • Course
  • CreativeWorkSeason
  • CreativeWorkSeries
  • Episode
  • Event
  • Game
  • HowTo
  • LocalBusiness
  • MediaObject
  • Movie
  • MusicPlaylist
  • MusicRecording
  • System
  • Product
  • Recipe
  • SoftwareApplication
itemReviewed.proper noun

Text

The name of the detail that is beingness reviewed. If the review is nested into another schema.org blazon using the review holding, yous still need to provide the name of the matter that is beingness reviewed. For example:

{   "@context": "https://schema.org/",   "@type": "Game",                            "name": "Firefly",                            "aggregateRating": {     "@type": "AggregateRating",     "ratingValue": "88",     "bestRating": "100",     "ratingCount": "xx"   } }
ratingCount

Number

The total number of ratings for the item on your site. At to the lowest degree 1 of ratingCount or reviewCount is required.

reviewCount

Number

Specifies the number of people who provided a review with or without an accompanying rating. At least one of ratingCount or reviewCount is required.

ratingValue

Number or Text

A numerical quality rating for the particular, either a number, fraction, or per centum (for case, "4", "lx%", or "6 / x"). Google understands the scale for fractions and percentages, since the scale is unsaid in the fraction itself or the percentage. The default scale for numbers is a v-point scale, where 1 is the lowest value and 5 is the highest value. If some other scale is intended, apply bestRating and worstRating.

Recommended properties
bestRating

Number

The highest value allowed in this rating organization. If bestRating is omitted, five is assumed.

worstRating

Number

The everyman value immune in this rating organisation. If worstRating is omitted, 1 is causeless.

Monitor rich results with Search Panel

Search Panel is a tool that helps you monitor how your pages perform in Google Search. Y'all don't take to sign upwards for Search Console to exist included in Google Search results, but information technology tin assistance you lot understand and improve how Google sees your site. Nosotros recommend checking Search Console in the post-obit cases:

  1. Later on deploying structured data for the first fourth dimension
  2. Subsequently releasing new templates or updating your lawmaking
  3. Analyzing traffic periodically

After deploying structured data for the start fourth dimension

Later Google has indexed your pages, look for issues using the relevant Rich upshot status report. Ideally, there will be an increment of valid pages, and no increase in errors or warnings. If yous notice bug in your structured data:

  1. Fix the errors.
  2. Inspect a alive URL to cheque if the issue persists.
  3. Request validation using the status written report.

After releasing new templates or updating your code

When you make pregnant changes to your website, monitor for increases in structured data errors and warnings.

  • If you lot run across an increase in errors, peradventure you lot rolled out a new template that doesn't piece of work, or your site interacts with the existing template in a new and bad manner.
  • If you see a subtract in valid items (not matched past an increase in errors), perhaps you are no longer embedding structured data in your pages. Utilize the URL Inspection tool to learn what is causing the consequence.

Analyzing traffic periodically

Analyze your Google Search traffic using the Performance Written report. The data volition prove yous how oft your page appears as a rich result in Search, how ofttimes users click on it and what is the average position you announced on search results. You can also automatically pull these results with the Search Console API.

Troubleshooting

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

  • You might accept an error in your structured data. Cheque the list of structured information errors.
  • If you received a structured data manual activeness against your page, the structured data on the page will be ignored (although the folio can notwithstanding announced in Google Search results). To gear up structured data issues, use the Manual Deportment report.
  • Review the guidelines once again to identify if your content isn't compliant with the guidelines.
  • Troubleshoot missing rich results / driblet in full rich results.
  • For general questions about crawling and indexing, check the Google Search crawling and indexing FAQ.
  • Enquire a question in the Google Search Central office hours.
  • Post a question in the Google Search Central forum.