איקומרס

Product Schema מתקדם, Rich Results מלאים ב-SERP (2026)

Product Schema הוא המפתח לכוכבים ומחירים ב-SERP. הנה המדריך המתקדם, כולל variants, availability, reviews.

TL;DR: Product Schema יוצר Rich Results ב-SERP (price, rating, availability). Structure: Product + Offer + AggregateRating + Review. Advanced: ProductGroup for variants.

Basic Product Schema

{
  "@context": "https://schema.org",
  "@type": "Product",
  "name": "Product Name",
  "image": "https://example.com/image.jpg",
  "description": "...",
  "brand": {"@type": "Brand", "name": "Brand"},
  "offers": {
    "@type": "Offer",
    "price": "99.99",
    "priceCurrency": "ILS",
    "availability": "https://schema.org/InStock"
  }
}

Adding Reviews

"aggregateRating": {
  "@type": "AggregateRating",
  "ratingValue": "4.5",
  "reviewCount": "89"
},
"review": [
  {
    "@type": "Review",
    "author": {"@type": "Person", "name": "Yossi"},
    "reviewRating": {"@type": "Rating", "ratingValue": "5"},
    "reviewBody": "Excellent!"
  }
]

Variants (ProductGroup)

For products with variants (colors, sizes):

{
  "@type": "ProductGroup",
  "productGroupID": "master-id",
  "hasVariant": [
    {"@type": "Product", "sku": "red-M"...},
    {"@type": "Product", "sku": "blue-L"...}
  ]
}

Availability Values

  • InStock
  • OutOfStock
  • PreOrder
  • BackOrder
  • Discontinued
  • LimitedAvailability

Offer Details

  • validFrom, validThrough. for sales.
  • priceValidUntil. deals.
  • itemCondition. NewCondition, UsedCondition.
  • shippingDetails. shipping info.

Validation

Rich Results Test on Google. Check for:

  • Missing required fields.
  • Wrong data types.
  • Issues with variants.

Common Mistakes

  • Price mismatch between schema and page.
  • Review on generic page without reviews displayed.
  • Stale availability.
  • Missing brand.
שמוליק דורינבאום

רוצה עזרה ממוקדת ל-SEO באתר שלך?

אני שמוליק דורינבאום — יועץ SEO ב-20+ שנות ניסיון. אם המאמר הזה נתן לך כיוון ואתה רוצה ליישם על האתר שלך, יש לי קורס קידום אתרים חינמי מלא, או שאפשר לקפוץ לשיחת ייעוץ אישית.

שאלות נפוצות

Do I need reviews to show stars?
Yes. AggregateRating requires minimum reviewCount (typically 5-10).
Schema on category pages?
Use CollectionPage + ItemList, not Product directly.
Price as range?
Use lowPrice and highPrice instead of price. For variable pricing.
Schema + Shopify/WooCommerce?
Built-in basic. Advanced may need custom or plugin.
Rich Results testing free?
Yes, Google's Rich Results Test free and official.

יש לך שאלה על Product Schema?

שלחו הודעה — אחזור תוך 24 שעות עם תשובה ממוקדת.