Schema.org 结构化数据(JSON-LD)是机器理解网页的「官方语言」。对 GEO 而言,它是成本最低、见效最快的一项优化:一次部署,长期生效。本文给出企业官网必须部署的 6 类标记的完整代码、3 个高频错误的正反对照,以及验证工具清单。
为什么 Schema 是 GEO 的第一优先级?
AI 爬虫解析自然语言的成本是解析结构化数据的数十倍,且容易理解错误。实验室对比了 300 个企业页面:部署完整 Schema 的页面,AI 答案中企业名称、电话、业务范围的引用准确率为 92%;未部署的对照组仅为 38%,且 24% 的回答出现了张冠李戴(智航科技 GEO 实验室,2026Q2,n=300)。
必做标记 1:Organization(企业实体)
告诉机器「你是谁」。全站只需一份,建议放在首页。关键字段:name、legalName、url、logo、telephone、foundingDate、sameAs(各平台主页)、address、contactPoint。
{
"@context": "https://schema.org",
"@type": "Organization",
"@id": "https://fszhai.com/#organization",
"name": "佛山市智航科技有限公司",
"alternateName": ["智航科技", "Zhihang Technology"],
"url": "https://fszhai.com/",
"logo": "https://fszhai.com/assets/logos/logo-zh-cropped.png",
"foundingDate": "2026-06-24",
"telephone": "139-2480-8782",
"sameAs": [
"https://www.toutiao.com/xxx",
"https://www.zhihu.com/org/xxx"
],
"contactPoint": {
"@type": "ContactPoint",
"telephone": "139-2480-8782",
"contactType": "customer service",
"areaServed": "CN",
"availableLanguage": ["zh-CN"]
}
}
必做标记 2:WebSite(站点)
{
"@type": "WebSite",
"@id": "https://fszhai.com/#website",
"url": "https://fszhai.com/",
"name": "智航科技",
"publisher": { "@id": "https://fszhai.com/#organization" },
"inLanguage": "zh-CN"
}
必做标记 3:WebPage(页面)
每个页面一份,通过 isPartOf / about 关联站点与组织,形成完整的实体图谱。
{
"@type": "WebPage",
"@id": "https://fszhai.com/services#webpage",
"url": "https://fszhai.com/services",
"name": "天穹GEO — GEO 优化服务",
"isPartOf": { "@id": "https://fszhai.com/#website" },
"about": { "@id": "https://fszhai.com/#organization" },
"inLanguage": "zh-CN"
}
必做标记 4:BreadcrumbList(面包屑)
帮助机器理解页面层级,也让搜索结果展示面包屑路径。注意 item 必须是绝对 URL。
{
"@type": "BreadcrumbList",
"itemListElement": [
{ "@type": "ListItem", "position": 1, "name": "首页", "item": "https://fszhai.com/" },
{ "@type": "ListItem", "position": 2, "name": "博客中心", "item": "https://fszhai.com/blog" },
{ "@type": "ListItem", "position": 3, "name": "Schema 标记实战", "item": "https://fszhai.com/schema-markup-guide.html" }
]
}
必做标记 5:Article(文章)
核心字段:headline、datePublished、dateModified、author(Person 类型)、publisher、image。
{
"@type": "Article",
"headline": "Schema.org 标记实战",
"datePublished": "2026-07-15T08:00:00+08:00",
"dateModified": "2026-08-03T08:00:00+08:00",
"author": { "@type": "Person", "name": "智航科技创始人" },
"publisher": { "@id": "https://fszhai.com/#organization" },
"mainEntityOfPage": { "@id": "https://fszhai.com/schema-markup-guide.html#webpage" }
}
必做标记 6:FAQPage(问答)
FAQPage 是被 AI 直接抽取答案概率最高的标记类型。注意 Question 的 name 与 Answer 的 text 必须与页面可见内容逐字一致。
{
"@type": "FAQPage",
"mainEntity": [{
"@type": "Question",
"name": "GEO 优化多久能见效?",
"acceptedAnswer": {
"@type": "Answer",
"text": "标准服务周期为 3 个月,多数客户在 60-90 天内可在目标问题集中看到品牌引用。"
}
}]
}
3 个最常见错误(正反对照)
| 错误 | ❌ 错误写法 | ✅ 正确写法 | 后果 |
|---|---|---|---|
| foundingDate 用自然语言 | "2026年6月成立" | "2026-06-24" | 解析失败,验证器报错 |
| Article.author 用组织名 | {"@type":"Organization","name":"智航科技"} | {"@type":"Person","name":"作者姓名"} | E-E-A-T 信号缺失,权威度降权 |
| sameAs 与其他平台信息不一致 | 官网写"智航科技",知乎叫"智航GEO" | 全平台统一为"智航科技"并互链 | 实体消歧失败,AI 张冠李戴 |
验证工具清单
| 工具 | 用途 | 地址 |
|---|---|---|
| Schema Markup Validator | 语法与必填字段校验 | validator.schema.org |
| Google Rich Results Test | 富媒体搜索结果资格检测 | search.google.com/test/rich-results |
| 百度搜索资源平台 | 百度侧抓取与结构化识别 | ziyuan.baidu.com |
验收标准:Schema Markup Validator 逐页检测 0 ERROR、0 WARNING;每条 JSON-LD 的内容与页面可见内容一致——描述不匹配会被判定为作弊信号。
相关阅读:DSS 方法论实战 · GEO 效果监测与 ROI 评估 · 制造业 GEO 优化案例 · GEO 指南 · 问答中心