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

areaServed

A Schema.org Property
The geographic area where a service or offered item is provided.

Values expected to be one of these types

Used on these types


Sub-properties

Supersedes
serviceArea

Examples

Example 1
Copied
Example notes or example HTML without markup.
  1. Police station example (JSON-LD only).
Example encoded as JSON-LD in a HTML script tag.
  1. <script type="application/ld+json">
  2.     {
  3.         "@context": "https://schema.org",
  4.         "@type": "PoliceStation",
  5.         "name": "Youngstown Central Police Station",
  6.         "description": "Central police station",
  7.         "openingHours": "Mo-Su",
  8.         "telephone": "+13303301888",
  9.         "email": "ohio.police.example@example.com",
  10.         "image": "https://homepages.cae.wisc.edu/~ece533/images/lena.png",
  11.         "address": {
  12.             "@type": "PostalAddress",
  13.             "addressLocality": "Youngstown",
  14.             "addressRegion": "OH",
  15.             "postalCode": "44507",
  16.             "streetAddress": "270  Derek Drive"
  17.         },
  18.         "areaServed": {
  19.             "@type": "GeoCircle",
  20.             "geoMidpoint": {
  21.                 "@type": "GeoCoordinates",
  22.                 "latitude": 41.108237,
  23.                 "longitude": -80.642982
  24.             },
  25.             "geoRadius": 1000
  26.         },
  27.         "aggregateRating": {
  28.             "@type": "AggregateRating",
  29.             "bestRating": 100,
  30.             "worstRating": 0,
  31.             "ratingValue": 88,
  32.             "reviewCount": 122
  33.         }
  34.     }
  35. </script>
Structured representation of the JSON-LD example.