Pages with Product Snippet Structured Data Warnings
Priority: None
Impact: Neutral
What issues it may cause
Pages with Product Snippet warnings may display basic product information without visual elements like product images, brand names, or editorial pros and cons summaries that help users evaluate products more effectively.
How do you fix it
- Add product images to provide visual representation in search results
- Include brand, sku, and mpn for better product identification
- Add description for clearer product context
For editorial reviews, include positiveNotes and negativeNotes with at least two product statements each for pros and cons display
Follow Google's Product Snippet guidelines for complete recommendations
What is the positive impact
Adding recommended properties enables product reviews to display with images, brand information, and editorial pros and cons summaries in supported languages, helping users make informed decisions and improving engagement.
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
- Variables
- cURL
query GetReportStatForCrawl(
$crawlId: ObjectID!
$reportTemplateCode: String!
$after: String
) {
getReportStat(
input: {crawlId: $crawlId, reportTemplateCode: $reportTemplateCode}
) {
crawlStructuredDataBlocks(after: $after, reportType: Basic) {
nodes {
url
schemaType
issuesSummary
blockCount
errorCount
warningCount
validationResult
issues
}
totalCount
pageInfo {
endCursor
hasNextPage
}
}
}
}
{"crawlId":"TjAwNUNyYXdsNDAwMA","reportTemplateCode":"pages_with_product_schema_warnings"}
curl -X POST -H "Content-Type: application/json" -H "apollographql-client-name: docs-example-client" -H "apollographql-client-version: 1.0.0" -H "x-auth-token: YOUR_API_SESSION_TOKEN" --data '{"query":"query GetReportStatForCrawl( $crawlId: ObjectID! $reportTemplateCode: String! $after: String ) { getReportStat( input: {crawlId: $crawlId, reportTemplateCode: $reportTemplateCode} ) { crawlStructuredDataBlocks(after: $after, reportType: Basic) { nodes { url schemaType issuesSummary blockCount errorCount warningCount validationResult issues } totalCount pageInfo { endCursor hasNextPage } } } }","variables":{"crawlId":"TjAwNUNyYXdsNDAwMA","reportTemplateCode":"pages_with_product_schema_warnings"}}' https://api.lumar.io/graphql