Skip to content

Instantly share code, notes, and snippets.

@dmnkhrn
dmnkhrn / video-json-ld-youtube-template.json
Last active December 30, 2022 10:03
Video JSON-LD Template for YouTube videos
<script type ="application/ld+json">
{
"@context": "https://schema.org",
"@type": "VideoObject",
"name": "Title of the video",
"description": "Description of the video",
"keywords": "video tags, comma separated",
"@id": "https://www.example.com/where-video-is-ebedded/page.html",
"thumbnailUrl": "https://www.example.com/thumbnail/video-preview.jpg",
"contentUrl": "https://www.youtube.com/watch?v=abc123",
@dmnkhrn
dmnkhrn / faqpage-json-ld-template.json
Last active November 29, 2021 08:55
FAQPage JSON-LD Template
<script type = "application/ld+json"> {
"@context": "http://schema.org",
"@type": "FAQPage",
"name": "Title of the page",
"mainEntity": [{
"@type": "Question",
"name": "Is this the first question?",
"answerCount": 1,
"acceptedAnswer": {
"@type": "Answer",