Skip to main content

Invalid Product Structured Data Pages

All pages with invalid product structured data markup based on Google Search Developer documentation.

Priority: Medium

Impact: Negative

What issues it may causeโ€‹

Invalid Product structured data will not be used by search engines to generate a rich product result and they will instead rely on algorithms to correctly parse the required information to display rich snippets in the search engine results pages.

How do you fix itโ€‹

Product structured data must include a name and a review (review, aggregateRating or offers) properties to be eligible to display as a rich result. Other recommended properties can also be added to enrich your product page search results.

You can use tools like Rich Results Test to understand what's missing and can be potentially added.

What is the positive impactโ€‹

Valid product structure data can add a rich snippet in search results pages which should result in higher click-through-rates and more visits and conversions to your site.

How to fetch the data for this report templateโ€‹

You will need to run a crawl for report template to generate report. When report has been generated and you have crawl id you can fetch data for the report using the following query:

query GetReportForCrawl($crawlId: ObjectID!, $reportTemplateCode: String!) {
getCrawl(id: $crawlId) {
reportsByCode(
input: {
reportTypeCodes: Basic
reportTemplateCodes: [$reportTemplateCode]
}
) {
rows {
nodes {
... on CrawlUrls {
pageTitle
url
foundAtUrl
canonicalUrl
noindex
deeprank
level
indexable
productSchemaCount
productSchemaValid
productPriceSchemaValue
productRatingSchemaValue
productAvailabilitySchemaValue
productBrandSchemaValue
productSkuSchemaValue
foundInGoogleAnalytics
foundInGoogleSearchConsole
foundInBacklinks
foundInList
foundInLogSummary
foundInWebCrawl
foundInSitemap
}
}
}
}
}
}

Try in explorer