Copy // FAQ Schema(常見問答標記)
// 增強搜尋結果,讓使用者在搜尋頁面看到展開的問答,增加點擊率。
<script type="application/ld+json">
{
"@context": "https://schema.org",
"@type": "FAQPage",
"mainEntity": [
{
"@type": "Question",
"name": "如何購買腳踏車?",
"acceptedAnswer": {
"@type": "Answer",
"text": "您可以瀏覽我們的腳踏車專區,選擇適合的商品,並完成下單。"
}
},
{
"@type": "Question",
"name": "有提供免費配送嗎?",
"acceptedAnswer": {
"@type": "Answer",
"text": "是的,所有商品訂單滿 2000 元皆可享受免費配送服務。"
}
}
]
}
</script>
// Product Schema(商品結構化資料)
// 在搜尋結果中顯示價格、評分等商品資訊。
<script type="application/ld+json">
{
"@context": "https://schema.org/",
"@type": "Product",
"name": "高性能腳踏車",
"image": "https://example.com/bike.jpg",
"description": "這款腳踏車適合城市和山地使用,耐用且輕便。",
"brand": {
"@type": "Brand",
"name": "BikeBrand"
},
"offers": {
"@type": "Offer",
"url": "https://example.com/bike",
"priceCurrency": "TWD",
"price": "12000",
"availability": "https://schema.org/InStock"
}
}
</script>
// Review Schema(評論結構化資料)
// 顯示平均評分,提升點擊吸引力。
<script type="application/ld+json">
{
"@context": "https://schema.org/",
"@type": "AggregateRating",
"ratingValue": "4.5",
"reviewCount": "120",
"bestRating": "5",
"worstRating": "1"
}
</script>
// Event Schema(活動結構化資料)
// 將線上或線下活動直接顯示於搜尋結果。
<script type="application/ld+json">
{
"@context": "https://schema.org",
"@type": "Event",
"name": "2024 脚踏车展览",
"startDate": "2024-05-01T10:00",
"endDate": "2024-05-05T18:00",
"location": {
"@type": "Place",
"name": "台北世貿中心",
"address": "台北市信義區信義路5段5號"
},
"image": "https://example.com/event.jpg",
"description": "年度脚踏车展览,展示最新骑行科技与趋势。",
"offers": {
"@type": "Offer",
"price": "500",
"priceCurrency": "TWD",
"availability": "https://schema.org/InStock"
}
}
</script>
// 使用 Article 結構化資料新公告
// 適用於一般的文章或公告,例如部落格文章、公司更新或最新消息。
<script type="application/ld+json">
{
"@context": "https://schema.org",
"@type": "Article",
"headline": "2024 年最新產品發布公告",
"author": {
"@type": "Person",
"name": "John Doe"
},
"publisher": {
"@type": "Organization",
"name": "My Company",
"logo": {
"@type": "ImageObject",
"url": "https://example.com/logo.png"
}
},
"datePublished": "2024-12-04",
"dateModified": "2024-12-04",
"description": "我們很高興宣布 2024 年的新產品線,包括創新的腳踏車和相關配件。",
"mainEntityOfPage": {
"@type": "WebPage",
"@id": "https://example.com/latest-news"
}
}
</script>
// 使用 NewsArticle 結構化資料
// 若最新消息屬於新聞類型(如重大公告或新聞稿),可使用更適合新聞內容的 NewsArticle 類型。
<script type="application/ld+json">
{
"@context": "https://schema.org",
"@type": "NewsArticle",
"headline": "公司宣布新產品發布會日期",
"image": [
"https://example.com/news-image1.jpg",
"https://example.com/news-image2.jpg"
],
"datePublished": "2024-12-04T08:00:00+08:00",
"dateModified": "2024-12-04T08:30:00+08:00",
"author": {
"@type": "Person",
"name": "Jane Smith"
},
"publisher": {
"@type": "Organization",
"name": "My Company",
"logo": {
"@type": "ImageObject",
"url": "https://example.com/logo.png"
}
},
"description": "我們將於 2024 年 12 月 10 日舉行年度產品發布會,邀請媒體與合作夥伴共同參與。",
"mainEntityOfPage": {
"@type": "WebPage",
"@id": "https://example.com/announcement"
}
}
</script>
// 使用 BlogPosting 結構化資料
// 如果最新消息是以部落格形式發佈的,可使用 BlogPosting 類型。
<script type="application/ld+json">
{
"@context": "https://schema.org",
"@type": "BlogPosting",
"headline": "企業 2024 年的目標與計劃",
"author": {
"@type": "Person",
"name": "Marketing Team"
},
"publisher": {
"@type": "Organization",
"name": "My Blog",
"logo": {
"@type": "ImageObject",
"url": "https://example.com/logo.png"
}
},
"datePublished": "2024-12-01",
"dateModified": "2024-12-03",
"description": "探索我們在 2024 年將如何提升產品和服務,為客戶提供更多價值。",
"mainEntityOfPage": {
"@type": "WebPage",
"@id": "https://example.com/blog/2024-plans"
}
}
</script>
// 針對即時新聞:LiveBlogPosting
// 如果最新消息需要持續更新(例如重大活動的即時報導),可以使用 LiveBlogPosting。
<script type="application/ld+json">
{
"@context": "https://schema.org",
"@type": "LiveBlogPosting",
"headline": "2024 年產品發佈會即時更新",
"coverageStartTime": "2024-12-10T10:00:00+08:00",
"coverageEndTime": "2024-12-10T12:00:00+08:00",
"author": {
"@type": "Person",
"name": "John Reporter"
},
"publisher": {
"@type": "Organization",
"name": "My News Platform",
"logo": {
"@type": "ImageObject",
"url": "https://example.com/logo.png"
}
},
"liveBlogUpdate": [
{
"@type": "BlogPosting",
"headline": "開始登場!",
"articleBody": "活動剛剛開始,CEO 發表了精彩的開場演講。",
"datePublished": "2024-12-10T10:05:00+08:00"
},
{
"@type": "BlogPosting",
"headline": "第一款產品亮相",
"articleBody": "新款腳踏車 'SpeedMaster' 正式發布,適合城市與山地使用。",
"datePublished": "2024-12-10T10:20:00+08:00"
}
]
}
</script>