\n","Structured representation of the JSON-LD example.","{\n \"@context\": \"https://schema.org\",\n \"@type\": \"PoliceStation\",\n \"name\": \"Youngstown Central Police Station\",\n \"description\": \"Central police station\",\n \"openingHours\": \"Mo-Su\",\n \"telephone\": \"+13303301888\",\n \"email\": \"[email protected]\",\n \"image\": \"https://homepages.cae.wisc.edu/~ece533/images/lena.png\",\n \"address\": {\n \"@type\": \"PostalAddress\",\n \"addressLocality\": \"Youngstown\",\n \"addressRegion\": \"OH\",\n \"postalCode\": \"44507\",\n \"streetAddress\": \"270 Derek Drive\"\n },\n \"areaServed\": {\n \"@type\": \"GeoCircle\",\n \"geoMidpoint\": {\n \"@type\": \"GeoCoordinates\",\n \"latitude\": 41.108237,\n \"longitude\": -80.642982\n },\n \"geoRadius\": 1000\n },\n \"aggregateRating\": {\n \"@type\": \"AggregateRating\",\n \"bestRating\": 100,\n \"worstRating\": 0,\n \"ratingValue\": 88,\n \"reviewCount\": 122\n }\n }","Terms and conditions","\n \n Schema.org\n \n V27.02\n |\n 2024-07-01\n "]}
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": "[email protected]",
        "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.