Hello!
For those that don’t know, you can read more about microdata on wikipedia.
What I know (correct me if I’m wrong)
<div id="contactDetails" itemprop="contactPoint" itemscope="itemscope" itemtype="http://schema.org/Person">
<p itemprop="name">George</p>
</div>
This means that the itemprop “name” is part of the property “contactPoint”, of type “Person”
Now, for those that do know more, can you explain how the www.schema.org structure works?
I mean, how can I use the dictionary?
Example:
We can see http://www.schema.org/ContactPoint
But under the item http://schema.org/Person there is a property contactPoint (lower case first) that is of Expected type “ContactPoint”. What does this mean and how will be this used in code.
Do you know any tutorial that will try to make me understand better how this (schema.org) dictionary works?