什么是Schema.org?
Schema.org是一个协作项目,由Google、Microsoft、Yahoo和Yandex共同创建,旨在创建一个统一的结构化数据词汇表。
为什么Schema.org对GEO很重要?
AI搜索引擎使用结构化数据来理解网页内容。正确使用Schema.org可以:
- 提高内容被AI引用的概率
- 帮助AI准确理解页面信息
- 增强在AI搜索结果中的展示
常用Schema类型
1. Article(文章)
{
"@context": "https://schema.org",
"@type": "Article",
"headline": "文章标题",
"author": {
"@type": "Person",
"name": "作者名"
},
"datePublished": "2024-01-01"
}
2. FAQPage(常见问题)
{
"@context": "https://schema.org",
"@type": "FAQPage",
"mainEntity": [{
"@type": "Question",
"name": "问题",
"acceptedAnswer": {
"@type": "Answer",
"text": "答案"
}
}]
}
3. Organization(组织)
{
"@context": "https://schema.org",
"@type": "Organization",
"name": "公司名称",
"url": "https://example.com"
}