Movie Carousel Schema Fixed Official
"@context": "https://schema.org", "@type": "ItemList", "itemListElement": [ "@type": "ListItem", "position": 1, "url": "https://example.com/movies/inception" ]
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. movie carousel schema
Google Search results carousels are not guaranteed; they depend on competition, page authority, and proper implementation. Always test with Rich Results Test . "@context": "https://schema
Here's the minimal, correct for a movie carousel: Always test with Rich Results Test
"@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"] ]