Schema.org for Medical Doctors (Physician)

SCHEMA PHYSICIAN VS PERSON

Schema for Physician is a branch of Local Business while Schema for Person is under Thing > Person.

I recently integrated Schema Markup for Physicians, and I had a difficulty trying to come up with  a validated Schema Markup on Google Structured Data Testing Tool. There are only few examples you can find on the web, so I decided to blog about how you can code https://schema.org/Physician. After many hours of trial and error markup testing, I was able to produce a code with you can refer below.

<div itemscope itemtype="http://schema.org/Physician">

<span itemprop="name"><strong>Dr. Baloydi N. Lloydi, MD</strong></span><br>
<img itemprop="image" src="https://asknoypi.com/wp-content/uploads/2015/05/photo.jpg" alt="Doc's Picture" />
<p itemprop="description" >Add Your Desciption Here</p>

<p>Social Media Links: <a itemprop="sameAs" href="#">G+</a>, <a itemprop="sameAs" href="#">Twitter</a> </p> 
<div itemprop="geo" itemscope itemtype="http://schema.org/GeoCoordinates">
                Longitude: <span itemprop="longitude">-97.343846</span>, 
                Longitude: <span itemprop="latitude">32.7309</span>
</div>           
<p>Address: </p>
<div itemprop="address" itemscope itemtype="http://schema.org/PostalAddress">
        <div >
                    <span itemprop="streetAddress" class="street-address">5588 8th Ave Ste 374</span></div>
                    <span itemprop="addressLocality" class="locality">Fort Worth</span>, 
                    <span itemprop="addressRegion" class="region">TX</span> 
                    <span itemprop="postalCode" class="postal-code">76104</span>
        </div>
<br>
<p>Affiliations:</p>
<div itemprop="hospitalAffiliation" itemscope itemtype="http://schema.org/Hospital">
<span itemprop="name">Texas Medical Center</span><br>
       <div itemprop="address" itemscope itemtype="http://schema.org/PostalAddress">
                    <span itemprop="streetAddress" class="street-address">5588 8th Ave Ste 374</span>,
                    <span itemprop="addressLocality" class="locality">Fort Worth</span><br> 
                    <span itemprop="addressRegion" class="region">TX</span> 
                    <span itemprop="postalCode" class="postal-code">76104</span>
       </div>
</div>
      <div itemprop="medicalSpecialty" itemscope itemtype="https://schema.org/medicalSpecialty">
             <div itemprop="code" itemscope itemtype="https://schema.org/MedicalEntity">
             Code: <span itemprop="codeValue name">Y81.0</span><br>
             <span itemprop="description">Diagnostic and monitoring general- and plastic-surgery devices associated with adverse incidents</span><br>
      </div>

</div>

This how it looks on Google Structured Data Testing Tool validation:

How did you find the Medical Code?