Article
Article Schema Example
Use Article schema for blog posts, guides, research pages, tutorials, and editorial content with a clear author and update date.
Generate this markup with the Article Schema Generator{
"@context": "https://schema.org",
"@type": "Article",
"headline": "How to Add Schema Markup to a Website",
"description": "A practical guide to adding JSON-LD structured data to a webpage.",
"author": {
"@type": "Person",
"name": "Jane Smith",
"url": "https://example.com/authors/jane-smith"
},
"publisher": {
"@type": "Organization",
"name": "Example Company",
"url": "https://example.com"
},
"datePublished": "2026-07-01",
"dateModified": "2026-07-09",
"mainEntityOfPage": {
"@type": "WebPage",
"@id": "https://example.com/blog/schema-markup-guide"
}
}