跳到主要内容
让搜索引擎和 AI 更清楚理解页面实体

Schema 结构化数据生成器

选择页面类型,填写品牌、页面、产品、服务、FAQ 和面包屑信息,自动生成可嵌入页面的 JSON-LD,并检查字段完整性和内容一致性风险。

实体关系
JSON-LD
基础校验
Schema Types

选择要生成的结构化数据

建议先生成 Organization、WebSite、WebPage,再根据页面真实内容添加 Article、Product、Service、FAQ 或 Breadcrumb。不要给页面没有展示的内容强行加 Schema。

基础信息

页面内容

产品 / 服务 / FAQ

Schema Score

结构化数据基础偏弱,建议先补齐实体和页面信息

已选择 6 种 Schema 类型,生成一份 @graph JSON-LD。

56

基础校验

JSON-LD 格式

当前 JSON-LD 可以正常生成和解析。

页面 URL

缺少页面 URL,@id、url 和 canonical 关系会不清晰。

实体名称

缺少组织或品牌名称,Organization / publisher / provider 关系不完整。

页面标题与描述

建议补齐页面标题和描述,避免 Schema 和页面主题脱节。

Service 信息

Service 缺少服务名称。

FAQ 可见性

FAQPage 至少建议填写 2 组页面可见问答。

Breadcrumb 层级

BreadcrumbList 至少需要首页和当前页两个层级。

页面内容一致性

结构化数据应该描述页面上真实可见的主体、产品、服务、文章或 FAQ,不建议把页面没有展示的信息塞进 Schema。

嵌入代码

<script type="application/ld+json">
{
  "@context": "https://schema.org",
  "@graph": [
    {
      "@type": "Organization",
      "@id": "https://example.com#organization",
      "url": "https://example.com"
    },
    {
      "@type": "WebSite",
      "@id": "https://example.com#website",
      "url": "https://example.com",
      "publisher": {
        "@id": "https://example.com#organization"
      },
      "inLanguage": "zh-CN"
    },
    {
      "@type": "WebPage",
      "@id": "https://example.com/page#webpage",
      "url": "https://example.com/page",
      "isPartOf": {
        "@id": "https://example.com#website"
      },
      "about": {
        "@id": "https://example.com#organization"
      },
      "inLanguage": "zh-CN"
    },
    {
      "@type": "Service",
      "@id": "https://example.com/page#service",
      "provider": {
        "@id": "https://example.com#organization"
      },
      "url": "https://example.com/page"
    },
    {
      "@type": "FAQPage",
      "@id": "https://example.com/page#faq"
    },
    {
      "@type": "BreadcrumbList",
      "@id": "https://example.com/page#breadcrumb"
    }
  ]
}
</script>

使用提醒

结构化数据不能保证富结果展示,它只是帮助搜索引擎理解页面内容。
Product、Service、FAQ 等信息必须和页面可见内容一致。
上线后建议用 Google Rich Results Test 或 Schema.org Validator 再检查一次。

Why This Tool

结构化数据不是堆代码,而是把页面里的实体关系讲清楚

对 B2B 出海网站来说,Schema 可以帮助搜索引擎和 AI 搜索更清楚理解品牌是谁、页面讲什么、产品或服务是什么、问答和面包屑如何组织。这个工具把常见 Schema 组合成一份 JSON-LD,并提醒哪些字段需要和页面可见内容保持一致。

实体关系

Organization、WebSite、WebPage 串起品牌、网站和页面。

业务对象

Product 和 Service 适合产品页、服务页和方案页。

内容理解

Article、FAQPage 帮助解释文章和问答内容。

站内层级

BreadcrumbList 帮助说明页面在网站里的位置。