-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathJSON-LD_Place
43 lines (43 loc) · 1.03 KB
/
JSON-LD_Place
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
41
42
43
<script type="application/ld+json">
{
"@context": "http://schema.org",
"@type": "Place",
"name": "<txp:site_name escape="json" />",
"hasMap": "http:\/\/maps.google.com\/maps?q=XXX+UK",
"telephone": "XXXX XXX XXXX",
"image": {
"@type": "ImageObject",
"url": "<txp:site_url escape="json" />img\/logo.png",
"height": "400",
"width": "400"
},
"logo": {
"@type": "ImageObject",
"url": "<txp:site_url escape="json" />img\/logo.png",
"height": "400",
"width": "400"
},
"url": "<txp:site_url escape="json" />",
"sameAs": [
"https:\/\/twitter.com\/XXX",
"https:\/\/www.linkedin.com\/company\/XXX",
"https:\/\/www.instagram.com\/XXX",
"https:\/\/github.com\/XXX",
"https:\/\/youtube.com\/XXX",
"https:\/\/vimeo.com\/XXX"
],
"geo": {
"@type": "GeoCoordinates",
"latitude": "XX.XXXXXXX",
"longitude": "X.XXXXXX"
},
"address": {
"@type": "PostalAddress",
"streetAddress": "XX Street Name",
"addressLocality": "City",
"addressRegion": "Region",
"postalCode": "XXXXX",
"addressCountry": "UK"
}
}
</script>