The Ultimate Guide to Clip Schema

Clip Schema
Use the following JSON-LD code snippet to implement Clip Schema on your website. This structured data helps search engines understand video clip content, especially when part of a larger TV show or season.
{
"@context": "https://schema.org/",
"@type": "Clip",
"name": "Highlight Reel",
"partOfSeason": {
"@type": "TVSeason",
"seasonNumber": "2"
},
"partOfEpisode": {
"@type": "TVEpisode",
"name": "The Big Game"
},
"url": "https://www.example.com/clip.mp4",
"description": "A highlight reel from the latest episode."
}
Replace the placeholder values such as name
, seasonNumber
, episode name
, url
, and description
with your actual clip details.
For more details on implementing video-related structured data, check the Schema Markup blog post.