# Pages with Image Metadata Structured Data Errors **Priority**: Low **Impact**: Negative ## What issues it may cause Images schema errors reduce the likelihood of proper attribution when search engines reference your visual content in generated answers. ## How do you fix it Follow [Google's Image Metadata guidelines](https://developers.google.com/search/docs/appearance/structured-data/image-license-metadata) for complete requirements ## What is the positive impact Invalid image metadata may prevent search engines from properly attributing your visual content when referenced in search results. ## 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: ```graphql 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:** ```json {"crawlId":"TjAwNUNyYXdsNDAwMA","reportTemplateCode":"pages_with_image_metadata_schema_issues"} ```