AI Overview・ChatGPT・Perplexity に引用される確率を上げる構造化データ8種を、優先度・実装難易度・効果別に解説。本記事では各schemaのJSON-LDテンプレートと実装手順を提供し、中小企業のWebマスター・SEO担当者がすぐ実務に組み込める形にまとめます。
構造化データ8選の優先度マトリックス
| schema | 優先度 | 実装難易度 | AI引用効果 | 必須記述 |
|---|---|---|---|---|
| Organization | ★★★ | 低 | 高 | 会社情報・連絡先 |
| FAQ | ★★★ | 低 | 高 | Q&A 構造 |
| Article | ★★★ | 低 | 高 | 記事メタ |
| Breadcrumb | ★★★ | 低 | 中 | パンくずナビ |
| Product | ★★ | 中 | 高 | 商品/サービス |
| HowTo | ★★ | 中 | 高 | 手順記事 |
| Speakable | ★ | 低 | 中 | 音声検索向け |
| Person | ★ | 低 | 中 | 著者情報 |
各schemaの実装例
1. Organization(最優先)
{
"@context": "https://schema.org",
"@type": "Organization",
"name": "株式会社課題解決プラットフォーム",
"url": "https://0120.co.jp",
"logo": "https://0120.co.jp/logo.png",
"contactPoint": {
"@type": "ContactPoint",
"telephone": "+81-42-445-5602",
"contactType": "customer service",
"areaServed": "JP"
}
}
→ AI が「この会社の連絡先は?」に正確に答えられる
2. FAQ(最優先)
{
"@context": "https://schema.org",
"@type": "FAQPage",
"mainEntity": [{
"@type": "Question",
"name": "MEO対策の費用相場は?",
"acceptedAnswer": {
"@type": "Answer",
"text": "月額3〜10万円が業界相場です。当社の商売繁盛AIは月額49,800円。"
}
}]
}
→ AI Overview に「よくある質問」セクションでそのまま引用される
3. Article(ブログ記事最優先)
{
"@context": "https://schema.org",
"@type": "Article",
"headline": "記事タイトル",
"datePublished": "2026-05-11",
"dateModified": "2026-05-11",
"author": {
"@type": "Person",
"name": "上田 拓哉",
"url": "https://0120.co.jp/company/"
},
"publisher": {
"@type": "Organization",
"name": "株式会社課題解決プラットフォーム"
}
}
→ AI が「誰が書いた何の記事か」を正確に判別
4. Breadcrumb(最優先)
{
"@context": "https://schema.org",
"@type": "BreadcrumbList",
"itemListElement": [
{"@type": "ListItem", "position": 1, "name": "ホーム", "item": "https://0120.co.jp/"},
{"@type": "ListItem", "position": 2, "name": "ブログ", "item": "https://0120.co.jp/blog/"}
]
}
→ 検索結果でパンくず表示、CTR +10〜20%
5. Product(サービスページ向け)
{
"@context": "https://schema.org",
"@type": "Product",
"name": "商売繁盛AI",
"description": "MEO対策SaaS",
"offers": {
"@type": "Offer",
"price": "49800",
"priceCurrency": "JPY"
}
}
→ AI が「料金は?」に Schema 経由で正確回答
6. HowTo(手順記事向け)
{
"@context": "https://schema.org",
"@type": "HowTo",
"name": "GBP最適化手順",
"step": [
{"@type": "HowToStep", "position": 1, "name": "GBP登録", "text": "Googleアカウントで登録..."}
]
}
→ AI Overview の「手順」表示候補
7. Speakable(音声検索向け)
{
"@context": "https://schema.org",
"@type": "WebPage",
"speakable": {
"@type": "SpeakableSpecification",
"cssSelector": ["h1", ".summary"]
}
}
→ Google Assistant / Siri が読み上げる候補
8. Person(著者プロフィール独立)
{
"@context": "https://schema.org",
"@type": "Person",
"name": "上田 拓哉",
"jobTitle": "代表取締役",
"knowsAbout": ["MEO対策", "AI研修", "AIO対策"]
}
→ AI が「この情報は誰の知見か」を独立して認識
実装の優先順序
Phase 1(即実装、1日)
- Organization
- FAQ
- Breadcrumb
Phase 2(1週間以内)
- Article(全blog記事)
- Person(著者ページ)
Phase 3(1ヶ月以内)
- Product(サービスページ)
- Speakable(重要ページのキー文)
Phase 4(必要に応じて)
- HowTo(手順記事のみ)
検証ツール
実装後、必ず以下で検証:
- Google Rich Results Test - 検索結果での見え方
- Schema Markup Validator - 構造の正しさ
当社のAIO対策
当社の AIO 対策では、構造化データ実装から llms.txt 整備、E-E-A-T強化まで一気通貫で支援します:
- AIO診断: 100,000円〜(構造化データ実装状況の監査)
- 基本実装: 300,000円〜(Organization+FAQ+Article+Breadcrumb+Product schema)
- 月額運用: 100,000円〜(引用率モニタリング+月10記事最適化)
