Google gives this example to markup your logo:
<div itemscope itemtype="http://schema.org/Organization">
<a itemprop="url" href="http://www.example.com/">Home</a>
<img itemprop="logo" src="http://www.example.com/logo.png" />
</div>
http://googlewebmastercentral.blogspot.ca/2013/05/using-schemaorg-markup-for-organization.html
But that example has the img outside the anchor, I want to put it inside...so I'm wondering can I do it this way instead:
<a itemscope itemtype="http://schema.org/Organization" href="http://www.example.com/">
<img itemprop="logo" src="http://www.example.com/logo.png" />
</a>
Is this valid? Note: I took out the URL itemprop.