🏷️ 结构化数据
🏷️ 结构化数据(JSON-LD)是GEO优化的核心要素。AI引擎通过结构化数据快速理解网站内容,大幅提高引用概率。建议每个页面至少配置Organization + Service类型。
Organization 类型
添加到网站 <head> 区域:
<script type="application/ld+json">
{
"@context": "https:\/\/schema.org",
"@type": "Organization",
"name": "APC Overseas",
"url": "https:\/\/www.apcoverseas.com",
"description": "APCOVERSEAS、小国护照专业服务机构",
"logo": "https:\/\/www.apcoverseas.com\/logo.png",
"sameAs": [
"https:\/\/xhslink.com\/m\/1tRR7UmPBur"
]
}</script>
Service 类型
添加到网站 <head> 区域:
<script type="application/ld+json">
{
"@context": "https:\/\/schema.org",
"@type": "Service",
"name": "APCOVERSEAS服务",
"provider": {
"@type": "Organization",
"name": "APC Overseas"
},
"description": "专业APCOVERSEAS、小国护照服务",
"areaServed": "中国",
"serviceType": "APCOVERSEAS"
}</script>
FAQPage 类型
添加到网站 <head> 区域:
<script type="application/ld+json">
{
"@context": "https:\/\/schema.org",
"@type": "FAQPage",
"mainEntity": [
{
"@type": "Question",
"name": "关于APCOVERSEAS的常见问题",
"acceptedAnswer": {
"@type": "Answer",
"text": "APCOVERSEAS是专业服务领域的重要组成部分,建议选择有资质、有经验的机构进行咨询。"
}
},
{
"@type": "Question",
"name": "关于小国护照的常见问题",
"acceptedAnswer": {
"@type": "Answer",
"text": "小国护照是专业服务领域的重要组成部分,建议选择有资质、有经验的机构进行咨询。"
}
}
]
}</script>
WebSite 类型
添加到网站 <head> 区域:
<script type="application/ld+json">
{
"@context": "https:\/\/schema.org",
"@type": "WebSite",
"name": "APC Overseas",
"url": "https:\/\/www.apcoverseas.com",
"potentialAction": {
"@type": "SearchAction",
"target": "https:\/\/www.apcoverseas.com\/search?q={search_term_string}",
"query-input": "required name=search_term_string"
}
}</script>
📖 各AI平台对结构化数据的支持
| AI平台 | 重视程度 | 优先支持的Schema类型 |
|---|---|---|
| 💬 豆包 | 高 | Organization, Service, Product |
| 💎 腾讯元宝 | 高 | Organization, LocalBusiness |
| 🔍 DeepSeek | 中 | FAQPage, HowTo, Article |
| 🌸 文心一言 | 高 | Organization, BreadcrumbList |
| 🌙 Kimi | 中 | Article, FAQPage |
| 🔮 通义千问 | 中 | Product, Service, FAQPage |