Article Schema Template
Implementing article schema might seem daunting. To make the process easy for you, here’s a template you can use as a starting point. This template is based on JSON-LD, a popular format for structured data that is both human-readable and easily understandable by search engines.
script type=”application/ld+json”>
{
“@context”: “https://schema.org”,
“@type”: “BlogPosting”,
“mainEntityOfPage”: {
“@type”: “WebPage”,
“@id”: “https://www.example.com/example-blog-post/”
},
“headline”: “Example blog post title“,
“description”: “Example blog post description.“,
“image”: “https://www.example.com/example-image-url.jpg“,
“author”: {
“@type”: “Person”,
“name”: “Example Blogs“,
“url”: “https://www.example.com/team/example-blogs/”
},
“publisher”: {
“@type”: “Organization”,
“name”: “Example Company Name“,
“logo”: {
“@type”: “ImageObject”,
“url”: “https://www.example.com/”
}
},
“datePublished”: “2021-02-25“,
“dateModified”: “2023-09-16”
}
“description”: “Brief description of your article goes here.”.
“articleBody”: “The main content of your article in plain text or HTML format.”
}
</script>
How to Use the Template
– Replace “https://www.example.com/example-blog-post/” with the URL where your article is published.
– Insert the title of your article within the “Example blog post title”
– Provide the URL (https://www.example.com/example-image-url.jpg) of the main image associated with your article.
– In place of “2021-02-25“, enter the publication date of your article in ISO 8601 format (YYYY-MM-DD).
– Replace “Example Blogs“ with the actual name of the author.
– In place of “Example Company Name“, insert the name of your company or website.
– Provide the URL of your organization’s logo image instead of “https://www.example.com/”.
– Summarize your article briefly in the section “Brief description of your article goes here.”
– Insert the entire body of your article in plain text or HTML format within “The main content of your article in plain text or HTML format.”
– Ensure that the URLs provided are accurate and accessible.
– Double-check the dates to ensure they are in the correct ISO format.
– Use the correct author name and organization details.
– Include a concise and accurate description of your article.
– Insert the entire article body within the “articleBody” section.
Copy and paste this template into your HTML, replacing the placeholder values with your actual information. Remember to test your markup using Google’s Structured Data Testing Tool to ensure it’s error-free.