Schema preflight

상품 변형 Schema 빌더

상품 정보와 SKU 행을 입력해 AggregateOffer와 변형별 Offer가 포함된 Product JSON-LD를 생성합니다.

위험38/100
변형2
Offers2
검토 필요3
실패2

상품 정보

가능하면 canonical 상품 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"
      }
    ]
  }
}
```