# Pages with Video Object Structured Data Errors **Priority**: Low **Impact**: Negative ## What issues it may cause Pages with Video errors have content that Google cannot properly interpret, preventing videos from appearing in video-specific search features. Invalid thumbnails or missing properties result in videos displaying with incomplete or inaccurate information. ## How do you fix it Follow [Google's Video guidelines](https://developers.google.com/search/docs/appearance/structured-data/video) for complete requirements ## What is the positive impact Fixing errors enables videos to appear in search results, Video mode, Google Images, and Google Discover with accurate thumbnails, titles, and duration that help users discover your video content. ## 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_video_object_schema_issues"} ```