- From: Ghaulser Rigoti <ghaulserigoti@gmail.com>
- Date: Tue, 10 Sep 2019 11:29:23 +0200
- To: public-schemaorg@w3.org
Received on Tuesday, 10 September 2019 09:29:58 UTC
What is the difference between using the graph syntax instead using the
classic one in the json ld? Doest it have some advantages?
Classic
[
{
"@context": "http://schema.org",
"@type": "WebSite",
...
},
{
"@context": "http://schema.org",
"@type": "Article",
...
}
]
Graph
{
"@context": "https://schema.org",
"@graph": [
{
"@type": "WebSite",
...
},
{
"@type": "WebPage",
...
}
]
}
Greetings
Received on Tuesday, 10 September 2019 09:29:58 UTC