Businesses and Organizations

 

ATTENTION: THIS PAGE IS Valid HTML 5 AND IS BEST VIEWED WITH HTML 5 - Please upgrade your browser or download one of the HTML 5 compatible browsers such as Mozilla Firefox, Chrome, Opera or IE 9 (March 14, 2011 or later). For more information see HTML 5 browsers.


If you find this helpful, please click the Google +1 Button to the left, if it is white, to make it turn blue or red. Thank you! (It also helps find this page again more easily.)


PDF mobile

Businesses and Organizations

Microdata for business listings and organization information

The Organization microdata can be used for both information about organizations as well as businesses. This could be used on an About page for a single business or organization or in an directory with listings of businesses and organizations.

Accilent Corp.
321 Forbes Ave.
Pittsburgh, PA 15222
USA
1-877-554-3210
Map & Directions
Beverly Hills Television Studio
123456 Seventh Street
Beverly Hills, CA 90210
USA
1-777-555-1212
Map & Directions

This is an actual working example of the Business / Organization microdata example code below. You can see how search engines might parse and display it using the Rich Snippets Testing Tool.

Syntax

Item type: http://data-vocabulary.org/Organization

PropertyDescription
nameThe name of the business or organization.
urlThe URL for their main web page.
addressThe address of the person or a Address microdata item for the address.
telThe main telephone number for the business or organization.
geoA Geographical microdata item with the geographical coordinates for the location on a map.
Examples
Business listing example
(see Business / Organization microdata demo above)
<dl itemscope="itemscope" itemtype="http://data-vocabulary.org/Organization">
   <dt itemprop="name">Accilent Corp.</dt>
   <dd><span itemprop="address" itemscope="itemscope"
      itemtype="http://data-vocabulary.org/Address">
         <span itemprop="street-address">321 Forbes Ave.</span><br/>
         <span itemprop="locality">Pittsburgh</span>, <span itemprop="region">PA</span>
         <span itemprop="postal-code">15222</span><br/>
         <span itemprop="country-name">USA</span>
      </span>
   </dd>
   <dd itemprop="tel">1-877-554-3210</dd>
   <dd><a itemprop="url" href="http://www.Accilent.com/">Accilent.com</a></dd>
   <dd><a href="http://maps.Google.com/maps?f=q&amp;source=s_q&amp;hl=en&amp;geocode=&amp;q=40.44,-80&amp;aq=&amp;sll=37.0625,-95.677068&amp;sspn=44.388698,77.519531&amp;ie=UTF8&amp;z=16"
      itemprop="geo" itemscope="itemscope" itemtype="http://data-vocabulary.org/Geo">
         Map &amp; Directions
         <meta itemprop="latitude" content="40.44" />
         <meta itemprop="longitude" content="-80.00" />
      </a>
   </dd>
</dl>
<dl itemscope="itemscope" itemtype="http://data-vocabulary.org/Organization">
   <dt itemprop="name">Beverly Hills Television Studio</dt>
   <dd><span itemprop="address" itemscope="itemscope"
      itemtype="http://data-vocabulary.org/Address">
         <span itemprop="street-address">123456 Seventh Street</span><br/>
         <span itemprop="locality">Beverly Hills</span>, <span itemprop="region">CA</span>
         <span itemprop="postal-code">90210</span><br/>
         <span itemprop="country-name">USA</span>
      </span>
   </dd>
   <dd itemprop="tel">1-777-555-1212</dd>
   <dd><a itemprop="url" href="http://www.ExampleOnly.com/">ExampleOnly.com</a></dd>
   <dd><a href="http://maps.Google.com/maps?f=q&amp;source=s_q&amp;hl=en&amp;geocode=&amp;q=34.13156,-118.44&amp;aq=&amp;sll=40.43992,-80.00007&amp;sspn=0.010468,0.018926&amp;ie=UTF8&amp;z=16"
      itemprop="geo" itemscope="itemscope" itemtype="http://data-vocabulary.org/Geo">
         Map &amp; Directions
         <meta itemprop="latitude" content="34.13156" />
         <meta itemprop="longitude" content="-118.44" />
      </a>
   </dd>
</dl>

In this example, the hypertext links to Google Maps are also microdata items with geogaphical coordinates. At first glance it may seem that it would not be appropriate to use the hypertext link as the item property, since the value is taken from the href attribute of the <a> tag when itemprop is coded without any other microdata item attributes. But since itemscope="itemscope" is also coded the value of the geo property is the microdata item defined by the a element.


Valid HTML 5