AEOAudit
JD
Audit #8842 Schema Validation

Optimization Report

Machine Legibility
62/100
+36 Potential
Critical
03
Warnings
12
Passed
45

Detected Issues

Missing Material Schema
HIGH

Product entity lacks 'material' property needed for Google Merchant Center.

Context: "100% Cotton T-Shirt"
Incomplete Dimensions
MED

Shipping weight is present but dimensions are missing.

Missing GTIN/MPN
MED

Global Trade Item Number is recommended for better visibility.

Review Aggregate
INFO

Consider aggregating 3rd party reviews here.

product-schema.jsonld Valid JSON
Preview Fix
{
  "@context": "https://schema.org/",
  "@type": "Product",
  "name": "Premium Cotton T-Shirt",
  "image": [
    "https://example.com/photos/1x1/photo.jpg",
    "https://example.com/photos/4x3/photo.jpg"
  ],
  "description": "The most comfortable 100% cotton t-shirt...",
  "sku": "0446310786",
  "brand": {
    "@type": "Brand",
    "name": "JegoDigital"
  },
  "offers": {
    "@type": "Offer",
    "url": "https://example.com/anvil",
    "priceCurrency": "USD",
    "price": "119.99",
    "priceValidUntil": "2024-11-20",
    "itemCondition": "https://schema.org/UsedCondition",
    "availability": "https://schema.org/InStock"
  },
  "material": {
     "@type": "Material",
     "name": "100% Organic Cotton",
     "description": "Sustainably sourced from Peru"
  }, // AI Injected Fix
  "review": {
    "@type": "Review",
    "reviewRating": {
      "@type": "Rating",
      "ratingValue": "4",
      "bestRating": "5"
    },
    "author": {
      "@type": "Person",
      "name": "Fred Benson"
    }
  }
}