Product Schema for E-commerce
Visibility Strategy
The absolute bedrock of e-commerce SEO. Properly implemented Product schema allows search engines and AI to understand product attributes, pricing, availability, and customer sentiment, directly influencing rich result inclusion (like carousel listings and star ratings) and AI-driven product recommendations.
Implementing this Product Schema for E-commerce schema typically triggers star ratings and rich snippets in SERPs.
JSON-LD Template
{
"@context": "https://schema.org",
"@type": "Product",
"name": "[Product Name]",
"description": "[Detailed Product Description focusing on benefits and features]",
"sku": "[SKU Number]",
"mpn": "[Manufacturer Part Number]",
"brand": {
"@type": "Brand",
"name": "[Brand Name]"
},
"offers": {
"@type": "Offer",
"priceCurrency": "USD",
"price": "[Product Price]",
"itemCondition": "https://schema.org/NewCondition",
"availability": "https://schema.org/InStock",
"seller": {
"@type": "Organization",
"name": "[Your E-commerce Store Name]"
}
},
"aggregateRating": {
"@type": "AggregateRating",
"ratingValue": "[Average Rating]",
"reviewCount": "[Total Number of Reviews]"
},
"review": [{
"@type": "Review",
"author": "[Reviewer Name]",
"datePublished": "[Date of Review]",
"reviewBody": "[Snippet of Review]",
"reviewRating": {
"@type": "Rating",
"ratingValue": "[Individual Rating]"
}
}]
}OfferCatalog Schema for PLPs
Visibility Strategy
Crucial for Category/PLP optimization. This markup tells search engines about the collection of products on a page, enabling them to understand category breadth and product relationships. Essential for programmatic SEO to scale category pages and improve crawlability for AI.
Implementing this OfferCatalog Schema for PLPs schema typically triggers star ratings and rich snippets in SERPs.
JSON-LD Template
{
"@context": "https://schema.org",
"@type": "OfferCatalog",
"name": "[Category Name] Products",
"description": "Browse our collection of [Product Type]",
"itemListElement": [{
"@type": "Product",
"name": "[Product Name 1]",
"url": "[Product URL 1]",
"offers": {
"@type": "Offer",
"priceCurrency": "USD",
"price": "[Price 1]"
}
}, {
"@type": "Product",
"name": "[Product Name 2]",
"url": "[Product URL 2]",
"offers": {
"@type": "Offer",
"priceCurrency": "USD",
"price": "[Price 2]"
}
}]
}FAQPage Schema for Product FAQs
Visibility Strategy
Dominates 'Answer Engine' snapshots for product-specific queries. Mark up common customer questions (shipping, returns, specifications, compatibility) directly on PDPs and category pages to become the definitive source for AI answer generation.
Implementing this FAQPage Schema for Product FAQs schema typically triggers star ratings and rich snippets in SERPs.
JSON-LD Template
{
"@context": "https://schema.org",
"@type": "FAQPage",
"mainEntity": [{
"@type": "Question",
"name": "What are the dimensions of the [Product Name]?",
"acceptedAnswer": {
"@type": "Answer",
"text": "The [Product Name] measures [Length] x [Width] x [Height]."
}
}, {
"@type": "Question",
"name": "What is the warranty for [Product Name]?",
"acceptedAnswer": {
"@type": "Answer",
"text": "This product comes with a [Warranty Period] warranty against manufacturing defects."
}
}]
}BreadcrumbList Schema for Navigation
Visibility Strategy
Essential for site architecture and user navigation, directly impacting how AI models understand content hierarchy. Crucial for large e-commerce sites to map product relationships and category pathways, improving crawlability and topical relevance for LLMs.
Implementing this BreadcrumbList Schema for Navigation schema typically triggers star ratings and rich snippets in SERPs.
JSON-LD Template
{
"@context": "https://schema.org",
"@type": "BreadcrumbList",
"itemListElement": [{
"@type": "ListItem",
"position": 1,
"name": "Home",
"item": "https://yourstore.com/"
}, {
"@type": "ListItem",
"position": 2,
"name": "[Category Name]",
"item": "https://yourstore.com/category"
}, {
"@type": "ListItem",
"position": 3,
"name": "[Subcategory Name]",
"item": "https://yourstore.com/category/subcategory"
}]
}AggregateRating for Product Reviews
Visibility Strategy
Leverages social proof for SERP dominance. Displays star ratings prominently, significantly boosting CTR. AI systems heavily weigh products with high ratings when generating 'best product' or 'top rated' recommendations, directly impacting purchase decisions.
Implementing this AggregateRating for Product Reviews schema typically triggers star ratings and rich snippets in SERPs.
JSON-LD Template
{
"@context": "https://schema.org",
"@type": "Product",
"name": "[Product Name]",
"aggregateRating": {
"@type": "AggregateRating",
"ratingValue": "4.7",
"reviewCount": "1500",
"bestRating": "5"
}
}

Generate valid structured data for all your Ecommerce pages with Airticler.
Join 2,000+ teams scaling with AI.
HowTo Schema for Assembly/Usage
Visibility Strategy
Optimizes product pages for voice search and AI assistants. Enabling AI to read out assembly instructions, usage guides, or troubleshooting steps directly from your PDPs can capture high-intent voice queries.
Implementing this HowTo Schema for Assembly/Usage schema typically triggers star ratings and rich snippets in SERPs.
JSON-LD Template
{
"@context": "https://schema.org",
"@type": "HowTo",
"name": "How to assemble the [Product Name]",
"step": [{
"@type": "HowToStep",
"text": "Step 1: Unpack all components and verify against the parts list.",
"url": "https://yourstore.com/product/assembly#step1"
}, {
"@type": "HowToStep",
"text": "Step 2: Attach the [Part A] to the [Part B] using the provided screws.",
"url": "https://yourstore.com/product/assembly#step2"
}]
}Article Schema for Buying Guides
Visibility Strategy
Establishes E-E-A-T for your content. Clearly defining authors and publishers on buying guides, comparison articles, and blog posts signals authority to AI, crucial for ranking high in informational and transactional search queries.
Implementing this Article Schema for Buying Guides schema typically triggers star ratings and rich snippets in SERPs.
JSON-LD Template
{
"@context": "https://schema.org",
"@type": "Article",
"headline": "The Ultimate Guide to Choosing [Product Type]",
"author": {
"@type": "Person",
"name": "[Expert Name]",
"jobTitle": "E-commerce Specialist at [Your Store Name]",
"sameAs": ["[Author LinkedIn URL]"]
},
"publisher": {
"@type": "Organization",
"name": "[Your E-commerce Store Name]",
"logo": {
"@type": "ImageObject",
"url": "[Your Logo URL]"
}
}
}CollectionPage Schema for Product Sets
Visibility Strategy
Ideal for 'Shop the Look' or curated product bundles. This schema type helps AI understand thematic groupings of products, facilitating discovery and cross-selling opportunities beyond individual product listings.
Implementing this CollectionPage Schema for Product Sets schema typically triggers star ratings and rich snippets in SERPs.
JSON-LD Template
{
"@context": "https://schema.org",
"@type": "CollectionPage",
"name": "[Product Collection Name]",
"description": "Discover our curated selection of [Product Type] for [Specific Use Case]",
"about": {
"@type": "ProductGroup",
"name": "[Product Group Name]"
}
}Organization Schema for Brand Identity
Visibility Strategy
Builds brand authority and trust. Defines your e-commerce entity for Google Knowledge Panels and AI assistants. Essential for branded search queries and establishing a consistent brand presence across AI-driven search experiences.
Implementing this Organization Schema for Brand Identity schema typically triggers star ratings and rich snippets in SERPs.
JSON-LD Template
{
"@context": "https://schema.org",
"@type": "Organization",
"name": "[Your E-commerce Store Name]",
"url": "https://yourstore.com",
"logo": "https://yourstore.com/logo.png",
"contactPoint": {
"@type": "ContactPoint",
"telephone": "[Your Phone Number]",
"contactType": "Customer Service"
},
"sameAs": [
"https://www.facebook.com/yourstore",
"https://www.instagram.com/yourstore"
]
}Speakable Property for Key Info
Visibility Strategy
Enhances voice search performance by identifying key content elements (like product titles, descriptions, shipping details) on PDPs that AI assistants should prioritize when answering spoken queries about your products.
Implementing this Speakable Property for Key Info schema typically triggers star ratings and rich snippets in SERPs.
JSON-LD Template
{
"@context": "https://schema.org",
"@type": "WebPage",
"speakable": {
"@type": "SpeakableSpecification",
"xpath": ["//h1[@itemprop='name']", "//div[@class='product-description']//p[1]", "//section[@id='shipping-info']//p"]
}
}