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.
Police station example (JSON-LD only).
Example encoded as JSON-LD in a HTML script tag.
<script type="application/ld+json">
    {
        "@context": "https://schema.org",
        "@type": "PoliceStation",
        "name": "Youngstown Central Police Station",
        "description": "Central police station",
        "openingHours": "Mo-Su",
        "telephone": "+13303301888",
        "email": "ohio.police.example@example.com",
        "image": "https://homepages.cae.wisc.edu/~ece533/images/lena.png",
        "address": {
            "@type": "PostalAddress",
            "addressLocality": "Youngstown",
            "addressRegion": "OH",
            "postalCode": "44507",
            "streetAddress": "270  Derek Drive"
        },
        "areaServed": {
            "@type": "GeoCircle",
            "geoMidpoint": {
                "@type": "GeoCoordinates",
                "latitude": 41.108237,
                "longitude": -80.642982
            },
            "geoRadius": 1000
        },
        "aggregateRating": {
            "@type": "AggregateRating",
            "bestRating": 100,
            "worstRating": 0,
            "ratingValue": 88,
            "reviewCount": 122
        }
    }
</script>
Structured representation of the JSON-LD example.