I'm trying to markup a vacancy/job item with microdata but I wonder whether I'm doing it the right way, because my item properties like 'title' and 'date' don't make sense in combination with my itemtype 'organization'. How could one rewrite the following block better leveraging microdata?
<li itemscope itemtype='http://data-vocabulary.org/Organization'>
<a href='Web_developer.html'>
<span itemprop='title'>Web developer</span>
<span itemprop='name'>Company Name</span>,
<span itemprop='locality'>City</span>
</a>
<p itemprop='summary'>Lorem ipsum dolores amet ...</p>
<p>Published at <span itemprop='date'>28 Jan 2011</span>,
<span itemprop='views'>75</span> views</p>
</li>
Or can I create/suggest an itemtype='job' myself? If so, how?