Note: You are viewing the development version of Schema.org. See how we work for more details.

addressRegion

A Schema.org Property
The region in which the locality is, and which is in the country. For example, California or another appropriate first-level Administrative division.

Values expected to be one of these types

Used on these types

Source

https://github.com/schemaorg/schemaorg/issues/2506


Examples

Example 1
Copied
Example notes or example HTML without markup.
  1. Jane Doe
  2. <img src="janedoe.jpg" alt="Photo of Jane Doe"/>

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

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

  11. Graduate students:
  12. <a href="http://www.xyz.edu/students/alicejones.html">Alice Jones</a>
  13. <a href="http://www.xyz.edu/students/bobsmith.html">Bob Smith</a>
Example encoded as Microdata embedded in HTML.
  1. <div itemscope itemtype="https://schema.org/Person">
  2.   <span itemprop="name">Jane Doe</span>
  3.   <img src="janedoe.jpg" itemprop="image" alt="Photo of Jane Doe"/>

  4.   <span itemprop="jobTitle">Professor</span>
  5.   <div itemprop="address" itemscope itemtype="https://schema.org/PostalAddress">
  6.     <span itemprop="streetAddress">
  7.       20341 Whitworth Institute
  8.       405 N. Whitworth
  9.     </span>
  10.     <span itemprop="addressLocality">Seattle</span>,
  11.     <span itemprop="addressRegion">WA</span>
  12.     <span itemprop="postalCode">98052</span>
  13.   </div>
  14.   <span itemprop="telephone">(425) 123-4567</span>
  15.   <a href="mailto:jane-doe@xyz.edu" itemprop="email">
  16.     jane-doe@xyz.edu</a>

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

  19.   Graduate students:
  20.   <a href="http://www.xyz.edu/students/alicejones.html" itemprop="colleague">
  21.     Alice Jones</a>
  22.   <a href="http://www.xyz.edu/students/bobsmith.html" itemprop="colleague">
  23.     Bob Smith</a>
  24. </div>
Example encoded as RDFa embedded in HTML.
  1. <div vocab="https://schema.org/" typeof="Person">
  2.   <span property="name">Jane Doe</span>
  3.   <img src="janedoe.jpg" property="image" alt="Photo of Jane Doe"/>

  4.   <span property="jobTitle">Professor</span>
  5.   <div property="address" typeof="PostalAddress">
  6.     <span property="streetAddress">
  7.       20341 Whitworth Institute
  8.       405 N. Whitworth
  9.     </span>
  10.     <span property="addressLocality">Seattle</span>,
  11.     <span property="addressRegion">WA</span>
  12.     <span property="postalCode">98052</span>
  13.   </div>
  14.   <span property="telephone">(425) 123-4567</span>
  15.   <a href="mailto:jane-doe@xyz.edu" property="email">
  16.     jane-doe@xyz.edu</a>

  17.   Jane's home page:
  18.   <a href="http://www.janedoe.com" property="url">janedoe.com</a>

  19.   Graduate students:
  20.   <a href="http://www.xyz.edu/students/alicejones.html" property="colleague">
  21.     Alice Jones</a>
  22.   <a href="http://www.xyz.edu/students/bobsmith.html" property="colleague">
  23.     Bob Smith</a>
  24. </div>
Example encoded as JSON-LD in a HTML script tag.
  1. <script type="application/ld+json">
  2. {
  3.   "@context": "https://schema.org",
  4.   "@type": "Person",
  5.   "address": {
  6.     "@type": "PostalAddress",
  7.     "addressLocality": "Seattle",
  8.     "addressRegion": "WA",
  9.     "postalCode": "98052",
  10.     "streetAddress": "20341 Whitworth Institute 405 N. Whitworth"
  11.   },
  12.   "colleague": [
  13.     "http://www.xyz.edu/students/alicejones.html",
  14.     "http://www.xyz.edu/students/bobsmith.html"
  15.   ],
  16.   "email": "mailto:jane-doe@xyz.edu",
  17.   "image": "janedoe.jpg",
  18.   "jobTitle": "Professor",
  19.   "name": "Jane Doe",
  20.   "telephone": "(425) 123-4567",
  21.   "url": "http://www.janedoe.com"
  22. }
  23. </script>
Structured representation of the JSON-LD example.