forked from JayHoltslander/Structured-Data-JSON-LD
-
Notifications
You must be signed in to change notification settings - Fork 0
/
ServiceArea.json
40 lines (40 loc) · 827 Bytes
/
ServiceArea.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
<script type='application/ld+json'>
{
"@context": "http://schema.org",
"@type": "localBusiness",
"name": "Acme Inc.",
"image": "required-image.jpg",
"telephone": "+15553217654",
"priceRange": "$$",
"address": {
"@type": "PostalAddress",
"streetAddress": "4321 Street Dr.",
"addressLocality": "Richmond",
"addressRegion": "BC",
"addressCountry": "Canada",
"postalCode": "V6G1G9"
},
"serviceArea": [
{
"@type": "place",
"name": "Vancouver",
"address": {
"@type": "PostalAddress",
"addressLocality": "Vancouver",
"addressRegion": "BC",
"addressCountry": "Canada"
}
},
{
"@type": "place",
"name": "Burnaby",
"address": {
"@type": "PostalAddress",
"addressLocality": "Burnaby",
"addressRegion": "BC",
"addressCountry": "Canada"
}
}
]
}
</script>