How to add Product schema markup
Product schema is what turns a plain product listing into a search result with a price, star rating, and “In stock” badge — and it's what Google Merchant Center reads to validate your items.
Product schema is what turns a plain product listing into a search result with a price, star rating, and “In stock” badge — and it's what Google Merchant Center reads to validate your items.
Product schema is a block of JSON-LD structured data describing a product: its name, image, description, and an offer with price, currency, and availability. Google uses it for product rich results and to cross-check your Merchant Center feed.
The required fields are strict. Google needs at least a name and an offer (with price, priceCurrency, and availability) before it will show product rich results or accept the data for Shopping.
Product rich results — price, availability, and review stars right in the search result — take up more space and win more clicks than a plain listing. For anyone selling through Google Shopping, valid Product schema is also a prerequisite: Merchant Center flags items with missing or mismatched structured data.
Abby flags “Merchant Center” when product pages lack Product schema or are missing required fields (price, currency, availability). The fix is one well-formed JSON-LD block per product with all required properties.
Run Abby's free scan — it checks this and 25 other on-page, technical, and structured-data signals in about 60 seconds, no signup.
Scan my site freeAdd Product schema markup with required fields: name, image, description, offers (price, priceCurrency, availability). Use JSON-LD format. Verify with Google's Rich Results Test.
Before
<!-- Product page with no Product schema: no price / availability rich result -->
After
<script type="application/ld+json">
{
"@context": "https://schema.org",
"@type": "Product",
"name": "Handmade Blue Suede Shoes",
"image": "https://example.com/shoes.jpg",
"offers": {
"@type": "Offer",
"price": "129.00",
"priceCurrency": "USD",
"availability": "https://schema.org/InStock"
}
}
</script>
Most Shopify themes include Product schema. Ensure your products have images, prices, and descriptions filled in. Use the JSON-LD for SEO app for enhanced markup.
Install a schema plugin like Yoast WooCommerce SEO or Schema Pro. Ensure all products have: title, image, price, stock status, and description.
Install a Product Schema extension or add JSON-LD to your product template. Ensure all required Google Merchant Center fields are populated.
BigCommerce includes basic Product schema. Ensure products have complete details: title, images, price, availability, brand, and SKU.
Only applies if you sell physical products via Google Shopping. Skip entirely for non-commerce sites — adding Product schema to a service or content site is a misrepresentation that can trigger manual penalties.
Abby's free scan finds which of 26 checks your site fails. The $8.99 fix guide turns each one into a copy-ready fix for your exact pages — prioritized, with code — or bundle it with a security fix guide for $19.99.
Get my fix planAt minimum: name, and an offers block containing price, priceCurrency, and availability. Adding image, description, brand, sku, and aggregateRating (real reviews only) unlocks more of the rich result.
No — and you shouldn't add it. Product schema is for physical goods sold online. Applying it to a service or content page misrepresents the page and can trigger a manual penalty.
Often, but verify it. Many themes emit incomplete markup (missing availability or currency). Run a product URL through Google's Rich Results Test and fill any gaps in your product data.