Schema 上线检查

商品变体 Schema 生成器

输入商品信息和 SKU 表格,生成带 AggregateOffer 与变体 Offer 的 Product JSON-LD。

风险高38/100
变体数2
Offer 数2
需复查3
未通过2

商品信息

尽量使用规范商品 URL 和绝对图片 URL。

变体表格

每个可售 SKU 都可以成为一个 Offer,价格、币种和库存状态要保持清晰。

SKU变体价格币种库存状态操作
变体 URL、GTIN、颜色和尺码

Product JSON-LD

{
  "@context": "https://schema.org",
  "@type": "Product",
  "offers": {
    "@type": "AggregateOffer",
    "offerCount": 2,
    "priceCurrency": "USD",
    "offers": [
      {
        "@type": "Offer",
        "priceCurrency": "USD",
        "availability": "https://schema.org/InStock",
        "itemCondition": "https://schema.org/NewCondition"
      },
      {
        "@type": "Offer",
        "priceCurrency": "USD",
        "availability": "https://schema.org/InStock",
        "itemCondition": "https://schema.org/NewCondition"
      }
    ]
  }
}

Schema 检查

Product name

Add the base product name.

失败
Product URL

Use an absolute product URL for richer Offer links.

复查
Product image

Add an absolute product image URL.

复查
Variants

2 variant rows will be emitted as offers.

2
通过
SKU coverage

2 variant rows are missing SKU values.

2
复查
Price coverage

2 variant rows have missing or invalid prices.

2
失败
Currency

Variant currencies are consistent.

USD
通过

上线报告

# Product Variant Schema Builder

Product: Untitled product
Schema type: Product with AggregateOffer
Variants: 2
Score: 38/100 (risky)

## Variants
- Missing SKU · Unnamed variant · price review USD
- Missing SKU · Unnamed variant · price review USD

## Checks
- [ ] Product name: Add the base product name.
- [ ] Product URL: Use an absolute product URL for richer Offer links.
- [ ] Product image: Add an absolute product image URL.
- [x] Variants: 2 variant rows will be emitted as offers.
- [ ] SKU coverage: 2 variant rows are missing SKU values.
- [ ] Price coverage: 2 variant rows have missing or invalid prices.
- [x] Currency: Variant currencies are consistent.

## JSON-LD
```json
{
  "@context": "https://schema.org",
  "@type": "Product",
  "offers": {
    "@type": "AggregateOffer",
    "offerCount": 2,
    "priceCurrency": "USD",
    "offers": [
      {
        "@type": "Offer",
        "priceCurrency": "USD",
        "availability": "https://schema.org/InStock",
        "itemCondition": "https://schema.org/NewCondition"
      },
      {
        "@type": "Offer",
        "priceCurrency": "USD",
        "availability": "https://schema.org/InStock",
        "itemCondition": "https://schema.org/NewCondition"
      }
    ]
  }
}
```