Thing > Intangible > StructuredValue > ContactPoint > PostalAddress

The mailing address.
PropertyExpected TypeDescription
Properties from Thing
description Text A short description of the item.
image URL URL of an image of the item.
name Text The name of the item.
url URL URL of the item.
Properties from ContactPoint
contactType Text A person or organization can have different contact points, for different purposes. For example, a sales contact point, a PR contact point and so on. This property is used to specify the kind of contact point.
email Text Email address.
faxNumber Text The fax number.
telephone Text The telephone number.
Properties from PostalAddress
addressCountry Country The country. For example, USA. You can also provide the two-letter ISO 3166-1 alpha-2 country code.
addressLocality Text The locality. For example, Mountain View.
addressRegion Text The region. For example, CA.
postOfficeBoxNumber Text The post offce box number for PO box addresses.
postalCode Text The postal code. For example, 94043.
streetAddress Text The street address. For example, 1600 Amphitheatre Pkwy.
Schema Draft Version 0.9

Example 1

Original HTML:

Jane Doe
<img src="janedoe.jpg" />

Professor
20341 Whitworth Institute
405 Whitworth
Seattle WA 98052
(425) 123-4567
<a href="mailto:jane-doe@xyz.edu">jane-doe@illinois.edu</a>

Jane's home page:
<a href="www.janedoe.com">janedoe.com</a>

Graduate students:
<a href="www.xyz.edu/students/alicejones.html">Alice Jones</a>
<a href="www.xyz.edu/students/bobsmith.html">Bob Smith</a>


With Microdata:
<div itemscope itemtype="http://schema.org/Person">
  <span itemprop="name">Jane Doe</span>
  <img src="janedoe.jpg" itemprop="image" />

  <span itemprop="jobTitle">Professor</span>
  <div itemprop="address" itemscope itemtype="http://schema.org/PostalAddress">
    <span itemprop="streetAddress">
      20341 Whitworth Institute
      405 N. Whitworth
    </span>
    <span itemprop="addressLocality">Seattle</span>,
    <span itemprop="addressRegion">WA</span>
    <span itemprop="postalCode">98052</span>
  </div>
  <span itemprop="telephone">(425) 123-4567</span>
  <a href="mailto:jane-doe@xyz.edu" itemprop="email">
    jane-doe@xyz.edu</a>

  Jane's home page:
  <a href="www.janedoe.com" itemprop="url">janedoe.com</a>

  Graduate students:
  <a href="www.xyz.edu/students/alicejones.html" itemprop="colleagues">
    Alice Jones</a>
  <a href="www.xyz.edu/students/bobsmith.html" itemprop="colleagues">
    Bob Smith</a>
</div>

Example 2

Original HTML:

Google Inc.
P.O. Box 1234
Mountain View, CA
94043
United States


With Microdata:
<div itemscope itemtype="schema.org/PostalAddress">
 <span itemprop="name">Google Inc.</span>
 P.O. Box<span itemprop="postOfficeBoxNumber">1234</span>
 <span itemprop="addressLocality">Mountain View</span>,
 <span itemprop="addressRegion">CA</span>
 <span itemprop="postalCode">94043</span>
 <span itemprop="addressCountry">United States</span>
</div>