SEO021 · JSON-LD required properties
Severity: warning
What it checks
Section titled “What it checks”For a recognized @type (Article, Product, BreadcrumbList, Organization, WebSite, Event, Recipe, Person, VideoObject, LocalBusiness), checks that Google’s required properties are present. Unknown/custom types are not flagged.
Why it matters
Section titled “Why it matters”A recognized @type missing its required properties is ineligible for the corresponding rich result.
How to fix
Section titled “How to fix”Add the missing properties. For example, a Product needs name and offers:
{ "@context": "https://schema.org", "@type": "Product", "name": "…", "offers": { "@type": "Offer", "price": "…" } }