Skip to main content

Pages with Organization Structured Data Warnings

Priority: None

Impact: Neutral

What issues it may cause

Pages with Organization warnings may display basic business information without additional details that help users learn about your organization.

How do you fix it

  • Add sameAs property with social media profile URLs for increased discoverability
  • For merchants, include hasMerchantReturnPolicy and hasShippingService
  • Add complete address information with all PostalAddress subproperties
  • Include telephone with country code and email for contact accessibility

Follow Google's Organization guidelines for complete recommendations

What is the positive impact

Adding recommended properties enriches knowledge panel displays with social media links, merchant policies, and complete contact information, making it easier for users to connect with your organization.

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