Article schema for a blog post
The name field becomes the headline and the author is wrapped in a Person object.
Input
Type: Article · name: How to Brew Cold Coffee · description: A step-by-step cold brew guide · url: https://motifuse.com/blog/cold-brew · author: Ana Silva · datePublished: 2026-07-01Output
<script type="application/ld+json">
{
"@context": "https://schema.org",
"@type": "Article",
"headline": "How to Brew Cold Coffee",
"description": "A step-by-step cold brew guide",
"url": "https://motifuse.com/blog/cold-brew",
"author": {
"@type": "Person",
"name": "Ana Silva"
},
"datePublished": "2026-07-01"
}
</script>