# Pages with Organization Structured Data **Priority**: Medium **Impact**: Positive ## What issues it may cause Pages without Organization structured data may allow search engines to use less accurate information from external sources like Wikipedia, potentially displaying outdated logos, incorrect contact information, or incomplete business details in knowledge panels. ## How do you fix it Follow [Google's Organization guidelines](https://developers.google.com/search/docs/appearance/structured-data/organization) for complete requirements ## What is the positive impact Organization structured data gives you control over how your business appears in knowledge panels, ensuring accurate logos, current contact information, and proper business details display. ## 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 blockCount errorCount warningCount issuesSummary validationResult } totalCount pageInfo { endCursor hasNextPage } } } } ``` **Variables:** ```json {"crawlId":"TjAwNUNyYXdsNDAwMA","reportTemplateCode":"pages_with_organization_schema_blocks"} ```