今天优化哥要和大家来分享的是关于SEO与AI结构化数据相关知识,以下是符合当前主流AI抓取(如Google Gemini、OpenAI、Claude等)以及搜索引擎(百度、Google)偏好的 JSON数据SEO优化标签格式。
现代AI抓取器更倾向于结构化的数据,尤其是 JSON-LD。优化哥分享的这份指南将结合Schema.org的最新词汇,整理出一套通用且高效的格式。
核心原则
使用JSON-LD格式:这是Google、Bing等推荐的结构化数据格式,放在< script type="application/ld+json" >标签内。
采用Schema.org词汇:这是行业标准,AI训练数据和搜索引擎都依赖它来理解网页。
提供完整的实体信息:不仅要有标题和描述,还要有时间、作者、组织、Logo、面包屑等上下文信息。

通用模板:WebPage (适用于大多数页面)
这是最基本的类型,告诉AI这个页面是关于什么的。
html < script type="application/ld+json" >{ "@context": "https://schema.org", "@type": "WebPage", "name": "页面主标题 - 品牌名", "description": "这是一个吸引人的页面描述,包含核心关键词,不超过160字符。AI会优先抓取此字段作为页面摘要。", "url": "https://www.yoursite.com/page-url/", "inLanguage": "zh-CN", "isPartOf": { "@type": "WebSite", "name": "品牌或网站名称", "url": "https://www.yoursite.com/" }, "breadcrumb": { "@type": "BreadcrumbList", "itemListElement": [ { "@type": "ListItem", "position": 1, "name": "首页", "item": "https://www.yoursite.com/" }, { "@type": "ListItem", "position": 2, "name": "分类名称", "item": "https://www.yoursite.com/category/" } ] }, "potentialAction": { "@type": "ReadAction", "target": "https://www.yoursite.com/page-url/" } }< /script >文章/博客页模板:Article / NewsArticle
这是内容型网站最重要的模板,帮助AI准确识别文章的发布日期、作者和图片。
html < script type="application/ld+json" >{ "@context": "https://schema.org", "@type": "Article", // 如果是新闻可用 "NewsArticle" "headline": "文章的完整标题,可以稍长但必须准确", "description": "文章的精简摘要或导语,AI常用来生成搜索结果摘要。", "image": { "@type": "ImageObject", "url": "https://www.yoursite.com/images/article-featured.jpg", "width": 1200, "height": 630 }, "datePublished": "2024-01-15T09:00:00+08:00", // 必须使用ISO 8601格式 "dateModified": "2024-01-16T10:30:00+08:00", "author": { "@type": "Person", "name": "作者姓名", "url": "https://www.yoursite.com/author/profile" // 作者主页链接 }, "publisher": { "@type": "Organization", "name": "发布网站名称", "logo": { "@type": "ImageObject", "url": "https://www.yoursite.com/logo.png", "width": 600, "height": 60 } }, "mainEntityOfPage": { "@type": "WebPage", "@id": "https://www.yoursite.com/article-url/" } }< /script >产品页模板:Product (电商必备)
对于电商网站,产品数据(价格、库存、评价)是AI最敏感的信号。
< script type="application/ld+json" >{ "@context": "https://schema.org", "@type": "Product", "name": "产品名称 - 型号", "description": "产品的详细描述,包含材质、功能等。", "sku": "YOUR-SKU-CODE-123", "mpn": "制造商零件编号", "brand": { "@type": "Brand", "name": "品牌名称" }, "image": [ "https://www.yoursite.com/images/product-main.jpg", "https://www.yoursite.com/images/product-detail.jpg" ], "offers": { "@type": "Offer", "url": "https://www.yoursite.com/product-url/", "priceCurrency": "CNY", // 货币代码 "price": "299.00", // 价格 "priceValidUntil": "2024-12-31", // 价格有效期 "availability": "https://schema.org/InStock", // 库存状态 InStock, OutOfStock, PreOrder "itemCondition": "https://schema.org/NewCondition" // 商品状态 NewCondition, UsedCondition, RefurbishedCondition }, "aggregateRating": { // 如果有评分 "@type": "AggregateRating", "ratingValue": "4.5", "reviewCount": "120" } }< /script >面包屑导航模板:BreadcrumbList
面包屑是AI理解网站层级结构的关键。Google搜索结果的标题下方有时会直接显示面包屑,提升点击率。
html < script type="application/ld+json" >{ "@context": "https://schema.org", "@type": "BreadcrumbList", "itemListElement": [{ "@type": "ListItem", "position": 1, "name": "首页", "item": "https://www.yoursite.com" },{ "@type": "ListItem", "position": 2, "name": "分类", "item": "https://www.yoursite.com/category" },{ "@type": "ListItem", "position": 3, "name": "当前页面标题" // 注意:第3项通常没有item,因为它是当前页面,或者item指向当前页 }] }< /script >企业联系信息模板:Organization / LocalBusiness
用于告诉AI你的公司叫什么、在哪里、电话多少。对于本地搜索优化极其重要。
html < script type="application/ld+json" >{ "@context": "https://schema.org", "@type": "Organization", // 如果是实体店可用 "LocalBusiness" "name": "公司全称", "alternateName": "公司简称或别名", "url": "https://www.yoursite.com", "logo": "https://www.yoursite.com/logo.png", "contactPoint": [{ "@type": "ContactPoint", "telephone": "+86-10-12345678", // 国际格式 "contactType": "customer service", "areaServed": "CN", "availableLanguage": ["Chinese", "English"] }], "sameAs": [ // 社交媒体链接 "https://weibo.com/yourprofile", "https://www.xiaohongshu.com/user/profile", "https://www.douyin.com/user/..." ], "address": { "@type": "PostalAddress", "streetAddress": "具体街道地址", "addressLocality": "城市", "addressRegion": "省份", "postalCode": "100000", "addressCountry": "CN" } }< /script >FAQ页面模板:FAQPage
如果你的页面有常见问题解答,使用此标记,AI可能会直接在搜索结果中展示这些问题和答案。
< script type="application/ld+json" >{ "@context": "https://schema.org", "@type": "FAQPage", "mainEntity": [{ "@type": "Question", "name": "第一个问题是什么?", "acceptedAnswer": { "@type": "Answer", "text": "这里是第一个问题的详细答案。可以包含一些基本格式。" } },{ "@type": "Question", "name": "第二个问题是什么?", "acceptedAnswer": { "@type": "Answer", "text": "第二个问题的答案。" } }] }< /script >AI优化小贴士
单一性:一个页面最好只针对一个主要的实体类型。例如,产品页就不要同时标记为Article。
验证:无论格式多漂亮,如果语法错误,AI解析器会忽略它。务必使用 Google Rich Results Test 工具进行验证。
HTML与JSON一致性:确保JSON-LD里的数据(如标题、描述、价格)和页面上肉眼可见的HTML内容完全一致。如果两者冲突,AI可能会降低对网站的信任度。
时间格式:严格遵守ISO 8601格式(例如:2024-01-15T09:00:00+08:00),不要随意省略。
这份格式是目前业界公认的标准,能够最大程度地满足主流AI爬虫和搜索引擎的抓取需求。
