Structured Markup for Medical WebPages

Hello w3C Community!

There are few resources on the web about implementing structured data on 
medical pages. Below is a small code that can be a referenced in 
integrating Microdata on medical web pages.

The code below uses this Schema: https://schema.org/Physician


<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/MedicalCode">
              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 code is not perfect but I believe this can help someone struggling 
where to start with their integration. Your feedback is appreciated. I 
am reaching out to the community to help me improve this code in 
accordance to the W3C's standard.

Thank you and more power.


Baloydi Lloydi
e: lordzden@asknoypi.com
w: https://dumjobs.com/

Received on Monday, 6 March 2017 16:16:12 UTC