-
Notifications
You must be signed in to change notification settings - Fork 1
/
JSON-LD_LocalBusiness
60 lines (60 loc) · 1.53 KB
/
JSON-LD_LocalBusiness
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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
<script type="application/ld+json">
{
"@context": "http://schema.org/",
"@id": "<txp:site_url escape="json" />#localbusiness",
"@type": "LocalBusiness",
"name": "<txp:site_name escape="json" />",
"address": {
"@type": "PostalAddress",
"addressCountry": "France",
"addressLocality": "XXXXX",
"addressRegion": "XXXXX",
"postalCode":"XXXXX",
"streetAddress": "XXXXX"
},
"description": "<txp:site_slogan escape="json" />",
"founder": "<txp:author escape="json" />",
"email" : "mailto:<txp:author_email />",
"telephone": "+33-XXX-XXX-XXXX",
"image": {
"@type": "ImageObject",
"url": "<txp:site_url />img/logo.jpg",
"height": 300,
"width": 400
},
"url": "<txp:site_url escape="json" />",
"priceRange": "€50-€120",
"openingHoursSpecification": [
{
"@type": "OpeningHoursSpecification",
"dayOfWeek": [
"Monday",
"Tuesday",
"Wednesday",
"Thursday",
"Friday"
],
"opens": "09:00",
"closes": "19:00"
},
{
"@type": "OpeningHoursSpecification",
"dayOfWeek": "Saturday",
"opens": "10:00",
"closes": "17:00"
}
],
"hasmap" : "https://www.google.co.uk/maps/place/map-location",
"sameAs": [
/*! Add, delete, set your Social Network links below, then remove this comment line */
"https:\/\/www.facebook.com\/your-profile",
"https:\/\/www.twitter.com\/your-profile",
"https:\/\/plus.google.com\/your-profile"
],
"potentialAction": {
"@type": "SearchAction",
"target": "<txp:site_url escape="json" />?q={search_term_string}",
"query-input": "required name=search_term_string"
}
}
</script>