Schema.org 結構化資料是讓 Google 「機器讀懂」你網站的標準格式。這 7 種是企業網站必裝——影響搜尋曝光、AI Overview 引用率與 Rich Results。
所有 Schema 類型定義以 schema.org 官方 為準;Google 對特定類型的支援見 Google Search Central Structured Data Gallery;驗證請用 Rich Results Test。
1. Organization Schema(必裝,全站)
告訴 Google 你公司是誰。放在首頁 / Layout 全站注入。
{
"@context": "https://schema.org",
"@type": "Organization",
"name": "甫東科技",
"url": "https://fulldot.com.tw",
"logo": "https://fulldot.com.tw/logo.svg",
"address": {...},
"contactPoint": [...],
"sameAs": ["facebook.com/...", "youtube.com/..."]
}
2. Person Schema(必裝,作者頁與每篇文章)
建立 E-E-A-T 的 Expertise 信號。
{
"@type": "Person",
"name": "範例|某資深 AI 講師",
"jobTitle": "AI 講師",
"image": "...",
"knowsAbout": ["AI 應用", "RAG", "SEO"],
"hasCredential": [
{"@type": "EducationalOccupationalCredential",
"name": "示意:請填入您實際取得的認證名稱"}
]
}
3. Service Schema(每個服務頁)
{
"@type": "Service",
"serviceType": "企業 AI 內訓",
"provider": {"@id": "...#organization"},
"areaServed": "Taiwan",
"offers": {
"@type": "AggregateOffer",
"lowPrice": "30000",
"highPrice": "400000",
"priceCurrency": "TWD"
}
}
4. Article Schema(每篇 Blog)
{
"@type": "Article",
"headline": "...",
"datePublished": "2026-05-01",
"dateModified": "2026-05-13",
"author": {"@id": "...#person"},
"publisher": {"@id": "...#organization"},
"image": ["..."],
"wordCount": 2500
}
5. FAQPage Schema(FAQ 區塊)
對 AI Overview 引用率有最大影響。
{
"@type": "FAQPage",
"mainEntity": [
{
"@type": "Question",
"name": "你的問題?",
"acceptedAnswer": {
"@type": "Answer",
"text": "完整答案。"
}
}
]
}
6. Review / AggregateRating(信任度)
{
"@type": "AggregateRating",
"ratingValue": "4.9",
"reviewCount": "47",
"bestRating": "5"
}
7. BreadcrumbList(每頁導航)
{
"@type": "BreadcrumbList",
"itemListElement": [
{"@type": "ListItem", "position": 1, "name": "首頁", "item": "..."},
{"@type": "ListItem", "position": 2, "name": "服務", "item": "..."}
]
}
進階 Schema(依產業)
- Course:教育課程
- Product:電商產品
- LocalBusiness:實體店面
- Event:活動、講座
- HowTo:步驟教學
- Recipe:食譜
- Medical*:醫療相關
實作建議
- 用 JSON-LD(最推薦,獨立 script 標籤)
- 放在 head 中
- 用 @id 互相連接(Organization、Person 等)
- 確保資料與頁面內容一致(不要 schema 寫一套、頁面顯示另一套)
檢測工具
- Google Rich Results Test:rich-results-test
- Schema Markup Validator:validator.schema.org
- Google Search Console:Rich Results 報告
常見錯誤
- 用過時的微資料(microdata)格式
- Schema 內容與頁面不一致
- FAQPage 用太多假問題堆砌
- Review 自評(不真實)
- 沒有 @id 互相連接