Last active
April 26, 2019 18:18
-
-
Save patrickcoombe/9fc5e68fb2dd023ca457 to your computer and use it in GitHub Desktop.
JSON-LD for a video object
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": "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