Blog
Blog is a CreativeWork subtype for the container around BlogPosting entries: the blog as a publication, not an individual post. It adds 3 direct properties:
blogPost(BlogPosting): individual posts within the blog, array-valued.blogPosts(BlogPosting): deprecated alias; useblogPost.issn(Text): if the blog has a registered ISSN.
Publish Blog markup on your blog's index / landing page, not on individual posts. Each BlogPosting then links back via isPartOf to the Blog entity.
Full example of schema.org/Blog 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": "Blog",
"@id": "https://xoocode.com/blog#blog",
"name": "Xoo Code Engineering",
"description": "Engineering notes from the Xoo Code team: structured data, TypeScript, humane web fundamentals.",
"url": "https://xoocode.com/blog",
"inLanguage": "en",
"publisher": { "@type": "Organization", "name": "Xoo Code", "url": "https://xoocode.com" },
"blogPost": [
{ "@type": "BlogPosting", "@id": "https://xoocode.com/blog/typed-seo", "headline": "Typed SEO is a different discipline", "datePublished": "2026-04-05" },
{ "@type": "BlogPosting", "@id": "https://xoocode.com/blog/validator-rules", "headline": "Why we wrote our own validator rules", "datePublished": "2026-03-21" }
]
}
</script>Minimal valid version
The smallest markup that still produces a valid Blog 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": "Blog",
"name": "Xoo Code Engineering",
"url": "https://xoocode.com/blog"
}
</script>Google rich results this unlocks
Markup matching this example makes your page eligible for the following Google Search rich results. The primary target drives the required / recommended property classification in the advanced code block above.
- Google docsArticle / Blog aggregation (indirect)
Common Blog 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
Blog on an individual post
WrongBlog on a single article pageRightBlog on the index; BlogPosting on each post, linked via isPartOfBlog is the publication; BlogPosting is the article. Using Blog on a post flattens the relationship.
- 02
Using blogPosts instead of blogPost
Wrong"blogPosts": [...]Right"blogPost": [...]blogPosts is deprecated; use the singular-named blogPost (which still accepts arrays).
Schema properties in this example
Also mentioned in 1 other example
Blog also appears in BlogPosting. See the full Blog schema page for every reference.
About the example data
The Xoo Code Engineering blog, where all Xoo Code BlogPosting entries live.
Comments
Loading comments...