Movie Structured Data

You can mark up your movie lists with structured data so users can explore movies through Google Search. You can provide details about the movies, such as the title of the movie, director, and an image of the movie. The movie carousel is only available on mobile devices.

Summary page with multiple full details pages

The summary page has a short description of each item in the list, and each description points to a separate details page that is focused entirely on one item.

For example,

<script type="application/ld+json">
{
"@context":"https://schema.org",
"@type":"ItemList",
"itemListElement":[
{
"@type":"ListItem",
"position":1,
"url":"http://example.com/a-star-is-born.html"
},
{
"@type":"ListItem",
"position":2,
"url":"http://example.com/bohemian-rhapsody.html"
},
{
"@type":"ListItem",
"position":3,
"url":"http://example.com/black-panther.html"
}
]
}
</script>

Required Properties

  • image (URL or ImageObject): An image that represents the movie.

  • name (Text): The name of the movie.

Single, all-in-one-page list

A single, all-in-one-page list hosts all list information, including full text of each item.