Using special marking helps to improve the video display from your site in the results of Google search. The marking allows you to indicate important details: description, preview, date of publication and the duration of the video.
To add structured data, use one of the supported formats:
| Property | Type | Description |
|---|---|---|
| NAME | Text | The name of the video |
| Thumbnailurn | URL | Reference for a video |
| UploadDate | Datetime | Date of publication in ISO 8601 format |
<script type="application/ld+json">
{
"@context": "https://schema.org",
"@type": "VideoObject",
"name": "Пример видео",
"description": "Описание видео контента",
"thumbnailUrl": "https://example.com/video-thumbnail.jpg",
"uploadDate": "2024-01-01T12:00:00+03:00",
"duration": "PT5M30S",
"contentUrl": "https://example.com/video-file.mp4",
"embedUrl": "https://example.com/embed/123"
}
</script>For LIVE mark, use BroadCastEvent Marking:
"publication": {
"@type": "BroadcastEvent",
"isLiveBroadcast": true,
"startDate": "2024-01-01T19:00:00+03:00",
"endDate": "2024-01-01T20:30:00+03:00"
}To highlight important video fragments, use Clip:
"hasPart": {
"@type": "Clip",
"name": "Важный момент",
"startOffset": 120,
"endOffset": 180,
"url": "https://example.com/video?t=120"
}Before publication, check the markings using Rich Results Test And make sure that the page is available for indexing.
For professional configuration of structured data, contact SEO.computer: info@seo.computer, WhatsApp +79202044461
ID: 11