
Originally Posted by
Stomme poes
I can only point you to
the Draft specs for you to check against...
these are in Draft, meaning they are neither complete nor stable (though some parts are indeed unlikely to change). Search engines, I can't tell how conservative they are being with this. Some of them understand
microformats (the
hCard/vCard format) already as well.
Thanks for the extra documentation, read it all and it seems I did it correct. Or Atleast I hope so 
But now I am more confused about the itemtype atribute, as in the doc one can define the link pretty muct as one like.
Would this work just as well as?
Code:
<section itemscope itemtype="http://example.org/Movie">
<h1 itemprop="name">Hedral</h1>
<p itemprop="desc">Hedral is a male american domestic
shorthair, with a fluffy black fur with white paws and belly.</p>
<img itemprop="img" src="hedral.jpeg" alt="" title="Hedral, age 18 months">
</section>
As this one?
Code:
<section itemscope itemtype="http://http://schema.org/Movie">
<h1 itemprop="name">Hedral</h1>
<p itemprop="desc">Hedral is a male american domestic
shorthair, with a fluffy black fur with white paws and belly.</p>
<img itemprop="img" src="hedral.jpeg" alt="" title="Hedral, age 18 months">
</section>
Or if I want Google,Bing, Yahoo to understand that the type is there predefined value of a Movie ,I have to write the item link like this http://http://schema.org/Movie for reference?
Bookmarks