-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathJSON-LD_Restaurant
110 lines (110 loc) · 2.28 KB
/
JSON-LD_Restaurant
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
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
<script type="application/ld+json">
{
"@context": {
"@vocab": "http://schema.org/"
},
"@graph": [
{
"@id": "<txp:site_url escape="json" />#organization",
"@type": "Organization",
"name": "<txp:site_name escape="json" />",
"url" : "<txp:site_url escape="json" />",
"logo" : "<txp:site_url escape="json" />img\/your-logo.png",
"sameAs" : [
"https:\/\/www.facebook.com\/xxx",
"https:\/\/twitter.com\/xxx",
"https:\/\/plus.google.com\/+xxx",
"https:\/\/www.youtube.com\/user\/xxx"
]
},
{
"@type": "Restaurant",
"priceRange": "$10-$60",
"servesCuisine": "Burgers, Pizzas",
"parentOrganization": {
"name" : "<txp:site_name escaape="json" />"
},
"name" : "Your Restaurant Name",
"image" : "<txp:site_url escape="json" />img\/your-image.png",
"address": {
"@type" : "PostalAddress",
"streetAddress": "1 The High Street",
"addressLocality": "Colchester",
"addressRegion": "Essex",
"postalCode": "CO1 1AB",
"telephone" : "01234 567 891"
},
"openingHoursSpecification": [
{
"@type": "OpeningHoursSpecification",
"dayOfWeek": [
"Monday",
"Tuesday",
"Wednesday",
"Thursday",
"Friday"
],
"opens": "11:00",
"closes": "15:00"
},
{
"@type": "OpeningHoursSpecification",
"dayOfWeek": [
"Monday",
"Tuesday",
"Wednesday",
"Thursday",
"Friday"
],
"opens": "19:00",
"closes": "23:00"
}
],
"hasmap" : "https:\/\/www.google.co.uk\/maps\/place\/Buckingham+Palace\/@"
},
{
"@type": "LocalBusiness",
"priceRange": "€10-€60",
"parentOrganization": {
"name" : "<txp:site_name escape="json" />"
},
"name" : "Your Business Name",
"image" : "<txp:site_url escape="json" />img\/your-image.png",
"address": {
"@type" : "PostalAddress",
"streetAddress": "Buckingham Palace",
"addressRegion": "London",
"postalCode": "SW1A 1AA",
"telephone" : "01234 567 891"
},
"openingHoursSpecification": [
{
"@type": "OpeningHoursSpecification",
"dayOfWeek": [
"Monday",
"Tuesday",
"Wednesday",
"Thursday",
"Friday"
],
"opens": "11:00",
"closes": "15:00"
},
{
"@type": "OpeningHoursSpecification",
"dayOfWeek": [
"Monday",
"Tuesday",
"Wednesday",
"Thursday",
"Friday"
],
"opens": "19:00",
"closes": "23:00"
}
],
"hasmap" : "https:\/\/www.google.co.uk\/maps\/place\/@"
}
]
}
</script>