JSON-LD Missing @context
What This Means
The JSON-LD structured data is missing the @context property. The @context tells parsers which vocabulary to use for interpreting the data, typically Schema.org.
What Triggers This Issue
This issue is triggered when a JSON-LD block parses successfully but does not contain an @context property (and is not using @graph). Without @context, search engines may not correctly interpret the structured data.
How To Fix
Add “@context”: “https://schema.org ” to your JSON-LD. This tells search engines to interpret your markup using the Schema.org vocabulary. Example: {“@context”: “https://schema.org ”, “@type”: “Organization”, “name”: “Your Company”}.
Last updated on