I'm making a page that displays data for a person. At the beginning there is the name and a text, at the end there is the address, e-mail, etc.
I'm using Rich Snippet , but all the examples I find about it, show the entire structure in a single div
that contains all the person's data, which is not my case.
My HTML looks something like this:
<html>
<row>
...
nome da pessoal
</row>
<row>
...
</row>
<row>
...
</row>
<row>
...
</row>
<row>
endereço, telefone, etc.
</row>
</html>
I will not put it technically as it would be, because the question has to do with the architecture of Rich Snippet and not about the technical part of how it applies.
<html>
<div itemscope itemtype="http://schema.org/Person">
<row>
...
<div itemprop="name"> nome da pessoal </div>
</row>
</div>
<row>
...
</row>
<row>
...
</row>
<row>
...
</row>
<div itemscope itemtype="http://schema.org/Person">
<row>
<div itemprop="telephone"> telefone </div>
<div itemprop="email"> [email protected] </div>
</row>
</div>
</html>
Notice that within a single HTML I have two <div itemscope itemtype="http://schema.org/Person">
and that's the question:
Will they be interpreted as two different people or would I have to put everything inside a single DIV
?
If it's a single DIV
, could I have it wrapping all HTML between the beginning and end of the person? (Since the entire page is contains information from only one staff)