BackgroundNewsArticle
BackgroundNewsArticle is a NewsArticle subtype for background explainers: pieces that provide historical or contextual framing for unfolding news stories. Think "What is the Thunderdome zoning case, and why does it matter?" rather than "Zoning board rules today". It adds no properties of its own.
BackgroundNewsArticle differs from AnalysisNewsArticle in emphasis: background provides prerequisite context (often evergreen), analysis interprets a specific development.
Full example of schema.org/BackgroundNewsArticle json-ld markup
The markup is verified as valid with Rich Results Test from Google.
<script type="application/ld+json">
{
"@context": "https://schema.org",
"@type": "BackgroundNewsArticle",
"headline": "Dunmore zoning: a 20-year background on how we got here",
"datePublished": "2024-09-12",
"dateModified": "2026-04-11",
"author": { "@type": "Person", "name": "Priya Chen" },
"publisher": { "@type": "Organization", "name": "Xoo Code" },
"articleSection": "Local news",
"mainEntityOfPage": "https://xoocode.com/news/dunmore-zoning-background"
}
</script>Minimal valid version
The smallest markup that still produces a valid BackgroundNewsArticle entity. Use it as the floor. Reach for the advanced example above when you want search engines and AI agents to understand more about your content.
<script type="application/ld+json">
{
"@context": "https://schema.org",
"@type": "BackgroundNewsArticle",
"headline": "Dunmore zoning: a 20-year background",
"author": { "@type": "Person", "name": "Priya Chen" },
"datePublished": "2024-09-12"
}
</script>Google rich results this unlocks
BackgroundNewsArticle is a structural type. It does not produce a rich result on its own.
Its value comes from combining it with a primary type whose markup earns a rich result (Article, Product, Event, and so on). BackgroundNewsArticle becomes the trunk that the primary type branches off viamainEntityorbreadcrumb. Include it on every page as the backbone of your markup.
Common BackgroundNewsArticle mistakes
Mistakes that pass validation but silently fail to earn rich results or mislead consumers walking the graph. Avoid these and your markup will be ahead of most sites in the wild.
- 01
Confusing background with analysis
WrongBackgroundNewsArticle on a piece analysing today's developmentRightAnalysisNewsArticle for interpretive pieces on specific developments, BackgroundNewsArticle for evergreen contextBackground tends to be evergreen (republished when a story resurfaces). Analysis is tied to a current development. The distinction is reader intent: context vs interpretation.
Schema properties in this example
About the example data
A Xoo Code evergreen explainer on the history of Dunmore zoning disputes, republished whenever a new case reaches the zoning board.
Comments
Loading comments...