Schema.org is what I've been using to add microdata to my first website but I'm finding out that the website is very vague and most of the questions I've had so far I have been able to find the answer on Stackoverflow or WebMaster.
On one page I have the schema set up as
<div itemscope itemtype="https://schema.org/Person">
<h1><span itemprop="name">Name Here</span> — SEO</h1>
<h2 itemprop="address"><i>Manchester, New Hampshire</i></h2>
<h3><a href="mailto:email@gmail.com?Subject=Service%20Inquiry">Email Me</a>
—<span itemprop="email">email@gmail.com</span></h3>
</div>
No problem there, I hope.
On another page of my website I only have the email me header as none of the other information is relevant. Right now I have that schema set up as
<h2><a href="mailto:email@gmail.com?
Subject=Service%20Inquiry">Email Me</a> —<span itemscope
itemtype="https://schema.org/email">email@gmail.com</span></h2>
Email is an itemprop of person but I can't find the documentation saying that I can't use an itemprop as the itemtype. Did I use this correctly,and will the schema be read any differently to a crawler than the itemprop use of email?