Movie Carousel Schema (2026)

Here's the minimal, correct for a movie carousel:

Google Search results carousels are not guaranteed; they depend on competition, page authority, and proper implementation. Always test with Rich Results Test . movie carousel schema

"@context": "https://schema.org", "@type": "ItemList", "itemListElement": [ "@type": "ListItem", "position": 1, "url": "https://example.com/movies/inception" ] Here's the minimal, correct for a movie carousel:

A typically refers to structured data (JSON-LD) that allows you to display a horizontal list (carousel) of movies in Google Search results. This is officially known as the Carousel (or ItemList) schema, often combined with Movie schema. This is officially known as the Carousel (or

"@context": "https://schema.org", "@type": "ItemList", "itemListElement": [ "@type": "ListItem", "position": 1, "url": "https://example.com/movies/inception", "item": "@type": "Movie", "name": "Inception", "image": "https://example.com/images/inception.jpg", "director": "@type": "Person", "name": "Christopher Nolan" , "datePublished": "2010-07-16", "genre": ["Action", "Sci-Fi", "Thriller"] , "@type": "ListItem", "position": 2, "url": "https://example.com/movies/matrix", "item": "@type": "Movie", "name": "The Matrix", "image": "https://example.com/images/matrix.jpg", "director": "@type": "Person", "name": "Lana Wachowski" , "datePublished": "1999-03-31", "genre": ["Action", "Sci-Fi"] ]