Schema preflight

Trình tạo Schema biến thể sản phẩm

Nhập thông tin sản phẩm và các dòng SKU để tạo Product JSON-LD với AggregateOffer và Offer theo từng biến thể.

Rủi ro38/100
Biến thể2
Offers2
Cần xem lại3
Không đạt2

Thông tin sản phẩm

Nên dùng URL sản phẩm chính tắc và URL ảnh tuyệt đối khi có thể.

Dòng biến thể

Mỗi SKU đang bán có thể trở thành một Offer. Giữ giá, tiền tệ và trạng thái tồn kho rõ ràng.

SKUBiến thểGiáTiền tệTồn khoThao tác
URL biến thể, GTIN, màu và kích cỡ

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"
      }
    ]
  }
}

Kiểm tra Schema

Product name

Add the base product name.

Lỗi
Product URL

Use an absolute product URL for richer Offer links.

Xem lại
Product image

Add an absolute product image URL.

Xem lại
Variants

2 variant rows will be emitted as offers.

2
Đạt
SKU coverage

2 variant rows are missing SKU values.

2
Xem lại
Price coverage

2 variant rows have missing or invalid prices.

2
Lỗi
Currency

Variant currencies are consistent.

USD
Đạt

Báo cáo trước khi ra mắt

# 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"
      }
    ]
  }
}
```