This page contains intentionally broken schema markup to test error detection.
name fieldaddress fieldheadline fielditemReviewed, reviewRating, author fieldsstartDate and location fieldsname, recipeIngredient, recipeInstructions fieldsurl, logo, contactPoint, sameAsimage, jobTitle, worksFor, sameAsIssue: Missing required name property
Has: description, offers
{
"@type": "Product",
"description": "...",
"offers": {...}
// Missing: "name"
}
Issue: Missing required address property
Has: name, telephone
{
"@type": "LocalBusiness",
"name": "Acme Corp",
"telephone": "..."
// Missing: "address"
}
Issue: Missing required headline property
Has: author, datePublished
{
"@type": "Article",
"author": {...},
"datePublished": "..."
// Missing: "headline"
}
Issues: Missing itemReviewed, reviewRating, author
Has: reviewBody only
{
"@type": "Review",
"reviewBody": "..."
// Missing: itemReviewed, reviewRating, author
}
Issue: Has required name, but missing recommended fields
Missing recommended: url, logo, contactPoint, sameAs
{
"@type": "Organization",
"name": "Minimal Organization"
// Recommended: url, logo, contactPoint, sameAs
}
Issue: Has required name, but missing recommended fields
Missing recommended: image, jobTitle, worksFor, sameAs
{
"@type": "Person",
"name": "Jane Doe"
// Recommended: image, jobTitle, worksFor, sameAs
}
See the Schema Test Page for examples of correctly implemented schema markup.