The most frequently used Schema.org examples

The most frequently used Schema.org examples

Schema markup enables the categorization of data structure on your website, aiding search engines in analyzing your content more effectively and enhancing the presentation in their results.

This can enhance your site’s appeal in search engine results, as well as make it more engaging, interesting, and interactive, all of which are advantageous for your site’s SEO.

Below are examples of the most commonly used schemes found on nearly every website.

And here you can validate your schemas.

Breadcrumbs

<!-- List -->
<ul itemscope itemtype="https://schema.org/BreadcrumbList">
	<!-- Item -->
	<li itemprop="itemListElement" itemscope itemtype="https://schema.org/ListItem">
		<a itemprop="item" href="...">
			<span itemprop="name">Home</span>
		</a>
		<meta itemprop="position" content="1">
	</li>
	
	<!-- Item -->
	<li itemprop="itemListElement" itemscope itemtype="https://schema.org/ListItem">
		<a itemprop="item" href="...">
			<span itemprop="name">Page</span>
		</a>
		<meta itemprop="position" content="2">
	</li>
</ul>

Blog posts and news articles

<!-- Article, NewsArticle, BlogPosting -->
<article itemscope itemtype="https://schema.org/NewsArticle">
	<!-- Heading -->
	<h1 itemprop="headline">Post Title</h1>

	<!-- Image -->
	<img itemprop="image" src="https://example.com/photos/16x9/photo.jpg">
	<meta itemprop="image" content="https://example.com/photos/1x1/photo.jpg">
	<meta itemprop="image" content="https://example.com/photos/4x3/photo.jpg">

	<!-- Content -->
	<div>
		<p>Lorem ipsum dolor sit amet consectetur adipisicing elit. Mollitia, corrupti.</p>
		<p>Lorem ipsum dolor sit amet consectetur adipisicing elit. Amet perferendis, fugiat id esse eius illo.</p>
	</div>

	<!-- Dates -->
	<div>
		<div>
			<span>Posted:</span>
			<span itemprop="datePublished" content="2024-01-05T08:00:00+08:00">January 5, 2024 at 8:00am</span>
		</div>

		<div>
			<span>Last modified:</span>
			<span itemprop="dateModified" content="2024-02-05T09:20:00+08:00">February 5, 2024 at 9:20am</span>
		</div>
	</div>

	<!-- Author -->
	<div>
		<span>Author</span>
		<span itemprop="author" itemscope itemtype="https://schema.org/Person">
			<a itemprop="url" href="https://yanmet.com/">
				<span itemprop="name">Yan Meteitsa</span>
			</a>
		</span>
	</div>
</article>

FAQ

<html itemscope itemtype="https://schema.org/FAQPage">
	<head>
		...
	</head>

	<body>
		<h1>FAQ</h1>

		<details itemscope itemprop="mainEntity" itemtype="https://schema.org/Question">
			<summary itemprop="name">How to find an apprenticeship?</summary>

			<div itemscope itemprop="acceptedAnswer" itemtype="https://schema.org/Answer">
				<div itemprop="text">
					<p>Lorem ipsum dolor, sit amet consectetur adipisicing elit. Excepturi, hic!</p>
				</div>
			</div>
		</details>

		<details itemscope itemprop="mainEntity" itemtype="https://schema.org/Question">
			<summary itemprop="name">Whom to contact?</summary>

			<div itemscope itemprop="acceptedAnswer" itemtype="https://schema.org/Answer">
				<div itemprop="text">
					<p>Lorem ipsum dolor sit, amet consectetur adipisicing elit. Assumenda, minima.</p>
				</div>
			</div>
		</details>
	</body>
</html>