Expanding on the structured data angle:
Basic product schema (what you have):
{
"@type": "Product",
"name": "Running Shoe X",
"price": "129.99",
"availability": "InStock"
}
AI-optimized product schema:
{
"@type": "Product",
"name": "Marathon Pro Running Shoe",
"description": "Designed for marathon training...",
"brand": {"@type": "Brand", "name": "..."},
"aggregateRating": {...},
"additionalProperty": [
{"name": "Best For", "value": "Long-distance running, 20+ miles"},
{"name": "Heel Drop", "value": "8mm"},
{"name": "Weight", "value": "10.5oz"},
{"name": "Cushioning", "value": "Maximum - EVA foam midsole"},
{"name": "Ideal Runner Type", "value": "Neutral pronators"}
]
}
The additionalProperty field is key - it lets you add structured attributes AI can extract.
We saw 34% increase in AI citations after implementing detailed product schema.