Mobile app version of vmapp.org
Login or Join
Reiling115

: Person vs. Organization type for a person name that is a brand of some sort I am working on a website which is actually a person's personal site which will contain a store. However, this

@Reiling115

Posted in: #SchemaOrg #Seo

I am working on a website which is actually a person's personal site which will contain a store. However, this person's name is actually a brand of some sort.

My question is should I use the type Person or Organization structured data markup for it? Should it matter in any way?

The current website ranks as number 1 for the name however I am afraid that in case I use the Organization markup things might change and search engines should see it as a website not actually related to the name so much.

There is also the possibility of not using any markup whatsoever. What should be done here?

10.02% popularity Vote Up Vote Down


Login to follow query

More posts by @Reiling115

2 Comments

Sorted by latest first Latest Oldest Best

 

@Ann8826881

It is possible to use multiple types for a single entity (i.e., Person and Organization), but I think it wouldn’t make sense in such a case. I’d argue that the business and the person running the business are different entities, even if they share the name.

Possible cases that make clear why having separate entities would be useful: the business might get a new name in the future, but the person will likely keep the name; the business might be sold, but not the person; etc.

You could provide both entities and relate them with the founder property.

Example in RDFa:

<div vocab="http://schema.org/" typeof="Organization">
<div property="name">John Doe</div>
<link property="url" href="/shop" />

<div property="founder" typeof="Person">
<div property="name">John Doe</div>
<link property="url" href="/" />
</div>

</div>


If the site has a page about the person (I assumed it’s the homepage in the example above) and about the business, you can use these URIs to identify the entities and reference them where needed (so you don’t have to duplicate the data about the person/organization on every page). In RDFa, the resource attribute can be used for this purpose.

Unless you provide irrelevant information (as in: spamdexing) in your structured data, there’s no reason to assume that it could affect your ranking.

10% popularity Vote Up Vote Down


 

@Barnes591

My advice would be to use the person mark-up on the website that is about the person and the organization mark-up on the store.

This way, the relevant schema will be detected for the SERPs.

10% popularity Vote Up Vote Down


Back to top | Use Dark Theme