{
  "_comment": "Product Schema.org · 商品頁必貼 · 含 offers.url 讓 AI 能引導用戶到購買頁 · 範本 by twin3.ai",

  "@context": "https://schema.org",
  "@type": "Product",

  "name": "Product Name",
  "image": [
    "https://your-domain.com/img/product-main.jpg",
    "https://your-domain.com/img/product-detail.jpg"
  ],
  "description": "商品描述(40-160 字)",
  "sku": "SKU-12345",
  "mpn": "MPN-12345",
  "gtin13": "0123456789012",

  "brand": {
    "@type": "Brand",
    "name": "YOUR-BRAND"
  },

  "offers": {
    "@type": "Offer",
    "url": "https://your-domain.com/product/SKU-12345",
    "_comment_url": "★ 關鍵欄位 ★ — AI 引用商品時會把這個 URL 給用戶,直接帶到購買頁",
    "priceCurrency": "TWD",
    "price": "1299",
    "priceValidUntil": "2026-12-31",
    "availability": "https://schema.org/InStock",
    "itemCondition": "https://schema.org/NewCondition",
    "seller": {
      "@type": "Organization",
      "name": "YOUR-COMPANY-NAME"
    }
  },

  "aggregateRating": {
    "@type": "AggregateRating",
    "ratingValue": "4.6",
    "reviewCount": "127"
  },

  "review": [
    {
      "@type": "Review",
      "author": { "@type": "Person", "name": "顧客 A" },
      "datePublished": "2026-04-15",
      "reviewRating": { "@type": "Rating", "ratingValue": "5", "bestRating": "5" },
      "reviewBody": "短評論"
    }
  ]
}
