Published on September 21, 2023

5 Types of Schema Markup Dynamic Websites Should Implement (Including a Tutorial!)

5 Types of Schema Markup Dynamic Websites Should Implement

Have you ever wondered how you can help search engines better understand your website’s content?

That’s where schema markup comes in.

By adding a standardized code format (also known as structured data) to your pages, you’re able to communicate specific information to search engines, making it easier for Google to crawl and index your content faster, leading to more accurate recommendations for relevant search queries.

Related: 10 Ways to Get Your Website Indexed Faster

Although schema isn’t a tool to improve rankings (as per se), it can do wonders in speeding up the crawl process. How it works is it helps Google categorize your pages faster, improving your click-through rate.

In this article, we will specifically focus on the schemas you can implement for your dynamic pages and how to do it in a scalable way. After all, dynamic pages are constantly changing, and using a static schema won’t do much good if the content described in your structured data isn’t the one on the page.

Note: If you’re new to the topic, you can check our guide on structured data for SEO to learn the basics of schema.org and how to implement it the traditional way.

1. ItemList Schema

A category page listing a series of items is one of the most important and common dynamic pages.

The best example of this kind of page is product categories.

Schema for product categories.

These pages link out to many individual pages and group them into an easy-to-crawl page (or series of paginated pages).

To help Google understand this type of page, we can use the ItemList schema, which allows you to create a list of related items or products on a web page.

Here’s what this looks like:

{  
“@context”: “https://schema.org”,  
“@type”: “ItemList”,  
“itemListElement”: [    
{      
“@type”: “Product”,      
“name”: “Nike Air Max 200”,      
“description”: “Stylish and comfortable running shoes.”,      
“url”: “https://example.com/products/nike-air-max-200”    
},    
{      
“@type”: “Product”,      
“name”: “Adidas Ultraboost 21”,      
“description”: “High-performance athletic shoes with responsive cushioning.”,      
“url”: “https://example.com/products/adidas-ultraboost-21”    
},    
{      
“@type”: “Product”,      
“name”: “Puma RS-X Bold”,      
“description”: “Modern and trendy sneakers with retro design elements.”,      
“url”: “https://example.com/products/puma-rs-x-bold”    
}  
]
}

As you can imagine, you can use this markup for any website listing, including lists of job posts (good for job boards) or real estate listings. 

2. JobPosting Schema

Job listings are constantly changing. Some jobs get filled, others get removed, and hundreds are constantly being added and updated, so it’s important to use the correct schema to help Google understand everything that’s on the page.

The JobPosting schema is a type of schema markup used to provide structured data for job listings, including job titles, descriptions, locations, and employment types.

Here’s what it looks like:

{  
“@context”: “https://schema.org”,  
“@type”: “JobPosting”,  
“title”: “Front-End Developer with React Experience”,  
“description”: “We are seeking a skilled Front-End Developer with expertise in React to join our dynamic team.”,  
“datePosted”: “2023-07-24”,  
“validThrough”: “2023-08-15”,  
“employmentType”: “Full-Time”,  
“hiringOrganization”: {    
“@type”: “Organization”,    
“name”: “TechCo Solutions”,    
“sameAs”: “https://www.techcosolutions.com”  },  
“jobLocation”: {    
“@type”: “Place”,    
“address”: {      
“@type”: “PostalAddress”,      
“streetAddress”: “123 Main Street”,      
“addressLocality”: “Cityville”,      
“addressRegion”: “Stateville”,      
“postalCode”: “12345”,      
“addressCountry”: “USA”    
}  
},  
“experienceRequirements”: {    
“@type”: “OccupationalExperienceRequirements”,    
“monthsOfExperience”: “24”  },  
“qualifications”: “Proficiency in HTML, CSS, JavaScript, and React is required. Previous front-end development experience is preferred.”,  
“responsibilities”: “Develop and implement user interfaces, collaborate with the design team, and optimize website performance.”,  
“baseSalary”: {    
“@type”: “MonetaryAmount”,    
“currency”: “USD”,    
“value”: {      
“@type”: “QuantitativeValue”,      
“value”: 70000,      
“unitText”: “YEAR”    
}  
},  
“workHours”: “40 hours per week”
}

In addition, using the JobPosting schema can make your job listings eligible to appear on Google Jobs results.

3. BreadcrumbList Schema

Alright, breadcrumbs are not dynamic pages, but they are dynamic elements. These chains of links help Google understand your site’s structure with a clear signal, as each chain specifies the path taken from the homepage to the page Google is currently at.

Example of breadcrumbs schema.

Source: Smashing Magazine

To give Google the full context of this element, we can use the BreadcrumbList schema, which helps create a breadcrumb trail, displaying the hierarchical structure of web pages.

Here’s what it looks like:

{  
“@context”: “https://schema.org”,  
“@type”: “BreadcrumbList”,  
“itemListElement”: [    
{      
“@type”: “ListItem”,      
“position”: 1,      
“name”: “Homepage”,      
“item”: “https://example.com”    
},    
{      
“@type”: “ListItem”,      
“position”: 2,      
“name”: “Category Page”,      
“item”: “https://example.com/products”    
},    
{      
“@type”: “ListItem”,      
“position”: 3,      
“name”: “Product Detail Page”,      
“item”: “https://example.com/products/product-name”    
}  
]
}

With this schema, Google can also show the trail in search results:

Example of how breadcrumbs schema is displayed in SERPs.

4. RealEstateListing Schema

Just like job listings, real estate websites have a tone of properties being updated, remove, and added constantly into their platforms, so having the right schema set can help them improve their search visibility and agile the crawling process.

For these pages, you can use the RealEstateListing schema, which provides structured data for real estate listings, including property details, location, and other relevant information for potential buyers or renters.

Here’s what it looks like:

{  
“@context”: “https://schema.org”,  
“@type”: “RealEstateListing”,  
“name”: “Three-Bedroom Apartment in Florence”,  
“description”: “Spacious three-bedroom apartment located in the heart of Florence, Italy.”,  
“url”: “https://example.com/listings/123”,  
“image”: “https://example.com/images/apartment.jpg”,  
“floorSize”: {    
“@type”: “QuantitativeValue”,    
“value”: 120,    
“unitText”: “sq. meters”  },  
“numberOfRooms”: 3,  “address”: {    
“@type”: “PostalAddress”,    
“streetAddress”: “Via Example 123”,    
“addressLocality”: “Florence”,    
“addressRegion”: “Tuscany”,    
“postalCode”: “50100”,    
“addressCountry”: “Italy”  },  
“price”: {    
“@type”: “MonetaryAmount”,    
“currency”: “EUR”,    
“value”: 250000  
}
}

Google will use this information to show rich results for your links:

Example of real estate schema results in SERPs.
Real Estate Schema showing in Google SERPs.

5. Table Schema

Tabular data is a powerful way to engage readers and showcase complex data in a digestible way, and it’s the most common format for dynamic data to be presented.

For example, Yahoo Finance shows their Forex data as a table:

It’s also a very common way to add comparisons to a page.

To explain to Google what the table shows, we can use the Table schema, which allows you to provide context and organization for data on a page.

Here’s what it looks like:

{  “@context”: “https://schema.org”,  
“@type”: “Table”,  
“name”: “Shoe Comparison Table”,  
“description”: “A comparison table for two shoes based on price, quality, reviews, and shipping time.”,  
“tableSchema”: {    
“columnCount”: 5,    
“column”: [      
{        
“name”: “Shoe”,        
“propertyID”: “name”      
},      
{        
“name”: “Price”,        
“propertyID”: “price”      
},      
{        
“name”: “Quality”,        
“propertyID”: “quality”      
},      
{        
“name”: “Reviews”,        
“propertyID”: “review”      
},      
{        
“name”: “Shipping Time”,        
“propertyID”: “shippingTime”      
}    
],    
“row”: [      
{       
 “item”: [          
{            
“@type”: “PropertyValue”,            
“name”: “Nike Air Max”          
},          
{            
“@type”: “MonetaryAmount”,            
“price”: “$100”          
},          
{            
“@type”: “PropertyValue”,            
“name”: “High”         
 },          
{            
“@type”: “Rating”,            
“ratingValue”: “4.5”          
},          
{            
“@type”: “Duration”,            
“name”: “2-3 days”          
}        
]      
},      
{        
“item”: [          
{            
“@type”: “PropertyValue”,            
“name”: “Adidas Ultraboost”          
},          
{            
“@type”: “MonetaryAmount”,            
“price”: “$120”          
},          
{            
“@type”: “PropertyValue”,            
“name”: “Very High”          
},          
{            
“@type”: “Rating”,            
“ratingValue”: “4.8”          
},          
{            
“@type”: “Duration”,            
“name”: “1-2 days”          
}        
]      
}    
]  
}
}

Rich snippets, when using the Table schema, can include additional information from the table, like individual data cells or summaries, making it easier for users to find relevant information directly on the search result page.

Implementing Schema Markup Dynamically with Google Tag Manager

Of course, what’s the point of using these schemas if we have to update manually every time a new item gets added to a category page or a new property is submitted to our platform?

Now that we know which pages show dynamic content and what schemas we want to use, it’s time to make our schema work for us, and for that, we’ll be using Google Tag Manager.

Note: shout-out to Schemantra for this idea.

1. Create a Google Tag Manager account

The first thing you need to do is set up your Google Tag Manager account. This process is super simple and just requires some information from your end.

Log in with your Gmail, navigate to Google Tag Manager, and click “create account”.

How to implement schema markup with Google Tag Manager

Fill in the information required and choose “Web” as a target platform.

"Web" target platform for schema - Google Tag Manager

Once inside, you’re ready for the next step.

Google Tag Manager dashboard

2. Create the Template for Your Schema Markup

For this example, we’ll use the snippet we wrote for the ItemList schema above, but feel free to use the schema best suited for your needs.

If you’re not sure how to write your template, check our article on structured data for SEO and follow the steps inside.

Here’s the snippet we will be using:

<script type=”application/ld+json”>
{
“@context”: “https://schema.org”,
“@type”: “ItemList”,”itemListElement”: [
{
“@type”: “Product”,”name”: “Nike Air Max 200”,
“description”: “Stylish and comfortable running shoes.”,
“url”: “https://example.com/products/nike-air-max-200”},
{
“@type”: “Product”,”name”: “Adidas Ultraboost 21”,
“description”: “High-performance athletic shoes with responsive cushioning.”,
“url”: “https://example.com/products/adidas-ultraboost-21”},
{
“@type”: “Product”,”name”: “Puma RS-X Bold”,
“description”: “Modern and trendy sneakers with retro design elements.”,
“url”: “https://example.com/products/puma-rs-x-bold”
}
]
}
</script>

One important thing to keep in mind is that your template should be a real-world representation of the content on your pages.

For example, Nike’s running shoes category page displays 62 shoes on a single page:

How to create a schema template for your product category using Google Tag Manager

So for this template to work, it must be created to fit 62 items. If you have a category page showing 30 items at a time, your template should fit that number of items.

Note: We’ll stick to three for simplicity’s sake.

3. Identify the Dynamic Fields and Replace the Values with Variables

In other words, you’ll want to identify the different values that’ll be changing for every item. Which, in our case, are the name, description, and URL for every product on the page.

Example of individual product schema code

Instead of having a hard-coded value, let’s change them for a variable using double curly braces and a descriptive name. This will make our schema dynamic, as the variables can take any value.

<script type=”application/ld+json”>
{
“@context”: “https://schema.org”,
“@type”: “ItemList”,”itemListElement”: [
{
“@type”: “Product”,
“name”: “{{product_name_one}}”,
“description”: “{{product_description_one}}”,
“url”: “{{product_url_one}}”},
{
“@type”: “Product”,”name”: “{{product_name_two}}”,
“description”: “{{product_description_two}}”,
“url”: “{{product_url_two}}”},
{
“@type”: “Product”,
“name”: “{{product_name_three}}”,
“description”: “{{product_description_three}}”,
“url”: “{{product_url_three}}”
}
]
}
</script>

4. Get the Target Information Using CSS Selectors

For our schema to work, we need to find a way to provide Google Tag Manager with the right information to inject into the schema template, and the way we do that is through CSS selectors.

Using CSS classes or IDs, we can tell our program where to find the information, and because pages from the same type use the same template, we know it’ll work across the entire site.

To simplify the process, let’s install SelectorGadget and open it on the page we want to markup and only work with the name of the product (but the process is the same for the rest of them).

Product schema using CSS.

The tool will display the recommended CSS selector at the bottom right of the screen when you click on an object.

Men clothing under a certain product category.

As you can see, it has highlighted in green the element I clicked and in yellow all the other elements that I’m selecting using the CSS selector shown at the bottom.

However, for this to work dynamically, we need to make it more specific:

CSS selector displayed on product listings.

Now this CSS selector is only picking the first element of the page, and you can do the same thing for the rest of the items.

Important: You need to check that it’ll work on the rest of the pagination, which in this case it does.

5. Create Your Variables in Google Tag Manager

Now that you have all your selectors, open tag manager, go to variables, and click on “new”.

How to create variables in Google Tag Manager.

Next, click on the box in the middle and choose DOM Element as the variable type. You can also name your variable in this stage, we went with product_name_one to keep it descriptive.

How to name your variables and choose DOM Elements.

From the dropdown menu, choose CSS selector and add the selector for the name – the one you found with SelectorGadget.

How to select CSS on Google Tag Manager.

When using the DOM Element variable type, “the value is set to the text of the DOM element or the value of the specified DOM element attribute.”

Note: Explore the different types of variables available as they can help you get different information from the elements in your page. For example, the URL variable would get the Href’s value inside an element.

6. Deploy Your Schema

After configuring the variables and where they’re getting their data, it’s time to create a new tag.

How to create a new tag on Google Tag Manager

Click on “tag configuration”, choose custom HTML, and paste your template inside.

Tag configuration in Google Tag Manager

In this instance, we’ve only added the name variable as this is the one we’ve worked with, but you should place your entire template inside.

Next, let’s create a new trigger by clicking on the plus symbol.

Create a trigger in Google Tag Manager

For our trigger, we only want it to work when our user or Google finds the page, so let’s choose “DOM Ready” so once Google parses the page and the CSS selector from the first item is available, Google tag can fire the schema markup.

Trigger configuration in Google Tag Manager

And there you have it. Now your product category pages’ schemas will update automatically to match your products.

Wrapping Up

There’s a plethora of variable types and triggers you can use to make your schema scalable and sustainable, and because every website is unique, there’s not a one-size-fits-all configuration.

Depending on how your pages are constructed and the unique needs of the type of pages you want to markup, you’ll have to figure out what schema fits best.

Still, the process with GTM is always the same, so don’t worry about it.

What’s really important is to make sure you’re using a schema that represents the content that’s actually on the page. Otherwise, it can be seen as you are trying to mislead Google, and they can penalize you for it.

Notification to ensure you using the right schema for your page

Here’s a great article on the five mistakes to avoid when implementing schemas worth checking.

Schema markup is a tool to describe your content in a way Google and other search engines can understand, so using the wrong one makes everything more complicated.

Remember, it is a standardized code format for a reason, don’t use a markup designed for property listings to talk about products.

Leo Rodriguez

Leo Rodriguez

Leo is a technical content writer based in Italy with over 4 years of experience in technical SEO. He’s currently working at saas.group as a content marketing manager. Contact him on LinkedIn.

Table of Contents

Prerender’s Newsletter

We’ll not send more than one email per week.

More From Our Blog

In this article, we’ll look at what a headless CMS is, how it combines with React, and the benefits of
In this article, we'll explore practical tips to optimize your e-commerce site for mobile shoppers and convert them into loyal,

Increased Traffic and
Sales Awaits

Unlock missed opportunities and reach your full SEO potential. When more web pages are crawled, it’s easier to index more of your site and boost SEO performance. Get started with 1,000 URLs free.