Skip to main content

Pages with Article Structured Data Warnings

Priority: None

Impact: Neutral

What issues it may cause

Pages with Article warnings may display in search results without enhanced elements like author bylines, publication dates, or representative images, reducing visual appeal and user engagement compared to fully optimized articles.

How do you fix it

  • Add author information with name and URL to help Google identify content creators
  • Include datePublished and dateModified in ISO 8601 format for accurate publication date display
  • Add headline for better title text representation
  • Include high-resolution images in multiple aspect ratios (16x9, 4x3, 1x1) for visual enhancement

Follow Google's Article guidelines for complete recommendations

What is the positive impact

Adding recommended properties enables Google to display articles with complete information including author attribution, accurate publication dates, and representative images, improving click-through rates and user 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 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
}
}
}
}

Try in explorer