Article
Schema for articles, blog posts and news
Article Schema
Ideal for: Blog posts, news, opinion articles and editorial content.
Rich Result Features: Headline, author photo, publication date and featured image in results.
Key Fields
- Headline and description
- Author information (name, photo, URL)
- Publisher details (name, logo)
- Publication and modification dates
- Article section/category
- Word count and keywords
- Language selection (15 languages supported)
Available Templates
- Blog Post: Basic template for blog posts
- News Article: For news with journalism-specific fields
- Complete Article: Full template with all fields
Code Examples
Article Schema Example
json
{
"@context": "https://schema.org",
"@type": "Article",
"headline": "Guía Completa de SEO para 2025",
"description": "Aprende las mejores prácticas de SEO...",
"image": "https://ejemplo.com/imagen.jpg",
"datePublished": "2025-01-15T08:00:00+00:00",
"dateModified": "2025-01-20T10:30:00+00:00",
"author": {
"@type": "Person",
"name": "Juan García",
"url": "https://ejemplo.com/autor/juan"
},
"publisher": {
"@type": "Organization",
"name": "Mi Blog",
"logo": {
"@type": "ImageObject",
"url": "https://ejemplo.com/logo.png"
}
},
"articleSection": "SEO",
"wordCount": 2500,
"inLanguage": "es"
}