Skip to main content

Pages with Image Metadata Structured Data Warnings

Priority: None

Impact: Neutral

What issues it may cause

Pages with Image Metadata warnings may display basic licensing information without acquisition page links or complete creator details that facilitate image licensing and proper attribution.

How do you fix it

  • Add acquireLicensePage with URL to licensing information page
  • Include complete creator information with creator.name
  • Add both creditText and copyrightNotice for comprehensive attribution

Follow Google's Image Metadata guidelines for complete recommendations

What is the positive impact

Adding recommended properties enables complete licensing displays with acquisition page links and full creator attribution, making it easier for users to license images and generating potential revenue.

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