---
title: "Google Structured Data Markup v2.0 released"
description: "We are very happy to announce that this major release signifies the start of an implementation cycle related to Google Structured Data accompanying"
url: "https://www.tassos.gr/blog/google-structured-data-markup-v2-0-released"
date: "2026-05-01T08:54:25+00:00"
language: "en-GB"
---

#  Google Structured Data Markup v2.0 released

 ![Sotiris Katsaniotis](https://www.gravatar.com/avatar/1fbc34bb4ccf7b8618a6950402e3d1ef?s=48)  Sotiris Katsaniotis  <a class="text-success authorURL" href="" target="_blank">Follow</a>

 Published in [Blog](https://www.tassos.gr/blog)

 Dec 10 2016

 1 min read

 Last updated may 14 2024

 ![Google Structured Data Markup v2.0 released](https://www.tassos.gr/media/k2/items/src/ae265ec8d02add74bcb0f72e47ec001b.jpg) We are very happy to announce that this major release signifies the start of an implementation cycle related to Google Structured Data accompanying particular data types such as Articles, Products, Events and much more yet to come in the upcoming releases.

## Schema

```json
{
    "@context": "https://schema.org",
    "@type": "BreadcrumbList",
    "itemListElement": [
        {
            "@type": "ListItem",
            "position": 1,
            "name": "Home",
            "item": "https://www.tassos.gr"
        },
        {
            "@type": "ListItem",
            "position": 2,
            "name": "Blog",
            "item": "https://www.tassos.gr/blog"
        },
        {
            "@type": "ListItem",
            "position": 3,
            "name": "Google Structured Data Markup v2.0 released",
            "item": "https://www.tassos.gr/blog/google-structured-data-markup-v2-0-released"
        }
    ]
}
```

```json
{
    "@context": "https://schema.org",
    "@type": "BlogPosting",
    "mainEntityOfPage": {
        "@type": "WebPage",
        "@id": "https://www.tassos.gr/blog/google-structured-data-markup-v2-0-released"
    },
    "headline": "Google Structured Data Markup v2.0 released",
    "image": {
        "@type": "ImageObject",
        "url": "https://www.tassos.gr/media/k2/items/src/ae265ec8d02add74bcb0f72e47ec001b.jpg"
    },
    "publisher": {
        "@type": "Organization",
        "name": "Tassos",
        "logo": {
            "@type": "ImageObject",
            "url": "https://www.tassos.gr/https://www.tassos.gr/media/brand/logo-text.png"
        }
    },
    "author": {
        "@type": "Person",
        "name": "Sotiris Katsaniotis",
        "url": "https://www.tassos.gr/blog/google-structured-data-markup-v2-0-released"
    },
    "datePublished": "2016-12-10T10:21:40+02:00",
    "dateCreated": "2016-12-10T10:21:40+02:00",
    "dateModified": "2024-05-14T10:40:38+03:00"
}
```
