VideoObject
Une video.
Documentation Schema.org — Google Search Central
Resultat Enrichi Google
Knowledge Graph LLM
Vidéo
✅ Actif
Type : Video (miniature video)
— Features visuelles : Miniature video dans les SERP, Badge 'Video' sur le resultat, Duree affichee, Carousel video
Proprietes (14)
| Propriete | Couche | Type | Signal | Description | Exemple |
|---|---|---|---|---|---|
| name requis | Text | Titre de la video | |
||
| thumbnailUrl requis | URL | URL de la miniature | |
||
| uploadDate requis | DateTime | Date de mise en ligne | |
||
| description | Text | Description | |
||
| contentUrl | URL | URL du fichier video | |
||
| embedUrl | URL | URL d'integration (iframe) | |
||
| duration | Duration | Duree (format ISO 8601) | |
||
| inLanguage | llm | Text | filtre | Langue de la video | |
| caption | llm | Text | editorial | Sous-titres/legende | |
| transcript | llm | Text | semantique | Transcription textuelle | |
| about | llm | Thing | semantique | Sujet de la video | |
| genre | llm | Text | categorisation | Genre/categorie | |
| hasPart | llm | Clip | editorial | Chapitres/segments | |
| interactionStatistic | llm | InteractionCounter | social | Statistiques (vues, likes) | |
| Propriete | Type | Requis | Description |
|---|---|---|---|
| name | Text | Oui | Titre de la video |
| thumbnailUrl | URL | Oui | URL de la miniature |
| uploadDate | DateTime | Oui | Date de mise en ligne |
| description | Text | Non | Description |
| contentUrl | URL | Non | URL du fichier video |
| embedUrl | URL | Non | URL d'integration (iframe) |
| duration | Duration | Non | Duree (format ISO 8601) |
| Propriete | Signal | Description | Cas d'usage LLM |
|---|---|---|---|
| inLanguage | filtre | Langue de la video | |
| caption | editorial | Sous-titres/legende | |
| transcript | semantique | Transcription textuelle | |
| about | semantique | Sujet de la video | |
| genre | categorisation | Genre/categorie | |
| hasPart | editorial | Chapitres/segments | |
| interactionStatistic | social | Statistiques (vues, likes) |
Modeles JSON-LD
Version minimale : conformite Google Rich Results uniquement.
{
"@context": "https://schema.org",
"@type": "VideoObject",
"name": "{{video_title}}",
"description": "{{video_description}}",
"thumbnailUrl": "{{thumbnail_url}}",
"uploadDate": "{{upload_date}}",
"contentUrl": "{{video_url}}"
}
Version enrichie : Google + Knowledge Graph LLM pour visibilite GenAI/SGE.
{
"@context": "https://schema.org",
"@type": "VideoObject",
"name": "{{video_title}}",
"description": "{{video_description}}",
"thumbnailUrl": "{{thumbnail_url}}",
"uploadDate": "{{upload_date}}",
"contentUrl": "{{video_url}}",
"duration": "{{duration}}",
"interactionStatistic": {
"@type": "InteractionCounter",
"interactionType": "https://schema.org/WatchAction",
"userInteractionCount": "{{view_count}}"
}
}