# Pages with Q&A Structured Data Warnings
**Priority**: None
**Impact**: Neutral
## What issues it may cause
Pages with QAPage warnings may display basic Q&A formatting without author credentials, voting counts, or timestamps that help users evaluate answer quality and relevance.
## How do you fix it
- Add author information for questions and answers to show contributor credentials
- Include datePublished for timestamp context
- Add upvoteCount to display community voting information
- Include url property linking directly to each answer
Follow [Google's QAPage guidelines](https://developers.google.com/search/docs/appearance/structured-data/qapage) for
complete recommendations
## What is the positive impact
Adding recommended properties enhances Q&A displays with author information, voting statistics, and timestamps, helping users assess answer credibility and find the most relevant solutions.
## 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_qa_schema_warnings"}
```