--
You received this message because you are subscribed to the Google Groups "Semantic Search Marketing" group.
To unsubscribe from this group and stop receiving emails from it, send an email to semantic-search-ma...@googlegroups.com.
To view this discussion on the web visit https://groups.google.com/d/msgid/semantic-search-marketing/600795a1-c66f-471d-8a3d-e65bd2766414n%40googlegroups.com.
Hi JarnoIf I were to place this on my website to indicate that I wrote an article that appears on another site (Searchenginejournal, for example)Does this make sense?
{
"@context": "https://schema.org",
"@graph":
[
{
"@id": "https://example.com/authors/wile-e-coyote/#Person",
"@type": "Person",
"name": "Wile E. Coyote"
},{
"@type":"Article",
"name": "New explosive tennis balls are da bomb",
What is the logic of reverse?Perhaos you can explain that on Wednesday.Thanks!Jason
--
You received this message because you are subscribed to the Google Groups "Semantic Search Marketing" group.
To unsubscribe from this group and stop receiving emails from it, send an email to semantic-search-ma...@googlegroups.com.
To view this discussion on the web visit https://groups.google.com/d/msgid/semantic-search-marketing/94d4ca49-fa5a-4bc1-9b68-b4c568bb5940n%40googlegroups.com.
So, given your other explanation, the reverse would be better (if Google looks at the page in isolation).
{
"@context": "https://schema.org",
"@graph":
[
{
"@type": "Person",
"name": "Wile E. Coyote",
"@reverse":
{
"author": {
"@type":"Article","url": "https://hugemediasite.com/articles/new-explosive-tennis-balls/",
"name": "New explosive tennis balls are da bomb",
}
},{
"@id": "https://example.com/authors/wile-e-coyote/#Article",
"@type":"Article",
"name": "New explosive tennis balls are da bomb"
}
]
}
OR simpler, this
{
"@context": "https://schema.org",
"@graph":
[
{
"@type": "Person",
"name": "Wile E. Coyote",
"@reverse":
{
"author": {
"@type":"Article",
"@id": "https://hugemediasite.com/articles/new-explosive-tennis-balls/#Article",
"url": "https://hugemediasite.com/articles/new-explosive-tennis-balls/",
"name": "New explosive tennis balls are da bomb"
}
}
}
]
}