Created
March 21, 2024 18:05
-
-
Save patrickcoombe/c18386639b55da0ea7676c91070aeda7 to your computer and use it in GitHub Desktop.
Carousel or Item List JSON-LD
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <script type="application/ld+json"> | |
| { | |
| "@context": "https://schema.org", | |
| "@type": "ItemList", | |
| "itemListElement": [ | |
| { | |
| "@type": "ListItem", | |
| "position": "1", | |
| "item": { | |
| "@type": "Movie", | |
| "url": "https://example.com/2019-best-picture-noms#a-star-is-born", | |
| "name": "A Star Is Born", | |
| "image": "https://example.com/photos/6x9/photo.jpg", | |
| "dateCreated": "2018-10-05", | |
| "director": { | |
| "@type": "Person", | |
| "name": "Bradley Cooper" | |
| }, | |
| "review": { | |
| "@type": "Review", | |
| "reviewRating": { | |
| "@type": "Rating", | |
| "ratingValue": "5" | |
| }, | |
| "author": { | |
| "@type": "Person", | |
| "name": "John D." | |
| } | |
| }, | |
| "aggregateRating": { | |
| "@type": "AggregateRating", | |
| "ratingValue": "90", | |
| "bestRating": "100", | |
| "ratingCount": "19141" | |
| } | |
| } | |
| }, | |
| { | |
| "@type": "ListItem", | |
| "position": "2", | |
| "item": { | |
| "@type": "Movie", | |
| "name": "Bohemian Rhapsody", | |
| "url": "https://example.com/2019-best-picture-noms#bohemian-rhapsody", | |
| "image": "https://example.com/photos/6x9/photo.jpg", | |
| "dateCreated": "2018-11-02", | |
| "director": { | |
| "@type": "Person", | |
| "name": "Bryan Singer" | |
| }, | |
| "review": { | |
| "@type": "Review", | |
| "reviewRating": { | |
| "@type": "Rating", | |
| "ratingValue": "3" | |
| }, | |
| "author": { | |
| "@type": "Person", | |
| "name": "Vin S." | |
| } | |
| }, | |
| "aggregateRating": { | |
| "@type": "AggregateRating", | |
| "ratingValue": "61", | |
| "bestRating": "100", | |
| "ratingCount": "21985" | |
| } | |
| } | |
| }, | |
| { | |
| "@type": "ListItem", | |
| "position": "3", | |
| "item": { | |
| "@type": "Movie", | |
| "name": "Black Panther", | |
| "url": "https://example.com/2019-best-picture-noms#black-panther", | |
| "image": "https://example.com/photos/6x9/photo.jpg", | |
| "dateCreated": "2018-02-16", | |
| "director": { | |
| "@type": "Person", | |
| "name": "Ryan Coogler" | |
| }, | |
| "review": { | |
| "@type": "Review", | |
| "reviewRating": { | |
| "@type": "Rating", | |
| "ratingValue": "2" | |
| }, | |
| "author": { | |
| "@type": "Person", | |
| "name": "Trevor R." | |
| } | |
| }, | |
| "aggregateRating": { | |
| "@type": "AggregateRating", | |
| "ratingValue": "96", | |
| "bestRating": "100", | |
| "ratingCount": "88211" | |
| } | |
| } | |
| } | |
| ] | |
| } | |
| </script> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment