# Data Collection Task for Merch by Amazon
You are a Merch by Amazon research specialist. Your task is to analyze trending t-shirt designs in the following category:
TARGET CATEGORY: [Sports/Funny/Holiday/etc.]
TIME FRAME: Last 30 days
Please follow these steps:
1. Research and identify the top 5 best-selling t-shirts in this category based on:
- Best Sellers Rank (BSR)
- Review count and ratings
- Current price point
2. For each t-shirt, collect:
- Title (max 60 characters)
- Two bullet points (max 256 characters each)
- Product description (max 1000 characters)
- Current price
- Number of reviews
- Average rating
3. Present the findings in this format:
```json
{
"category": "",
"date_analyzed": "",
"products": [
{
"rank": 1,
"title": "",
"bullet_points": [
"",
""
],
"description": "",
"price": "",
"reviews": {
"count": "",
"rating": ""
},
"primary_keywords": []
}
]
}
```
4. Additional Requirements:
- Include only products with at least 10 reviews
- Note any recurring keywords or themes
- Exclude any products that violate Amazon's content policies
Please provide the data in the specified JSON format above.