-
Notifications
You must be signed in to change notification settings - Fork 1
/
JSON-LD_BedAndBreakfast
32 lines (32 loc) · 1.02 KB
/
JSON-LD_BedAndBreakfast
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
<script type="application/ld+json">
{
"@context": "http://schema.org",
"@type": "BedAndBreakfast",
"name": "<txp:site_name escape="json" />",
"url": "<txp:site_url escape="json" />",
"image": "<txp:site_url escape="json" />img\/logo.jpg",
"address": {
"@type": "PostalAddress",
"addressLocality": "Seattle",
"addressRegion": "WA",
"postalCode": "98052",
"streetAddress": "20341 Whitworth Institute 405 N. Whitworth"
},
"email": "recipient@example.com",
"telephone": "(425) 123-4567",
"openingHours": [
/*! Choose your opening date-time: Monday, Tuesday, Wenesday, Thursday 8am-19pm and Sunday 10am-12am*/
"Monday, Tuesday, Wednesday, Thursday 08:00-19:00", "Sunday 10:00-12:00"
/*! Tuesday and Thursday only 8am-19pm
"Tu,Th 08:00-19:00"
/*! Or from Monday to Sunday 8am-19pm
"Mo-Su 08:00-19:00"
*/
],
/*! Number of avarage stars rating (1-5) */
"starRating": "5",
"currenciesAccepted": "Euro, Dollar",
"paymentAccepted": "Visa, Cash, Credit Card, Check, PayPal",
"priceRange" : "$$$"
}
</script>