Skip to content

Instantly share code, notes, and snippets.

@patrickcoombe
Last active April 26, 2019 18:18
Show Gist options
  • Select an option

  • Save patrickcoombe/9fc5e68fb2dd023ca457 to your computer and use it in GitHub Desktop.

Select an option

Save patrickcoombe/9fc5e68fb2dd023ca457 to your computer and use it in GitHub Desktop.
JSON-LD for a video object
<script type="application/ld+json">
{
"@context": "https://schema.org/",
"@type": "VideoObject",
"name": "Learn JSON-LD",
"@id": "http://example.com/video",
"datePublished": "2015-10-02",
"description" : "In this video, we'll teach you how to use json ld and get 6 pack abs.",
"thumbnailURL" : "http://placehold.it/350x150",
"thumbnail" : "http://placehold.it/350x150",
"duration" : "T1M33S",
"uploadDate" : "2015-10-02",
"author": {
"@type": "Person",
"name": "Jason Lord"
}
}
</script>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment