jsonld@web
jsonld@web:/product$  cat ./product.jsonld
rich results · passed @type · example

> Product Schema JSON-LD -- Examples and Generator for Rich Results

Copy validated Product schema JSON-LD with offers, ratings, and reviews. Real examples pulled from Google's docs, Shopify, and live storefronts.

published
modified
size
2.3K
path
/product/

Last updated April 18, 2026 by Patrick Coombe

This was one of the first types of structured data that really popularized structured data within the search / SEO community. This is also the easiest way to enable "rich snippets" sometimes referred to as "star ratings" in the SERPs. Google has not only documented this type extensively but it is one of the few types they've done a video on as well.

As of July 2025 I recently came across this beautiful code snippet (actually part of a plugin by Damien Carbery. This will basically grab the info from WooCommerce and use a PHP function to parse and fill in the blanks inside JSON-LD. Very cool!

product.jsonld · 457B test
{
  "@context" : "http://schema.org",
  "@type" : "Product",
  "name" : "<?php echo $product->get_name(); ?>",
  "image" : "<?php echo get_the_post_thumbnail_url( $product->get_id(), 'full' ); ?>",
  "description" : "<?php echo $product->get_short_description(); ?>",
  "brand" : {
    "@type" : "Brand",
    "name" : "<?php echo $product->get_name(); ?>"
  },
  "offers" : {
    "@type" : "Offer",
    "price" : "<?php echo $product->get_price(); ?>"
  }
}

product.jsonld · 457B test
{
  "@context" : "http://schema.org",
  "@type" : "Product",
  "name" : "<?php echo $product->get_name(); ?>",
  "image" : "<?php echo get_the_post_thumbnail_url( $product->get_id(), 'full' ); ?>",
  "description" : "<?php echo $product->get_short_description(); ?>",
  "brand" : {
    "@type" : "Brand",
    "name" : "<?php echo $product->get_name(); ?>"
  },
  "offers" : {
    "@type" : "Offer",
    "price" : "<?php echo $product->get_price(); ?>"
  }
}

I've been looking for a nice example of some JSON-LD found in the wild on a Shopify site and finally found a few. Note that Shopify normally embeds JSON-LD in the footer:

product.jsonld · 2.8K test
  {
    "@context": "http://schema.org",
    "@type": "Product",
    "offers": [{
          "@type": "Offer",
          "name": "Default Title",
          "availability":"https://schema.org/InStock",
          "price": 266.0,
          "priceCurrency": "USD",
          "priceValidUntil": "2024-03-31","url": "/products/3-step-brightening-system?variant=43098868056293"
        }
],
    "brand": {
      "name": "Cyspera"
    },
    "name": "3 Step Brightening System",
    "description": " Scientis, an emerging leader in the science of skin discoloration, announces the launch of Cyspera® Intensive System™, a new three-product system clinically proven to improve hyperpigmentation such as persistent brown patches and dark spots. Sold at hundreds of dermatologist offices nationwide without a prescription, this novel pigment corrector is the next breakthrough in the fight against stubborn hyperpigmentation.\nThe three-product system includes:\nCyspera® Intensive™: features Cysteamine Isobionic-Amid Complex™ that delivers a powerful antioxidant activity to improve the appearance of persistent brown patches and dark spots. This product features a dual chamber technology to keep the cysteamine and AHA separate until skin application. Once applied, the immediate reaction of Isobionic-Amide with AHA leads to instant pigment lightening in the corneal layer.\nCyspera® Neutralize™: features AHA-Amino Acid Complex which neutralizes the smell of cysteamine and re-balances the epidermis before application of Cyspera® Boost™. The L-Arginine Complex stops the Isobionic-Amid Complex™ AHA reaction, and the mild-surfactant gently removes lingering residue, while helping soothe skin and promoting healthy skin barrier. The Lactobionic Acid prepares the skin for Cyspera® Boost™ by neutralizing and balancing the skin's pH.\nCyspera® Boost™: features Isobionic-Amide Complex™ which works synergistically with Cyspera® Intensive™ to even skin tone, improve complexion and deliver a natural and healthy glow. The Isobionic-Amide acts as a multiplier for the efficacy of cysteamine which inhibits multiple steps in the melanogenesis in the skin. The retinol and an anti-oxidative complex provide a visual pigment correction effect by increasing non-pigmented skin layers and shedding. Lastly, the combination of Isobionic-Amide with retinol provides an anti-inflammatory effect to the skin after application of Cyspera® Intensive™.",
    "category": "Hyperpigmentation",
    "url": "/products/3-step-brightening-system",
    "sku": "",
    "image": {
      "@type": "ImageObject",
      "url": "https://shop.drherschthal.com/cdn/shop/products/cycpera_1024x.jpg?v=1657055636",
      "image": "https://shop.drherschthal.com/cdn/shop/products/cycpera_1024x.jpg?v=1657055636",
      "name": "3 Step Brightening System",
      "width": "1024",
      "height": "1024"
    }
  }

…and here is another one from a Shopify Product

product.jsonld · 1.3K test
{
          "@context": "http://schema.org",
          "@type": "Product",
          "offers": {
              "@type": "Offer",
              "availability": "//schema.org/InStock",
              "price": "825.00",
              "priceCurrency": "USD"
          },
          "brand": "everettfinejewelry",
          "name": "Large Aster Band",
          "description": "\nFrom the Celestial Creatures Collection\nGentle Curved Cluster of Diamonds\nFit Perfectly with a Range of Engagement Ring Shapes\nMade with Solid 14-Karat Yellow, Rose, or White Gold\n0.24 Carat Total Weight of F Color VS Clarity White Diamonds\nDiamond Sizes Vary from 2.5mm to 1.6mm\n1.5mm Round Band \nMade with Ethically Sourced Diamonds \u0026amp; Recycled Gold\nMade to Order, Allow 3-4 Weeks for Delivery\n",
          "category": "Ring",
          "url": "https://everettfinejewelry.com/products/large-aster-cluster-band",
          "image": {
              "@type": "ImageObject",
              "url": "https://everettfinejewelry.com/cdn/shop/products/Everett_large-aster-band-front_1024x1024.jpg?v=1566411092",
              "image": "https://everettfinejewelry.com/cdn/shop/products/Everett_large-aster-band-front_1024x1024.jpg?v=1566411092",
              "name": "Large Aster Band",
              "width": 1024,
              "height": 1024
          }
      }

…and another Shopify Product

product.jsonld · 1.8K test
  {
    "@context": "http://schema.org",
    "@type": "Product",
    "offers": [{
          "@type" : "Offer","availability" : "http://schema.org/InStock",
          "price" : 12.0,
          "priceCurrency" : "USD",
          "priceValidUntil": "2024-03-31",
          "url" : "https:\/\/www.terrebleu.ca\/products\/folgate-lavender-oil?variant=40321722253335"
        },
{
          "@type" : "Offer","availability" : "http://schema.org/InStock",
          "price" : 26.0,
          "priceCurrency" : "USD",
          "priceValidUntil": "2024-03-31",
          "url" : "https:\/\/www.terrebleu.ca\/products\/folgate-lavender-oil?variant=40321722286103"
        }
],
    "brand": "Terre Bleu",
    "sku": "",
    "name": "Folgate - English Lavender Essential Oil",
    "description": "\nFolgate is part of the English variety with violet\/blue flowers. This has a sweet and woody fragrance.\nOur premium essential oil is organically grown and hand-harvested on our farm. This 100% pure oil captures the beautiful fragrance of our flowers and all of their beneficial properties. The calming, antiseptic, antibacterial and stress relieving properties of our oil provide for countless uses.\nUses: Dilute with carrier oil to apply to skin, add drops to diffuser, shampoos, bath, etc.\n100% pure essential oils are highly concentrated and should be used with care. ",
    "category": "",
    "url": "https://www.terrebleu.ca/products/folgate-lavender-oil","image": {
      "@type": "ImageObject",
      "url": "https://www.terrebleu.ca/cdn/shop/products/english_bottle_1024x1024.jpg?v=1664384964",
      "image": "https://www.terrebleu.ca/cdn/shop/products/english_bottle_1024x1024.jpg?v=1664384964",
      "name": "Folgate - English Lavender Essential Oil",
      "width": 1024,
      "height": 1024
    }
  }

Here are a few more from pre-2023

product.jsonld · 412B test
{
  "@context": "https://www.schema.org",
  "@type": "product",
  "brand": "Acme",
  "logo": "http://www.example.com/logo.png",
  "name": "WidgetPress",
  "category": "Widgets",
  "image": "http://www.example.com/image.jpg",
  "description": "This is an excellent widget with 21 features and 4 colors.",
  "aggregateRating": {
    "@type": "aggregateRating",
    "ratingValue": "5",
    "reviewCount": "21"
  }
}

This example taken directly from Google's documentation.

product.jsonld · 813B test
{
  "@context": "https://schema.org/",
  "@type": "Product",
  "name": "Executive Anvil",
  "image": "http://www.example.com/anvil_executive.jpg",
  "description": "Sleeker than ACME's Classic Anvil, the Executive Anvil is perfect for the business traveler looking for something to drop from a height.",
  "mpn": "925872",
  "brand": {
    "@type": "Thing",
    "name": "ACME"
  },
  "aggregateRating": {
    "@type": "AggregateRating",
    "ratingValue": "4.4",
    "reviewCount": "89"
  },
  "offers": {
    "@type": "Offer",
    "priceCurrency": "USD",
    "price": "119.99",
    "priceValidUntil": "2020-11-05",
    "itemCondition": "http://schema.org/UsedCondition",
    "availability": "http://schema.org/InStock",
    "seller": {
      "@type": "Organization",
      "name": "Executive Objects"
    }
  }
}

Results

When executed properly, Google will give you a nice "rich snippet" in the search results.

json-ld rich snippet product

Generate Product JSON-LD

Need Product schema fast? Our free Product schema generator supports Product markup including offers, availability, aggregate ratings, and embedded reviews -- no coding required.