Image metadata in Google Images structured data in json
Mark E.
<script type="application/ld+json">
{
"@context": "https://schema.org",
"@type": "ImageObject",
"contentUrl": "https://example.com/image.jpg",
"name": "Example Image",
"description": "A beautiful example image",
"thumbnailUrl": "https://example.com/thumbnail.jpg",
"uploadDate": "2022-03-28T10:00:00Z",
"width": "1200",
"height": "800",
"author": {
"@type": "Person",
"name": "John Doe",
"url": "https://example.com/author"
},
"publisher": {
"@type": "Organization",
"name": "Example.com",
"logo": {
"@type": "ImageObject",
"url": "https://example.com/logo.png",
"width": "600",
"height": "60"
}
},
"associatedMedia": {
"@type": "VideoObject",
"contentUrl": "https://example.com/video.mp4",
"description": "An example video",
"name": "Example Video",
"thumbnailUrl": "https://example.com/video-thumbnail.jpg",
"uploadDate": "2022-03-28T10:00:00Z",
"width": "1920",
"height": "1080",
"duration": "PT1M30S"
}
}
</script>
This structured data includes information such as the image's URL, name, description, thumbnail URL, dimensions, upload date, author, publisher, and associated media, which can be used to enhance the image's metadata in Google Images search results.