forked from schemaorg/schemaorg
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsdo-tourism-examples.txt
735 lines (654 loc) · 30.3 KB
/
sdo-tourism-examples.txt
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
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
TYPES: #tourism-1 TouristAttraction, isAccessibleForFree
PRE-MARKUP:
<h1>Hyde Park</h1>
<div>It's one of the nine royal parks of London.</div>
<div>Website:
<a href="http://www.royalparks.org.uk/parks/hyde-park">www.royalparks.org.uk/parks/hyde-park</a>
</div>
<div>Ticket: access for free.</div>
MICRODATA:
<div itemscope itemtype="http://schema.org/TouristAttraction">
<h1><span itemprop="name">Hyde Park</span></h1>
<div>
<span itemprop="description">It's one of nine royal parks of London.</span>
</div>
<div>Website:
<a href="http://www.royalparks.org.uk/parks/hyde-park" itemprop="url">www.royalparks.org.uk/parks/hyde-park</a>
</div>
<div>
<meta itemprop="isAccessibleForFree" content="true"/>Ticket: access for free.
</div>
</div>
RDFA:
<div vocab="http://schema.org/" typeof="TouristAttraction">
<h1><span property="name">Hyde Park</span></h1>
<div>
<span property="description">It's one of nine royal parks of London.</span>
</div>
<div>Website:
<a href="http://www.royalparks.org.uk/parks/hyde-park" property="url">www.royalparks.org.uk/parks/hyde-park</a>
</div>
<div>
<meta property="isAccessibleForFree" content="true"/>Ticket: access for free.
</div>
</div>
JSON:
<script type="application/ld+json">
{
"@context": "http://schema.org",
"@type": "TouristAttraction",
"name": "Hyde Park",
"description": "It's one of nine royal parks of London.",
"url": "http://www.royalparks.org.uk/parks/hyde-park",
"isAccessibleForFree": true
}
</script>
TYPES: #tourism-2 AmusementPark, TouristAttraction, isAccessibleForFree, currenciesAccepted, openingHours, paymentAccepted
PRE-MARKUP:
<h1>Disneyland Paris</h1>
<div>It's an amusement park in Marne-la-Vallée, near Paris, in France.</div>
<div>Hours: Mo-Fr 10am-7pm Sa 10am-22pm Su 10am-21pm</div>
<div>Entrance: with ticket</div>
<div>Currency accepted: Euro</div>
<div>Payment accepted: Cash, Credit Card</div>
<div>Website:
<a href="http://www.disneylandparis.it/">www.disneylandparis.it</a>
</div>
MICRODATA:
<div itemscope itemtype="http://schema.org/AmusementPark http://schema.org/TouristAttraction">
<h1><span itemprop="name">Disneyland Paris</span></h1>
<div>
<span itemprop="description">It's an amusement park in Marne-la-Vallée, near Paris, in France and is the most visited theme park in all of France and Europe.</span>
</div>
<div>Hours: Mo-Fr 10am-7pm Sa 10am-22pm Su 10am-21pm
<meta itemprop="openingHours" content="Mo-Fr 10:00-19:00"/>
<meta itemprop="openingHours" content="Sa 10:00-22:00"/>
<meta itemprop="openingHours" content="Su 10:00-21:00"/>
</div>
<div>
<meta itemprop="isAccessibleForFree" content="false"/>Entrance: with ticket
</div>
<div>
<meta itemprop="currenciesAccepted" content="EUR"/>Currency accepted: Euro
</div>
<div>
<meta itemprop="paymentAccepted" content="Cash, Credit Card"/>Payment accepted: Cash, Credit Card
</div>
<div>Website:
<a href="http://www.disneylandparis.it/" itemprop="url">www.disneylandparis.it</a>
</div>
</div>
RDFA:
<div vocab="http://schema.org/" typeof="TouristAttraction AmusementPark">
<h1><span property="name">Disneyland Paris</span></h1>
<div>
<span property="description">It's an amusement park in Marne-la-Vallée, near Paris, in France and is the most visited theme park in all of France and Europe.</span>
</div>
<div>Hours: Mo-Fr 10am-7pm Sa 10am-22pm Su 10am-21pm
<meta property="openingHours" content="Mo-Fr 10:00-19:00"/>
<meta property="openingHours" content="Sa 10:00-22:00"/>
<meta property="openingHours" content="Su 10:00-21:00"/>
</div>
<div>
<meta property="isAccessibleForFree" content="false"/>Entrance: with ticket
</div>
<div>
<meta property="currenciesAccepted" content="EUR"/>Currency accepted: Euro
</div>
<div>
<meta property="paymentAccepted" content="Cash, Credit Card"/>Payment accepted: Cash, Credit Card
</div>
<div>Website:
<a href="http://www.disneylandparis.it/" property="url">www.disneylandparis.it</a>
</div>
</div>
JSON:
<script type="application/ld+json">
{
"@context": "http://schema.org",
"@type": ["TouristAttraction", "AmusementPark"],
"name": "Disneyland Paris",
"description": "It's an amusement park in Marne-la-Vallée, near Paris, in France and is the most visited theme park in all of France and Europe.",
"openingHours":["Mo-Fr 10:00-19:00", "Sa 10:00-22:00", "Su 10:00-21:00"],
"isAccessibleForFree": false,
"currenciesAccepted": "EUR",
"paymentAccepted":"Cash, Credit Card",
"url":"http://www.disneylandparis.it/"
}
</script>
TYPES: #tourism-3 TouristAttraction, availableLanguage
PRE-MARKUP:
<h1>Neuschwanstein Castle</h1>
<div>Neuschwanstein Castle is a nineteenth-century Romanesque Revival palace in Schwangau, in southwest Bavaria, Germany.</div>
<div>Guided tours in German and English.</div>
MICRODATA:
<div itemscope itemtype="http://schema.org/TouristAttraction">
<h1><span itemprop="name">Neuschwanstein Castle</span></h1>
<div>It is a nineteenth-century Romanesque Revival palace in
<div itemprop="address" itemscope itemtype="http://schema.org/PostalAddress">
<span itemprop="addressLocality">Schwangau</span>, in
<span itemprop="addressCountry">Germany</span>.
</div>
</div>
<div>Guided tours in
<div itemprop="availableLanguage" itemscope itemtype="http://schema.org/Language">
<span itemprop="name">German</span>
</div> and
<div itemprop="availableLanguage" itemscope itemtype="http://schema.org/Language">
<span itemprop="name">English</span>.
</div>
</div>
</div>
RDFA:
<div vocab="http://schema.org" typeof="TouristAttraction">
<h1><span property="name">Neuschwanstein Castle</span></h1>
<div>It is a nineteenth-century Romanesque Revival palace in
<div property="address" typeof="PostalAddress">
<span property="addressLocality">Schwangau</span>, in
<span property="addressCountry">Germany</span>.
</div>
</div>
<div>Guided tours in
<div property="availableLanguage" typeof="Language">
<span property="name">German</span>
</div> and
<div property="availableLanguage" typeof="Language">
<span property="name">English</span>.
</div>
</div>
</div>
JSON:
<script type="application/ld+json">
{
"@context": "http://schema.org",
"@type": "TouristAttraction",
"name": "Neuschwanstein Castle",
"address": {
"@type": "PostalAddress",
"addressLocality": "Schwangau",
"addressCountry": "Germany"
},
"availableLanguage": [
{
"@type": "Language",
"name": "German"
},
{
"@type": "Language",
"name": "English"
}
]
}
</script>
TYPES: #tourism-4 TouristAttraction, touristType, Museum
PRE-MARKUP:
<h1>Please Touch Museum</h1>
<div>It is a children's museum located in Philadelphia, Pennsylvania, USA.</div>
<div>The museum focuses on teaching children through interactive exhibits and special events.</div>
MICRODATA:
<div itemscope itemtype="http://schema.org/TouristAttraction">
<link itemprop="additionalType" href="http://schema.org/Museum">
<h1>
<span itemprop="name">Please Touch Museum</span>
</h1>
<div>
It is a
<div itemprop="touristType" itemscope itemtype="http://schema.org/Audience">
<span itemprop="audienceType">children</span>
</div>'s museum located in
<div itemprop="address" itemscope itemtype="http://schema.org/PostalAddress">
<div itemprop="addressLocality">
Philadelphia
</div>,
<div itemprop="addressCountry">
USA
</div>.
</div>
</div>
<div>
<span itemprop="description">The museum focuses on teaching children through interactive exhibits and special events.</span>
</div>
</div>
RDFA:
<div vocab="http://schema.org/" typeof="TouristAttraction Museum">
<h1>
<span property="name">Please Touch Museum</span>
</h1>
<div>
It is a
<div property="touristType" typeof="Audience">
<span property="audienceType">children</span>
</div>'s museum located in
<div property="address" typeof="PostalAddress">
<div property="addressLocality">
Philadelphia
</div>,
<div property="addressCountry">
USA
</div>.
</div>
</div>
<div>
<span property="description">The museum focuses on teaching children through interactive exhibits and special events.</span>
</div>
</div>
JSON:
<script type="application/ld+json">
{
"@context": "http://schema.org",
"@type": ["TouristAttraction","Museum"],
"name": "Please Touch Museum",
"address": {
"@type": "PostalAddress",
"addressLocality": "Philadelphia",
"addressCountry": "USA"
},
"touristType": {
"@type": "Audience",
"audienceType": "children"
},
"description": "The museum focuses on teaching children through interactive exhibits and special events."
}
</script>
TYPES: #tourism-5 TouristAttraction, publicAccess
PRE-MARKUP:
<h1>Leaning Tower of Pisa</h1>
<div>It is a twelfth-thirteenth century Romanesque tower started building by Bonanno Pisano.</div>
<div>Public access: yes</div>
MICRODATA:
<div itemscope itemtype="http://schema.org/TouristAttraction">
<h1><span itemprop="name">Leaning Tower of Pisa</span></h1>
<div>
<span itemprop="description">It is a twelfth-thirteenth century Romanesque tower started building by Bonanno Pisano.</span>
</div>
<div>
<meta itemprop="publicAccess" content="true"/>Public access: yes
</div>
</div>
RDFA:
<div vocab="http://schema.org/" typeof="TouristAttraction">
<h1><span property="name">Leaning Tower of Pisa</span></h1>
<div>
<span property="description">It is a twelfth-thirteenth century Romanesque tower started building by Bonanno Pisano.</span>
</div>
<div>
<meta property="publicAccess" content="true"/>Public access: yes
</div>
</div>
JSON:
<script type="application/ld+json">
{
"@context": "http://schema.org",
"@type": "TouristAttraction",
"name": "Leaning Tower of Pisa",
"publicAccess": true,
"description": "It is a twelfth-thirteenth century Romanesque tower started building by Bonanno Pisano."
}
</script>
TYPES: #tourism-6 TouristAttraction, event, Event
PRE-MARKUP:
<h1>Musée Marmottan Monet</h1>
<div>It's a museum of Impressionism and french ninenteeth art.</div>
<div>It is hosting the Hodler's, Monet's and Munch's exibit: "Peindre l'impossible".
Start date: September 15 2016
End date: Genuary 22 2017
</div>
MICRODATA:
<div itemscope itemtype="http://schema.org/TouristAttraction">
<h1><span itemprop="name">Musée Marmottan Monet</span></h1>
<div>
<span itemprop="description">It's a museum of Impressionism and french ninenteeth art.</span>
</div>
<div itemprop="event" itemscope itemtype="http://schema.org/Event">It is hosting the
<span itemprop="about">Hodler</span>'s
<span itemprop="about">Monet</span>'s
<span itemprop="about">Munch</span>'s exibit:
<span itemprop="name">"Peindre l'impossible"</span>.
<meta itemprop="startDate" content="2016-09-15" />Start date: September 15 2016
<meta itemprop="endDate" content="2017-01-22" />End date: Genuary 22 2017
</div>
</div>
RDFA:
<div vocab="http://schema.org/" typeof="TouristAttraction">
<h1><span property="name">Musée Marmottan Monet</span></h1>
<div>
<span property="description">It's a museum of Impressionism and french ninenteeth art.</span>
</div>
<div property="event" typeof="Event">It is hosting the
<span property="about">Hodler</span>'s
<span property="about">Monet</span>'s
<span property="about">Munch</span>'s exibit:
<span property="name">"Peindre l'impossible"</span>.
<meta property="startDate" content="2016-10-01" />Start date: September 15 2016
<meta property="endDate" content="2017-02-05" />End date: Genuary 22 2017
</div>
</div>
JSON:
<script type="application/ld+json">
{
"@context": "http://schema.org",
"@type": "TouristAttraction",
"name": "Musée Marmottan Monet",
"description": "It's a museum of Impressionism and french ninenteeth art.",
"event": {
"@type": "Event",
"about": ["Hodler","Monet","Munch"],
"name": "Peindre l'impossible",
"startDate": "2016-09-15",
"endDate": "2017-01-22"
}
}
</script>
TYPES: #tourism-7 TouristAttraction, isAccessibleForFree
PRE-MARKUP:
Name: The Falles 2017
Description: The Falles is a traditional celebration held in commemoration of Saint Joseph in the city of Valencia, Spain. The term Falles refers to both the celebration and the monuments burnt during the celebration. Added to UNESCO's intangible cultural heritage of humanity list on 30 November 2016.
From: March 3, 2017
To: March 3, 2017
Location: Valencia, ES
Public Access: yes
Is Accessible For Free: yes
Tourist Audience: Cultural tourism
Image 1: https://commons.wikimedia.org/wiki/File%3AFalla_Plaza_del_Ayuntamiento_2016_(1).jpg
Image 2: https://commons.wikimedia.org/wiki/File:La_fallera_y_su_crem%C3%A1.jpg
Same As: http://www.wikidata.org/entity/Q1143768
MICRODATA:
<div>
<div itemtype="http://schema.org/TouristAttraction" itemscope>
<link itemprop="additionalType" href="http://schema.org/Event" />
<meta itemprop="name" content="Las Fallas 2017" />
<meta itemprop="name" content="The Falles 2017" />
<meta itemprop="alternateName" content="Les Falles 2017" />
<meta itemprop="touristType" content="Cultural tourism" />
<meta itemprop="description" content="Las Fallas son unas fiestas con una tradición arraigada en la ciudad de Valencia y diferentes poblaciones de la Comunidad Valenciana, y que se celebran en honor de San José. El término Falla se refiere a las propia fiestas y a los monumentos quemados en las calles de Valencia el día 19 de marzo. En noviembre de 2016 la Unesco las inscribió en su Lista Representativa del Patrimonio Cultural Inmaterial de la Humanidad." />
<meta itemprop="description" content="The Falles is a traditional celebration held in commemoration of Saint Joseph in the city of Valencia, Spain. The term Falles refers to both the celebration and the monuments burnt during the celebration. Added to UNESCO's intangible cultural heritage of humanity list on 30 November 2016." />
<meta itemprop="startDate" content="2017-03-15T09:00" />
<meta itemprop="endDate" content="2017-03-19T23:59" />
<div itemprop="location" itemtype="http://schema.org/PostalAddress" itemscope>
<meta itemprop="addressLocality" content="Valencia" />
<meta itemprop="addressRegion" content="Valencia" />
<meta itemprop="addressCountry" content="ES" />
</div>
<meta itemprop="publicAccess" content="true" />
<meta itemprop="isAccessibleForFree" content="true" />
<link itemprop="image" href="https://commons.wikimedia.org/wiki/File%3AFalla_Plaza_del_Ayuntamiento_2016_(1).jpg" />
<link itemprop="image" href="https://commons.wikimedia.org/wiki/File:La_fallera_y_su_crem%C3%A1.jpg" />
<link itemprop="sameAs" href="http://www.wikidata.org/entity/Q1143768" />
</div>
</div>
RDFA:
<div vocab="http://schema.org/" typeof="TouristAttraction Event">
<div property="name" xml:lang="es" content="Las Fallas 2017" lang="es"></div>
<div property="name" xml:lang="en" content="The Falles 2017" lang="en"></div>
<div property="alternateName" content="Les Falles 2017"></div>
<div property="description" xml:lang="es" content="Las Fallas son unas fiestas con una tradición arraigada en la ciudad de Valencia y diferentes poblaciones de la Comunidad Valenciana, y que se celebran en honor de San José. El término Falla se refiere a las propia fiestas y a los monumentos quemados en las calles de Valencia el día 19 de marzo. En noviembre de 2016 la Unesco las inscribió en su Lista Representativa del Patrimonio Cultural Inmaterial de la Humanidad." lang="es"></div>
<div property="description" xml:lang="en" content="The Falles is a traditional celebration held in commemoration of Saint Joseph in the city of Valencia, Spain. The term Falles refers to both the celebration and the monuments burnt during the celebration. Added to UNESCO's intangible cultural heritage of humanity list on 30 November 2016." lang="en"></div>
<div property="startDate" content="2017-03-15T09:00"></div>
<div property="endDate" content="2017-03-19T23:59"></div>
<div property="location" typeof="PostalAddress">
<div property="addressLocality" content="Valencia"></div>
<div property="addressCountry" content="ES"></div>
<div property="addressRegion" content="Valencia"></div>
</div>
<div property="publicAccess" datatype="xsd:boolean" content="true"></div>
<div property="isAccessibleForFree" datatype="xsd:boolean" content="true"></div>
<div property="touristType" content="Cultural tourism"></div>
<link property="image" href="https://commons.wikimedia.org/wiki/File%3AFalla_Plaza_del_Ayuntamiento_2016_(1).jpg" />
<link property="image" href="https://commons.wikimedia.org/wiki/File:La_fallera_y_su_crem%C3%A1.jpg" />
<link property="sameAs" href="http://www.wikidata.org/entity/Q1143768" />
</div>
JSON:
<script type="application/ld+json">
{
"@context": "http://schema.org",
"@type": [
"Event",
"TouristAttraction"
],
"name": "The Falles 2017",
"name": [
{
"@language": "es",
"@value": "Las Fallas 2017"
},
{
"@language": "en",
"@value": "The Falles 2017"
}
],
"alternateName":"Les Falles 2017",
"description":"The Falles is a traditional celebration held in commemoration of Saint Joseph in the city of Valencia, Spain. The term Falles refers to both the celebration and the monuments burnt during the celebration. Added to UNESCO's intangible cultural heritage of humanity list on 30 November 2016.",
"description":[
{
"@language": "es",
"@value": "Las Fallas son unas fiestas con una tradición arraigada en la ciudad de Valencia y diferentes poblaciones de la Comunidad Valenciana, y que se celebran en honor de San José. El término Falla se refiere a las propia fiestas y a los monumentos quemados en las calles de Valencia el día 19 de marzo. En noviembre de 2016 la Unesco las inscribió en su Lista Representativa del Patrimonio Cultural Inmaterial de la Humanidad."
},
{
"@language": "en",
"@value": "The Falles is a traditional celebration held in commemoration of Saint Joseph in the city of Valencia, Spain. The term Falles refers to both the celebration and the monuments burnt during the celebration. Added to UNESCO's intangible cultural heritage of humanity list on 30 November 2016."
}
],
"startDate":"2017-03-15T09:00",
"endDate": "2017-03-19T23:59",
"location": {
"@type": "PostalAddress",
"addressLocality": "Valencia",
"addressRegion": "Valencia",
"addressCountry": "ES"
},
"publicAccess": true,
"isAccessibleForFree": true,
"touristType": [
"Cultural tourism"
],
"image": [
"https://commons.wikimedia.org/wiki/File%3AFalla_Plaza_del_Ayuntamiento_2016_(1).jpg",
"https://commons.wikimedia.org/wiki/File:La_fallera_y_su_crem%C3%A1.jpg"
],
"sameAs": "http://www.wikidata.org/entity/Q1143768"
}
</script>
TYPES: #tourism-8 TouristAttraction, touristType, isAccessibleForFree, Cemetery
PRE-MARKUP:
Name: Villers–Bretonneux Australian National Memorial
Description: The Australian National Memorial, Villers–Bretonneux is the main memorial to Australian military personnel killed on the Western Front during World War I.
Address: Fouilloy, FR
Geocoordinates: lat 49.8852515, lon 2.5106436
Public Access: yes
Is Accessible For Free: yes
Tourist Audience: Memorial Tourism from Australia and New Zealand
Image: https://commons.wikimedia.org/wiki/File%3AVillers-Bretonneux_m%C3%A9morial_australien_(tour_et_croix)_1.jpg
Same As: https://www.wikidata.org/wiki/Q2544355
MICRODATA:
<div>
<div itemtype="http://schema.org/TouristAttraction" itemscope>
<link itemprop="additionalType" href="http://schema.org/Cemetery" />
<meta itemprop="name" content="Villers–Bretonneux Australian National Memorial" />
<meta itemprop="description" content="The Australian National Memorial, Villers–Bretonneux is the main memorial to Australian military personnel killed on the Western Front during World War I." />
<div itemprop="touristType" itemtype="http://schema.org/Audience" itemscope>
<meta itemprop="audienceType" content="Memorial Tourism" />
<div itemprop="geographicArea" itemtype="http://schema.org/AdministrativeArea" itemscope>
<meta itemprop="name" content="New Zealand" />
</div>
<div itemprop="geographicArea" itemtype="http://schema.org/AdministrativeArea" itemscope>
<meta itemprop="name" content="Australia" />
</div>
</div>
<div itemprop="address" itemtype="http://schema.org/PostalAddress" itemscope>
<meta itemprop="addressLocality" content="Fouilloy" />
<meta itemprop="addressCountry" content="FR" />
</div>
<div itemprop="geo" itemtype="http://schema.org/GeoCoordinates" itemscope>
<meta itemprop="latitude" content="49.8852515" />
<meta itemprop="longitude" content="2.5106436" />
</div>
<meta itemprop="publicAccess" content="true" />
<meta itemprop="isAccessibleForFree" content="true" />
<link itemprop="sameAs" href="https://www.wikidata.org/wiki/Q2544355" />
<link itemprop="image" href="https://commons.wikimedia.org/wiki/File%3AVillers-Bretonneux_m%C3%A9morial_australien_(tour_et_croix)_1.jpg" />
</div>
</div>
RDFA:
<div vocab="http://schema.org/" typeof="Cemetery TouristAttraction">
<div property="name" content="Villers–Bretonneux Australian National Memorial"></div>
<div property="description" content="The Australian National Memorial, Villers–Bretonneux is the main memorial to Australian military personnel killed on the Western Front during World War I."></div>
<div property="touristType" typeof="Audience">
<div property="audienceType" content="Memorial Tourism"></div>
<div property="geographicArea" typeof="AdministrativeArea">
>
<div property="name" content="New Zealand"></div>
</div>
<div property="geographicArea" typeof="AdministrativeArea">
<div property="name" content="Australia"></div>
</div>
</div>
</div>
<div property="address" typeof="PostalAddress">
<div property="addressCountry" content="FR"></div>
<div property="addressLocality" content="Fouilloy"></div>
</div>
<div property="geo" typeof="GeoCoordinates">
<div property="latitude" content="49.8852515"></div>
<div property="longitude" content="2.5106436"></div>
</div>
<div property="publicAccess" datatype="xsd:boolean" content="true"></div>
<div property="isAccessibleForFree" datatype="xsd:boolean" content="true">
<link property="sameAs" href="https://www.wikidata.org/wiki/Q2544355">
<link property="image" href="https://commons.wikimedia.org/wiki/File%3AVillers-Bretonneux_m%C3%A9morial_australien_(tour_et_croix)_1.jpg">
</div>
JSON:
<script type="application/ld+json">
{
"@context": "http://schema.org/",
"@type": [
"Cemetery",
"TouristAttraction"
],
"name": "Villers–Bretonneux Australian National Memorial",
"description": "The Australian National Memorial, Villers–Bretonneux is the main memorial to Australian military personnel killed on the Western Front during World War I.",
"touristType": {
"@type": "Audience",
"audienceType" : "Memorial Tourism",
"geographicArea": [{
"@type": "AdministrativeArea",
"name": "Australia"
},{
"@type": "AdministrativeArea",
"name": "New Zealand"
}]
},
"address": {
"@type": "PostalAddress",
"addressCountry": "FR",
"addressLocality":"Fouilloy"
},
"geo": {
"@type": "GeoCoordinates",
"latitude": "49.8852515",
"longitude": "2.5106436"
},
"publicAccess": true,
"isAccessibleForFree": true,
"sameAs":"https://www.wikidata.org/wiki/Q2544355",
"image":"https://commons.wikimedia.org/wiki/File%3AVillers-Bretonneux_m%C3%A9morial_australien_(tour_et_croix)_1.jpg"
}
</script>
TYPES: #tourism-9 TouristAttraction, touristType, Winery
PRE-MARKUP:
Name: Bodegas Protos
Description: Protos means “first” in Greek, and since 1927 this centenary winery has embarked on the mission to be number one. This attitude has driven their search for constant improvement. The new facilities designed by prestigious architect and winner of the Priztker Award, Sir Richard Rogers, once again took the winery to the forefront of wine tourism. A tour around Protos includes a detailed visit to both the underground cellar dug into the hillside of Peñafiel Castle and to the winery designed by celebrated architect Sir Richard Rogers. After completing the itinerary, visitors can taste 2 excellent Protos wines and will receive a gift. The visit lasts 1.5 hours (including the sampling).
Opening Hours: Monday to Friday, 10:00-13:00 and 16:30-18:00
Address: C/ Bodegas Protos, 24-28, 47300 - Peñafiel, Spain
Public Access: yes
Tourist Audience: Wine tourism, Cultural tourism
Available Languages: English, Spanish
Telephone: +34983878011, +34659843463
Same As: http://www.bodegasprotos.com
Email: [email protected]
Image: https://commons.wikimedia.org/wiki/File%3AFoto_Bodega_Rogers2.jpg
MICRODATA:
<div>
<div itemtype="http://schema.org/TouristAttraction" itemscope>
<link itemprop="additionalType" href="http://schema.org/Winery" />
<meta itemprop="name" content="Bodegas Protos" />
<meta itemprop="description" content="Protos means “first” in Greek, and since 1927 this centenary winery has embarked on the mission to be number one. This attitude has driven their search for constant improvement. The new facilities designed by prestigious architect and winner of the Priztker Award, Sir Richard Rogers, once again took the winery to the forefront of wine tourism. A tour around Protos includes a detailed visit to both the underground cellar dug into the hillside of Peñafiel Castle and to the winery designed by celebrated architect Sir Richard Rogers. After completing the itinerary, visitors can taste 2 excellent Protos wines and will receive a gift. The visit lasts 1.5 hours (including the sampling)." />
<div itemprop="address" itemtype="http://schema.org/PostalAddress" itemscope>
<meta itemprop="addressLocality" content="Peñafiel" />
<meta itemprop="streetAddress" content="C/ Bodegas Protos, 24-28" />
<meta itemprop="postalCode" content="47300" />
<meta itemprop="addressCountry" content="ES" />
</div>
<meta itemprop="publicAccess" content="true" />
<meta itemprop="availableLanguage" content="English" />
<meta itemprop="availableLanguage" content="Spanish" />
<meta itemprop="openingHours" content="Mo-Fr 10:00-13:00" />
<meta itemprop="openingHours" content="Mo-Fr 16:30-18:00" />
<meta itemprop="touristType" content="Wine tourism" />
<meta itemprop="touristType" content="Cultural tourism" />
<meta itemprop="telephone" content="+34983878011" />
<meta itemprop="telephone" content="+34659843463" />
<link itemprop="sameAs" href="http://www.bodegasprotos.com/" />
<meta itemprop="email" content="[email protected]" />
<link itemprop="image" href="https://commons.wikimedia.org/wiki/File%3AFoto_Bodega_Rogers2.jpg" />
</div>
</div>
RDFA:
<div>
<div vocab="http://schema.org/" typeof="Winery TouristAttraction">
<div property="name" content="Bodegas Protos"></div>
<div property="description" content="Protos means “first” in Greek, and since 1927 this centenary winery has embarked on the mission to be number one. This attitude has driven their search for constant improvement. The new facilities designed by prestigious architect and winner of the Priztker Award, Sir Richard Rogers, once again took the winery to the forefront of wine tourism. A tour around Protos includes a detailed visit to both the underground cellar dug into the hillside of Peñafiel Castle and to the winery designed by celebrated architect Sir Richard Rogers. After completing the itinerary, visitors can taste 2 excellent Protos wines and will receive a gift. The visit lasts 1.5 hours (including the sampling)."></div>
<div property="address" typeof="PostalAddress">
<div property="addressCountry" content="ES"></div>
<div property="addressLocality" content="Peñafiel"></div>
<div property="postalCode" content="47300"></div>
<div property="streetAddress" content="C/ Bodegas Protos, 24-28"></div>
</div>
<div property="publicAccess" datatype="xsd:boolean" content="true"></div>
<div property="availableLanguage" content="English"></div>
<div property="availableLanguage" content="Spanish"></div>
<div property="openingHours" content="Mo-Fr 10:00-13:00"></div>
<div property="openingHours" content="Mo-Fr 16:30-18:00"></div>
<div property="touristType" content="Wine tourism"></div>
<div property="touristType" content="Cultural tourism"></div>
<div property="telephone" content="+34983878011"></div>
<div property="telephone" content="+34659843463"></div>
<link property="sameAs" href="http://www.bodegasprotos.com/">
<div property="email" content="[email protected]"></div>
<link property="image" href="https://commons.wikimedia.org/wiki/File%3AFoto_Bodega_Rogers2.jpg">
</div>
</div>
JSON:
<script type="application/ld+json">
{
"@context": "http://schema.org",
"@type": [
"Winery",
"TouristAttraction"],
"name": "Bodegas Protos",
"description": "Protos means “first” in Greek, and since 1927 this centenary winery has embarked on the mission to be number one. This attitude has driven their search for constant improvement. The new facilities designed by prestigious architect and winner of the Priztker Award, Sir Richard Rogers, once again took the winery to the forefront of wine tourism. A tour around Protos includes a detailed visit to both the underground cellar dug into the hillside of Peñafiel Castle and to the winery designed by celebrated architect Sir Richard Rogers. After completing the itinerary, visitors can taste 2 excellent Protos wines and will receive a gift. The visit lasts 1.5 hours (including the sampling).",
"address": {
"@type": "PostalAddress",
"addressLocality": "Peñafiel",
"addressCountry": "ES",
"postalCode": "47300",
"streetAddress": "C/ Bodegas Protos, 24-28"
},
"publicAccess": true,
"availableLanguage":[
"English",
"Spanish"
],
"openingHours": [
"Mo-Fr 10:00-13:00",
"Mo-Fr 16:30-18:00"
],
"touristType": [
"Wine tourism",
"Cultural tourism"
],
"telephone": ["+34983878011","+34659843463"],
"sameAs": "http://www.bodegasprotos.com",
"email": "[email protected]",
"image": "https://commons.wikimedia.org/wiki/File%3AFoto_Bodega_Rogers2.jpg"
}
</script>