Schema.org and nested items

Hi,

Initially, my "profile" pages was described with only a 
http://schema.org/person itemtype and all the needed information inside.
The google rich snippet testing tool was corrected recognizing my tags, 
and was displaying for example the picture of the person.


E.g. :

<html itemscope="itemscope" itemtype="http://schema.org/Person">
[...]
</html>

However, I've recently changed the structure of my pages to do something 
more logical (at least for me) :


<html itemscope="itemscope" itemtype="http://schema.org/ProfilePage">
     [...]
     <div itemprop="about" itemscope="itemscope" 
itemtype="http://schema.org/Person">
         [...]
     </div>
     [...]
</html>

The structure is properly recognized by google rich snippets testing 
tool, but it doesn't display any excerpt :

http://www.google.com/webmasters/tools/richsnippets?url=http%3A%2F%2Fwww.wiktik.com%2Fprofil%2Flea-bourratiere-47&view=

I'm doing something wrong, or it's just the rich snippets tool which is 
not able to render it properly ?



Last question :

Would it more sense to write this :

<html itemscope="itemscope" itemtype="http://schema.org/ProfilePage">
     [...]
     <div itemprop="mainContentOfPage" itemscope="itemscope" 
itemtype="http://schema.org/WebPageElement">
         <div itemprop="about" itemscope="itemscope" 
itemtype="http://schema.org/Person">
             [...]
         </div>
     </div>
     [...]
</html>

or it's just basically the same ?

Thanks and regards,

-- 
Jocelyn Fournier
www.wiktik.com

Received on Monday, 14 November 2011 00:44:37 UTC