jahorse
Newbie
- Jul 12, 2014
- 26
- 6
Hey guys, I have a question about the Person and LocalBusiness schemas, or more generally any Thing schema that uses the name, url, and sameAs fields. and I haven't been able to find any examples online of other people using it in this way.
Here's a simple example of the situation I'm wondering about. Let's say I have a website for a local business as well as a blog for that business on a different URL. I have my LocalBusiness schema defined something like this in an ld+json script tag:
I also own and run the blog, and I want to put the schema up there too. Would that be ok to use it as-is like that? Is it ok that the url on the blog site isn't the url of the blog, but the url of the main business site? Is it ok that it's an exact duplicate and contains itself in the sameAs section?
Thanks in advance!
Here's a simple example of the situation I'm wondering about. Let's say I have a website for a local business as well as a blog for that business on a different URL. I have my LocalBusiness schema defined something like this in an ld+json script tag:
Code:
{
"@context": "https://schema.org",
"@type": "LocalBusiness",
"name": "My Business",
"url": "http://www.my-business.com",
"sameAs": [
"http://my-business-blog.com",
"http://www.facebook.com/my-business",
"http://instagram.com/my-business"
]
}
I also own and run the blog, and I want to put the schema up there too. Would that be ok to use it as-is like that? Is it ok that the url on the blog site isn't the url of the blog, but the url of the main business site? Is it ok that it's an exact duplicate and contains itself in the sameAs section?
Thanks in advance!