-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex-en.html
More file actions
1838 lines (1817 loc) · 93.3 KB
/
Copy pathindex-en.html
File metadata and controls
1838 lines (1817 loc) · 93.3 KB
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
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<!DOCTYPE html>
<html>
<head>
<meta http-equiv="content-type" content="text/html; charset=UTF-8" />
<link rel="stylesheet" href="resources/primer.css" media="screen"/>
<link rel="stylesheet" href="resources/rec.css" media="screen"/>
<link rel="stylesheet" href="resources/extra.css" media="screen"/>
<link rel="stylesheet" href="resources/owl.css" media="screen"/>
<link rel="stylesheet" href="resources/dark.css" media="(prefers-color-scheme: dark)"/>
<link rel="stylesheet" href="resources/light.css" media="(prefers-color-scheme: light)"/>
<link rel="stylesheet" href="resources/slider.css" media="screen"/>
<meta name="color-scheme" content="dark light">
<script type="module" src="resources/dark-mode-toggle.mjs"></script><div class="darkmode">
<dark-mode-toggle class="slider"></dark-mode-toggle>
</div>
<title>Enotourism Extension of the Tourism Reference Conceptual Model (SEGITTUR)</title>
<!-- SCHEMA.ORG METADATA -->
<script type="application/ld+json">{"@context":"https://schema.org","@type":"TechArticle","url":"http://ontologia.segittur.es/enoturismo/def/core#","image":"http://vowl.visualdataweb.org/webvowl/#iri=http://ontologia.segittur.es/enoturismo/def/core#","name":"Enotourism Extension of the Tourism Reference Conceptual Model (SEGITTUR)", "headline":"The Wine Tourism Extension of the SEGITTUR Tourism Reference Conceptual Model expands the original model by incorporating specific concepts, relationships, and activities related to wine tourism. Its goal is to provide a structured representation of wine culture, associated tourist experiences, and supporting territorial resources, fostering semantic interoperability in the field of wine tourism.", "dateReleased":"2025-11-14", "version":"1.0", "license":"https://creativecommons.org/licenses/by/4.0/", "author":[{"@type":"Person","name":"Adrián Racero Serrano"},{"@type":"Person","name":"Juan Manuel Cardeñosa Borrego"}]}</script>
<script src="resources/jquery.js"></script>
<script src="resources/marked.min.js"></script>
<script>
function loadHash() {
jQuery(".markdown").each(function(el){jQuery(this).after(marked.parse(jQuery(this).text())).remove()});
var hash = location.hash;
if($(hash).offset()!=null){
$('html, body').animate({scrollTop: $(hash).offset().top}, 0);
}
loadTOC();
}
function loadTOC(){
//process toc dynamically
var t='<h2>Table of contents</h2><ul>';i = 1;j=0;
jQuery(".list").each(function(){
if(jQuery(this).is('h2')){
if(j>0){
t+='</ul>';
j=0;
}
t+= '<li>'+i+'. <a href=#'+ jQuery(this).attr('id')+'>'+ jQuery(this).ignore("span").text()+'</a></li>';
i++;
}
if(jQuery(this).is('h3')){
if(j==0){
t+='<ul>';
}
j++;
t+= '<li>'+(i-1)+'.'+j+'. '+'<a href=#'+ jQuery(this).attr('id')+'>'+ jQuery(this).ignore("span").text()+'</a></li>';
}
});
t+='</ul>';
$("#toc").html(t);
}
$(function(){
loadHash();
}); $.fn.ignore = function(sel){
return this.clone().find(sel||">*").remove().end();
};
</script>
</head>
<body>
<div class="container">
<div class="head">
<div style="float:right">language <a href="index-en.html"><b>en</b></a> <a href="index-es.html"><b>es</b></a> </div>
<h1>Enotourism Extension of the Tourism Reference Conceptual Model (SEGITTUR)</h1>
<h2>Release: 2025-11-14</h2>
<dl>
<dt>Latest version:</dt>
<dd><a href="http://ontologia.segittur.es/enoturismo/def/core#">http://ontologia.segittur.es/enoturismo/def/core#</a></dd>
<dt>Revision:</dt>
<dd>1.0</dd>
<dt>Authors:</dt>
<dd>Adrián Racero Serrano</dd><dd>Juan Manuel Cardeñosa Borrego</dd>
<dt>Download serialization:</dt><dd><span><a href="ontology.jsonld" target="_blank"><img src="https://img.shields.io/badge/Format-JSON_LD-blue.svg" alt="JSON-LD" /></a> </span><span><a href="ontology.owl" target="_blank"><img src="https://img.shields.io/badge/Format-RDF/XML-blue.svg" alt="RDF/XML" /></a> </span><span><a href="ontology.nt" target="_blank"><img src="https://img.shields.io/badge/Format-N_Triples-blue.svg" alt="N-Triples" /></a> </span><span><a href="ontology.ttl" target="_blank"><img src="https://img.shields.io/badge/Format-TTL-blue.svg" alt="TTL" /></a> </span></dd><dt>License:</dt><dd><a href="https://creativecommons.org/licenses/by/4.0/" target="_blank"><img src="https://img.shields.io/badge/License-https://creativecommons.org/licenses/by/4.0/-blue.svg" alt="https://creativecommons.org/licenses/by/4.0/" /></a>
</dd><dt>Visualization:</dt><dd><a href="webvowl/index.html#" target="_blank"><img src="https://img.shields.io/badge/Visualize_with-WebVowl-blue.svg" alt="Visualize with WebVowl" /></a></dd>
<!-- <dt>Evaluation:</dt><dd><a href="OOPSevaluation/oopsEval.html#" target="_blank"><img src="https://img.shields.io/badge/Evaluate_with-OOPS! (OntOlogy Pitfall Scanner!)-blue.svg" alt="Evaluate with OOPS!" /></a></dd> --><dt>Cite as:</dt>
<dd>Adrián Racero Serrano, Juan Manuel Cardeñosa Borrego. Revision: 1.0.</dd>
</dl>
<hr/>
</div>
<div class="status">
<div>
<span>Ontology Specification Draft</span>
</div>
</div> <div id="abstract"><h2>Abstract</h2><span class="markdown">
The Wine Tourism Extension of the SEGITTUR Tourism Reference Conceptual Model expands the original model by incorporating specific concepts, relationships, and activities related to wine tourism. Its goal is to provide a structured representation of wine culture, associated tourist experiences, and supporting territorial resources, fostering semantic interoperability in the field of wine tourism.</span>
</div>
<div id="toc"></div>
<!--INTRODUCTION SECTION-->
<div id="introduction"><h2 id="intro" class="list">Introduction <span class="backlink"> back to <a href="#toc">ToC</a></span></h2>
<span class="markdown">Wine tourism has become a key form of tourism that integrates wine culture, gastronomy, heritage, and landscape. In response to this growing significance, the Wine Tourism Extension of the SEGITTUR Tourism Reference Conceptual Model has been developed to semantically integrate the specific elements of wine tourism within the conceptual framework defined by SEGITTUR.
This ontology extends the original model by incorporating classes and relationships that describe the agents, resources, products, and experiences related to wine tourism, enabling a homogeneous, interoperable, and reusable representation for tourism information systems, destination management platforms, and semantic analysis applications.
</span>
</div>
<!--OVERVIEW SECTION-->
<div id="overview"><h2 id="overv" class="list">Enotourism Ontology: Overview <span class="backlink"> back to <a href="#toc">ToC</a></span></h2>
<span class="markdown">
This ontology has the following classes and properties.</span>
<h4>Classes</h4>
<ul xmlns:widoco="https://w3id.org/widoco/vocab#"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
class="hlist">
<li>
<a href="#https://ontologia.segittur.es/turismo/def/core#Acknowledgement"
title="https://ontologia.segittur.es/turismo/def/core#Acknowledgement">Acknowledgement</a>
</li>
<li>
<a href="#http://xmlns.com/foaf/0.1/Agent" title="http://xmlns.com/foaf/0.1/Agent">Agent</a>
</li>
<li>
<a href="#https://ontologia.segittur.es/turismo/def/core#AgritourismExperience"
title="https://ontologia.segittur.es/turismo/def/core#AgritourismExperience">Agritourism Experience</a>
</li>
<li>
<a href="#https://ontologia.segittur.es/turismo/def/core#AgritourismFacility"
title="https://ontologia.segittur.es/turismo/def/core#AgritourismFacility">Agritourism Facility</a>
</li>
<li>
<a href="#https://ontologia.segittur.es/turismo/def/core#Certification"
title="https://ontologia.segittur.es/turismo/def/core#Certification">Certification</a>
</li>
<li>
<a href="#DOP"
title="http://ontologia.segittur.es/enoturismo/def/core#DOP">D O P</a>
</li>
<li>
<a href="#EnotourismDestination"
title="http://ontologia.segittur.es/enoturismo/def/core#EnotourismDestination">Enotourism Destination</a>
</li>
<li>
<a href="#https://ontologia.segittur.es/turismo/def/core#Event"
title="https://ontologia.segittur.es/turismo/def/core#Event">Event</a>
</li>
<li>
<a href="#https://ontologia.segittur.es/turismo/def/core#EventOrganisationCompany"
title="https://ontologia.segittur.es/turismo/def/core#EventOrganisationCompany">Event Organisation Company</a>
</li>
<li>
<a href="#Municipality"
title="http://ontologia.segittur.es/enoturismo/def/core#Municipality">Municipality</a>
</li>
<li>
<a href="#https://ontologia.segittur.es/turismo/def/core#Museum"
title="https://ontologia.segittur.es/turismo/def/core#Museum">Museum</a>
</li>
<li>
<a href="#MuseumVisit"
title="http://ontologia.segittur.es/enoturismo/def/core#MuseumVisit">Museum Visit</a>
</li>
<li>
<a href="#http://purl.obolibrary.org/obo/foodon.owl#PreparedFoodProduct"
title="http://purl.obolibrary.org/obo/foodon.owl#PreparedFoodProduct">Prepared Food Product</a>
</li>
<li>
<a href="#https://ontologia.segittur.es/turismo/def/core#Rating"
title="https://ontologia.segittur.es/turismo/def/core#Rating">Rating</a>
</li>
<li>
<a href="#Role"
title="http://ontologia.segittur.es/enoturismo/def/core#Role">Role</a>
</li>
<li>
<a href="#Tasting"
title="http://ontologia.segittur.es/enoturismo/def/core#Tasting">Tasting</a>
</li>
<li>
<a href="#https://ontologia.segittur.es/turismo/def/core#TourismDestination"
title="https://ontologia.segittur.es/turismo/def/core#TourismDestination">Tourism Destination</a>
</li>
<li>
<a href="#https://ontologia.segittur.es/turismo/def/core#TourismOrganisation"
title="https://ontologia.segittur.es/turismo/def/core#TourismOrganisation">Tourism Organisation</a>
</li>
<li>
<a href="#https://ontologia.segittur.es/turismo/def/core#Vineyard"
title="https://ontologia.segittur.es/turismo/def/core#Vineyard">Vineyard</a>
</li>
<li>
<a href="#VineyardVisit"
title="http://ontologia.segittur.es/enoturismo/def/core#VineyardVisit">Vineyard Visit</a>
</li>
<li>
<a href="#http://purl.org/ceu/ebaco/core#Wine" title="http://purl.org/ceu/ebaco/core#Wine">Wine</a>
</li>
<li>
<a href="#WineFestival"
title="http://ontologia.segittur.es/enoturismo/def/core#WineFestival">Wine Festival</a>
</li>
<li>
<a href="#WineFestivalActivity"
title="http://ontologia.segittur.es/enoturismo/def/core#WineFestivalActivity">Wine Festival Activity</a>
</li>
<li>
<a href="#WineFoodSample"
title="http://ontologia.segittur.es/enoturismo/def/core#WineFoodSample">Wine Food Sample</a>
</li>
<li>
<a href="#WineMuseum"
title="http://ontologia.segittur.es/enoturismo/def/core#WineMuseum">Wine Museum</a>
</li>
<li>
<a href="#WineRoute"
title="http://ontologia.segittur.es/enoturismo/def/core#WineRoute">Wine Route</a>
</li>
<li>
<a href="#WineSample"
title="http://ontologia.segittur.es/enoturismo/def/core#WineSample">Wine Sample</a>
</li>
<li>
<a href="#WineStall"
title="http://ontologia.segittur.es/enoturismo/def/core#WineStall">Wine Stall</a>
</li>
<li>
<a href="#WineTasting"
title="http://ontologia.segittur.es/enoturismo/def/core#WineTasting">Wine Tasting</a>
</li>
<li>
<a href="#https://ontologia.segittur.es/turismo/def/core#Winery"
title="https://ontologia.segittur.es/turismo/def/core#Winery">Winery</a>
</li>
</ul><h4>Object Properties</h4><ul xmlns:widoco="https://w3id.org/widoco/vocab#"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
class="hlist">
<li>
<a href="#associatedDOP"
title="http://ontologia.segittur.es/enoturismo/def/core#associatedDOP">associated d o p</a>
</li>
<li>
<a href="#bears"
title="http://ontologia.segittur.es/enoturismo/def/core#bears">bears</a>
</li>
<li>
<a href="#belongsTo"
title="http://ontologia.segittur.es/enoturismo/def/core#belongsTo">belongs to</a>
</li>
<li>
<a href="#belongsToRegion"
title="http://ontologia.segittur.es/enoturismo/def/core#belongsToRegion">belongs to region</a>
</li>
<li>
<a href="#composedOf"
title="http://ontologia.segittur.es/enoturismo/def/core#composedOf">composed of</a>
</li>
<li>
<a href="#https://ontologia.segittur.es/turismo/def/core#hasAcknowledgement"
title="https://ontologia.segittur.es/turismo/def/core#hasAcknowledgement">has acknowledgement</a>
</li>
<li>
<a href="#hasExperiences"
title="http://ontologia.segittur.es/enoturismo/def/core#hasExperiences">has experiences</a>
</li>
<li>
<a href="#hasMunicipality"
title="http://ontologia.segittur.es/enoturismo/def/core#hasMunicipality">has municipality</a>
</li>
<li>
<a href="#hasNextWineFoodSample"
title="http://ontologia.segittur.es/enoturismo/def/core#hasNextWineFoodSample">has next wine food sample</a>
</li>
<li>
<a href="#hasNextWineSample"
title="http://ontologia.segittur.es/enoturismo/def/core#hasNextWineSample">has next wine sample</a>
</li>
<li>
<a href="#hasStand"
title="http://ontologia.segittur.es/enoturismo/def/core#hasStand">has stand</a>
</li>
<li>
<a href="#hasVineyard"
title="http://ontologia.segittur.es/enoturismo/def/core#hasVineyard">has vineyard</a>
</li>
<li>
<a href="#hasWineFoodSample"
title="http://ontologia.segittur.es/enoturismo/def/core#hasWineFoodSample">has wine food sample</a>
</li>
<li>
<a href="#hasWineMuseum"
title="http://ontologia.segittur.es/enoturismo/def/core#hasWineMuseum">has wine museum</a>
</li>
<li>
<a href="#hasWineSample"
title="http://ontologia.segittur.es/enoturismo/def/core#hasWineSample">has wine sample</a>
</li>
<li>
<a href="#https://ontologia.segittur.es/turismo/def/core#offeredBy"
title="https://ontologia.segittur.es/turismo/def/core#offeredBy">offered by</a>
</li>
<li>
<a href="#https://ontologia.segittur.es/turismo/def/core#offers"
title="https://ontologia.segittur.es/turismo/def/core#offers">offers</a>
</li>
<li>
<a href="#organizedBy"
title="http://ontologia.segittur.es/enoturismo/def/core#organizedBy">organized by</a>
</li>
<li>
<a href="#originatedFrom"
title="http://ontologia.segittur.es/enoturismo/def/core#originatedFrom">originated from</a>
</li>
<li>
<a href="#perfoms"
title="http://ontologia.segittur.es/enoturismo/def/core#perfoms">perfoms</a>
</li>
<li>
<a href="#produces"
title="http://ontologia.segittur.es/enoturismo/def/core#produces">produces</a>
</li>
<li>
<a href="#promotesWine"
title="http://ontologia.segittur.es/enoturismo/def/core#promotesWine">promotes wine</a>
</li>
<li>
<a href="#realizedBy"
title="http://ontologia.segittur.es/enoturismo/def/core#realizedBy">realized by</a>
</li>
<li>
<a href="#usesFood"
title="http://ontologia.segittur.es/enoturismo/def/core#usesFood">uses food</a>
</li>
<li>
<a href="#usesWineForTesting"
title="http://ontologia.segittur.es/enoturismo/def/core#usesWineForTesting">uses wine for testing</a>
</li>
<li>
<a href="#usesWineForWineTesting"
title="http://ontologia.segittur.es/enoturismo/def/core#usesWineForWineTesting">uses wine for wine testing</a>
</li>
<li>
<a href="#visitsMuseum"
title="http://ontologia.segittur.es/enoturismo/def/core#visitsMuseum">visits museum</a>
</li>
<li>
<a href="#visitsVineyard"
title="http://ontologia.segittur.es/enoturismo/def/core#visitsVineyard">visits vineyard</a>
</li>
</ul><h4>Data Properties</h4><ul xmlns:widoco="https://w3id.org/widoco/vocab#"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
class="hlist">
<li>
<a href="#description"
title="http://ontologia.segittur.es/enoturismo/def/core#description">
<span>description</span>
</a>
</li>
<li>
<a href="#id"
title="http://ontologia.segittur.es/enoturismo/def/core#id">
<span>id</span>
</a>
</li>
<li>
<a href="#name"
title="http://ontologia.segittur.es/enoturismo/def/core#name">
<span>name</span>
</a>
</li>
<li>
<a href="#postalCode"
title="http://ontologia.segittur.es/enoturismo/def/core#postalCode">
<span>postal Code</span>
</a>
</li>
<li>
<a href="#productionRule"
title="http://ontologia.segittur.es/enoturismo/def/core#productionRule">
<span>production Rule</span>
</a>
</li>
<li>
<a href="#region"
title="http://ontologia.segittur.es/enoturismo/def/core#region">
<span>region</span>
</a>
</li>
<li>
<a href="#registerDate"
title="http://ontologia.segittur.es/enoturismo/def/core#registerDate">
<span>register Date</span>
</a>
</li>
<li>
<a href="#regulatoryCouncil"
title="http://ontologia.segittur.es/enoturismo/def/core#regulatoryCouncil">
<span>regulatory Council</span>
</a>
</li>
</ul><iframe src="webvowl/index.html"></iframe>
</div>
<!--DESCRIPTION SECTION-->
<div id="description"><h2 id="desc" class="list">Enotourism Ontology: Description <span class="backlink"> back to <a href="#toc">ToC</a></span></h2>
<span class="markdown">Extend the SEGITTUR ontology with a enotourism ontology for a group project in the UPM's Ontological Engineering course.</span></div>
<!--CROSSREF SECTION-->
<div id="crossref"><h2 id="crossreference" class="list">Cross-reference for Enotourism Ontology classes, object properties and data properties <span class="backlink"> back to <a href="#toc">ToC</a></span></h2>
This section provides details for each class and property defined by Enotourism Ontology.
<div xmlns:widoco="https://w3id.org/widoco/vocab#" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" id="classes">
<h3 id="classes-headline" class="list">Classes</h3>
<ul class="hlist">
<li><a href="#https://ontologia.segittur.es/turismo/def/core#Acknowledgement" title="https://ontologia.segittur.es/turismo/def/core#Acknowledgement">Acknowledgement</a></li>
<li><a href="#http://xmlns.com/foaf/0.1/Agent" title="http://xmlns.com/foaf/0.1/Agent">Agent</a></li>
<li><a href="#https://ontologia.segittur.es/turismo/def/core#AgritourismExperience" title="https://ontologia.segittur.es/turismo/def/core#AgritourismExperience">Agritourism Experience</a></li>
<li><a href="#https://ontologia.segittur.es/turismo/def/core#AgritourismFacility" title="https://ontologia.segittur.es/turismo/def/core#AgritourismFacility">Agritourism Facility</a></li>
<li><a href="#https://ontologia.segittur.es/turismo/def/core#Certification" title="https://ontologia.segittur.es/turismo/def/core#Certification">Certification</a></li>
<li><a href="#DOP" title="http://ontologia.segittur.es/enoturismo/def/core#DOP">D O P</a></li>
<li><a href="#EnotourismDestination" title="http://ontologia.segittur.es/enoturismo/def/core#EnotourismDestination">Enotourism Destination</a></li>
<li><a href="#https://ontologia.segittur.es/turismo/def/core#Event" title="https://ontologia.segittur.es/turismo/def/core#Event">Event</a></li>
<li><a href="#https://ontologia.segittur.es/turismo/def/core#EventOrganisationCompany" title="https://ontologia.segittur.es/turismo/def/core#EventOrganisationCompany">Event Organisation Company</a></li>
<li><a href="#Municipality" title="http://ontologia.segittur.es/enoturismo/def/core#Municipality">Municipality</a></li>
<li><a href="#https://ontologia.segittur.es/turismo/def/core#Museum" title="https://ontologia.segittur.es/turismo/def/core#Museum">Museum</a></li>
<li><a href="#MuseumVisit" title="http://ontologia.segittur.es/enoturismo/def/core#MuseumVisit">Museum Visit</a></li>
<li><a href="#http://purl.obolibrary.org/obo/foodon.owl#PreparedFoodProduct" title="http://purl.obolibrary.org/obo/foodon.owl#PreparedFoodProduct">Prepared Food Product</a></li>
<li><a href="#https://ontologia.segittur.es/turismo/def/core#Rating" title="https://ontologia.segittur.es/turismo/def/core#Rating">Rating</a></li>
<li><a href="#Role" title="http://ontologia.segittur.es/enoturismo/def/core#Role">Role</a></li>
<li><a href="#Tasting" title="http://ontologia.segittur.es/enoturismo/def/core#Tasting">Tasting</a></li>
<li><a href="#https://ontologia.segittur.es/turismo/def/core#TourismDestination" title="https://ontologia.segittur.es/turismo/def/core#TourismDestination">Tourism Destination</a></li>
<li><a href="#https://ontologia.segittur.es/turismo/def/core#TourismOrganisation" title="https://ontologia.segittur.es/turismo/def/core#TourismOrganisation">Tourism Organisation</a></li>
<li><a href="#https://ontologia.segittur.es/turismo/def/core#Vineyard" title="https://ontologia.segittur.es/turismo/def/core#Vineyard">Vineyard</a></li>
<li><a href="#VineyardVisit" title="http://ontologia.segittur.es/enoturismo/def/core#VineyardVisit">Vineyard Visit</a></li>
<li><a href="#http://purl.org/ceu/ebaco/core#Wine" title="http://purl.org/ceu/ebaco/core#Wine">Wine</a></li>
<li><a href="#WineFestival" title="http://ontologia.segittur.es/enoturismo/def/core#WineFestival">Wine Festival</a></li>
<li><a href="#WineFestivalActivity" title="http://ontologia.segittur.es/enoturismo/def/core#WineFestivalActivity">Wine Festival Activity</a></li>
<li><a href="#WineFoodSample" title="http://ontologia.segittur.es/enoturismo/def/core#WineFoodSample">Wine Food Sample</a></li>
<li><a href="#WineMuseum" title="http://ontologia.segittur.es/enoturismo/def/core#WineMuseum">Wine Museum</a></li>
<li><a href="#WineRoute" title="http://ontologia.segittur.es/enoturismo/def/core#WineRoute">Wine Route</a></li>
<li><a href="#WineSample" title="http://ontologia.segittur.es/enoturismo/def/core#WineSample">Wine Sample</a></li>
<li><a href="#WineStall" title="http://ontologia.segittur.es/enoturismo/def/core#WineStall">Wine Stall</a></li>
<li><a href="#WineTasting" title="http://ontologia.segittur.es/enoturismo/def/core#WineTasting">Wine Tasting</a></li>
<li><a href="#https://ontologia.segittur.es/turismo/def/core#Winery" title="https://ontologia.segittur.es/turismo/def/core#Winery">Winery</a></li>
</ul>
<div class="entity" id="https://ontologia.segittur.es/turismo/def/core#Acknowledgement">
<h3>Acknowledgement<sup class="type-c" title="class">c</sup> <span class="backlink"> back to <a href="#toc">ToC</a> or <a href="#classes">Class ToC</a> </span></h3>
<p><strong>IRI:</strong> https://ontologia.segittur.es/turismo/def/core#Acknowledgement</p>
<dl class="description">
<dt>
has sub-classes
</dt>
<dd>
<a href="#https://ontologia.segittur.es/turismo/def/core#Certification" title="https://ontologia.segittur.es/turismo/def/core#Certification">Certification</a> <sup class="type-c" title="class">c</sup>, <a href="#https://ontologia.segittur.es/turismo/def/core#Rating" title="https://ontologia.segittur.es/turismo/def/core#Rating">Rating</a> <sup class="type-c" title="class">c</sup>
</dd>
<dt>
is in range of
</dt>
<dd>
<a href="#https://ontologia.segittur.es/turismo/def/core#hasAcknowledgement" title="https://ontologia.segittur.es/turismo/def/core#hasAcknowledgement">has acknowledgement</a> <sup class="type-op" title="object property">op</sup>
</dd>
</dl>
</div>
<div class="entity" id="http://xmlns.com/foaf/0.1/Agent">
<h3>Agent<sup class="type-c" title="class">c</sup> <span class="backlink"> back to <a href="#toc">ToC</a> or <a href="#classes">Class ToC</a> </span></h3>
<p><strong>IRI:</strong> http://xmlns.com/foaf/0.1/Agent</p>
<dl class="description">
<dt>
is in domain of
</dt>
<dd>
<a href="#bears" title="http://ontologia.segittur.es/enoturismo/def/core#bears">bears</a> <sup class="type-op" title="object property">op</sup>, <a href="#perfoms" title="http://ontologia.segittur.es/enoturismo/def/core#perfoms">perfoms</a> <sup class="type-op" title="object property">op</sup>
</dd>
<dt>
is in range of
</dt>
<dd>
<a href="#organizedBy" title="http://ontologia.segittur.es/enoturismo/def/core#organizedBy">organized by</a> <sup class="type-op" title="object property">op</sup>
</dd>
</dl>
</div>
<div class="entity" id="https://ontologia.segittur.es/turismo/def/core#AgritourismExperience">
<h3>Agritourism Experience<sup class="type-c" title="class">c</sup> <span class="backlink"> back to <a href="#toc">ToC</a> or <a href="#classes">Class ToC</a> </span></h3>
<p><strong>IRI:</strong> https://ontologia.segittur.es/turismo/def/core#AgritourismExperience</p>
<dl class="description">
<dt>
has sub-classes
</dt>
<dd>
<a href="#MuseumVisit" title="http://ontologia.segittur.es/enoturismo/def/core#MuseumVisit">Museum Visit</a> <sup class="type-c" title="class">c</sup>, <a href="#Tasting" title="http://ontologia.segittur.es/enoturismo/def/core#Tasting">Tasting</a> <sup class="type-c" title="class">c</sup>, <a href="#VineyardVisit" title="http://ontologia.segittur.es/enoturismo/def/core#VineyardVisit">Vineyard Visit</a> <sup class="type-c" title="class">c</sup>, <a href="#WineTasting" title="http://ontologia.segittur.es/enoturismo/def/core#WineTasting">Wine Tasting</a> <sup class="type-c" title="class">c</sup>
</dd>
<dt>
is in range of
</dt>
<dd>
<a href="#hasExperiences" title="http://ontologia.segittur.es/enoturismo/def/core#hasExperiences">has experiences</a> <sup class="type-op" title="object property">op</sup>, <a href="#https://ontologia.segittur.es/turismo/def/core#offers" title="https://ontologia.segittur.es/turismo/def/core#offers">offers</a> <sup class="type-op" title="object property">op</sup>, <a href="#perfoms" title="http://ontologia.segittur.es/enoturismo/def/core#perfoms">perfoms</a> <sup class="type-op" title="object property">op</sup>, <a href="#realizedBy" title="http://ontologia.segittur.es/enoturismo/def/core#realizedBy">realized by</a> <sup class="type-op" title="object property">op</sup>
</dd>
</dl>
</div>
<div class="entity" id="https://ontologia.segittur.es/turismo/def/core#AgritourismFacility">
<h3>Agritourism Facility<sup class="type-c" title="class">c</sup> <span class="backlink"> back to <a href="#toc">ToC</a> or <a href="#classes">Class ToC</a> </span></h3>
<p><strong>IRI:</strong> https://ontologia.segittur.es/turismo/def/core#AgritourismFacility</p>
<dl class="description">
<dt>
has sub-classes
</dt>
<dd>
<a href="#https://ontologia.segittur.es/turismo/def/core#Vineyard" title="https://ontologia.segittur.es/turismo/def/core#Vineyard">Vineyard</a> <sup class="type-c" title="class">c</sup>, <a href="#WineMuseum" title="http://ontologia.segittur.es/enoturismo/def/core#WineMuseum">Wine Museum</a> <sup class="type-c" title="class">c</sup>
</dd>
<dt>
is in domain of
</dt>
<dd>
<a href="#https://ontologia.segittur.es/turismo/def/core#offers" title="https://ontologia.segittur.es/turismo/def/core#offers">offers</a> <sup class="type-op" title="object property">op</sup>
</dd>
</dl>
</div>
<div class="entity" id="https://ontologia.segittur.es/turismo/def/core#Certification">
<h3>Certification<sup class="type-c" title="class">c</sup> <span class="backlink"> back to <a href="#toc">ToC</a> or <a href="#classes">Class ToC</a> </span></h3>
<p><strong>IRI:</strong> https://ontologia.segittur.es/turismo/def/core#Certification</p>
<dl class="description">
<dt>
has super-classes
</dt>
<dd>
<a href="#https://ontologia.segittur.es/turismo/def/core#Acknowledgement" title="https://ontologia.segittur.es/turismo/def/core#Acknowledgement">Acknowledgement</a> <sup class="type-c" title="class">c</sup>
</dd>
<dt>
has sub-classes
</dt>
<dd>
<a href="#DOP" title="http://ontologia.segittur.es/enoturismo/def/core#DOP">D O P</a> <sup class="type-c" title="class">c</sup>
</dd>
</dl>
</div>
<div class="entity" id="DOP">
<h3>D O P<sup class="type-c" title="class">c</sup> <span class="backlink"> back to <a href="#toc">ToC</a> or <a href="#classes">Class ToC</a> </span></h3>
<p><strong>IRI:</strong> http://ontologia.segittur.es/enoturismo/def/core#DOP</p>
<div class="comment">
<span class="markdown">Officially recognized geographical area where wine production and processing are regulated to ensure origin and quality.</span>
</div>
<dl class="description">
<dt>
has super-classes
</dt>
<dd>
<a href="#https://ontologia.segittur.es/turismo/def/core#Certification" title="https://ontologia.segittur.es/turismo/def/core#Certification">Certification</a> <sup class="type-c" title="class">c</sup>
</dd>
<dt>
is in domain of
</dt>
<dd>
<a href="#name" title="http://ontologia.segittur.es/enoturismo/def/core#name">name</a> <sup class="type-dp" title="data property">dp</sup>, <a href="#originatedFrom" title="http://ontologia.segittur.es/enoturismo/def/core#originatedFrom">originated from</a> <sup class="type-op" title="object property">op</sup>, <a href="#productionRule" title="http://ontologia.segittur.es/enoturismo/def/core#productionRule">production Rule</a> <sup class="type-dp" title="data property">dp</sup>, <a href="#region" title="http://ontologia.segittur.es/enoturismo/def/core#region">region</a> <sup class="type-dp" title="data property">dp</sup>, <a href="#registerDate" title="http://ontologia.segittur.es/enoturismo/def/core#registerDate">register Date</a> <sup class="type-dp" title="data property">dp</sup>, <a href="#regulatoryCouncil" title="http://ontologia.segittur.es/enoturismo/def/core#regulatoryCouncil">regulatory Council</a> <sup class="type-dp" title="data property">dp</sup>
</dd>
<dt>
is in range of
</dt>
<dd>
<a href="#associatedDOP" title="http://ontologia.segittur.es/enoturismo/def/core#associatedDOP">associated d o p</a> <sup class="type-op" title="object property">op</sup>
</dd>
</dl>
</div>
<div class="entity" id="EnotourismDestination">
<h3>Enotourism Destination<sup class="type-c" title="class">c</sup> <span class="backlink"> back to <a href="#toc">ToC</a> or <a href="#classes">Class ToC</a> </span></h3>
<p><strong>IRI:</strong> http://ontologia.segittur.es/enoturismo/def/core#EnotourismDestination</p>
<div class="comment">
<span class="markdown">Place or region offering tourist experiences related to the culture, production, and enjoyment of wine.</span>
</div>
<dl class="description">
<dt>
has super-classes
</dt>
<dd>
<a href="#https://ontologia.segittur.es/turismo/def/core#TourismDestination" title="https://ontologia.segittur.es/turismo/def/core#TourismDestination">Tourism Destination</a> <sup class="type-c" title="class">c</sup>
</dd>
<dt>
is in domain of
</dt>
<dd>
<a href="#hasMunicipality" title="http://ontologia.segittur.es/enoturismo/def/core#hasMunicipality">has municipality</a> <sup class="type-op" title="object property">op</sup>
</dd>
<dt>
is in range of
</dt>
<dd>
<a href="#belongsToRegion" title="http://ontologia.segittur.es/enoturismo/def/core#belongsToRegion">belongs to region</a> <sup class="type-op" title="object property">op</sup>, <a href="#originatedFrom" title="http://ontologia.segittur.es/enoturismo/def/core#originatedFrom">originated from</a> <sup class="type-op" title="object property">op</sup>
</dd>
</dl>
</div>
<div class="entity" id="https://ontologia.segittur.es/turismo/def/core#Event">
<h3>Event<sup class="type-c" title="class">c</sup> <span class="backlink"> back to <a href="#toc">ToC</a> or <a href="#classes">Class ToC</a> </span></h3>
<p><strong>IRI:</strong> https://ontologia.segittur.es/turismo/def/core#Event</p>
<dl class="description">
<dt>
has sub-classes
</dt>
<dd>
<a href="#WineFestival" title="http://ontologia.segittur.es/enoturismo/def/core#WineFestival">Wine Festival</a> <sup class="type-c" title="class">c</sup>
</dd>
<dt>
is in domain of
</dt>
<dd>
<a href="#https://ontologia.segittur.es/turismo/def/core#offeredBy" title="https://ontologia.segittur.es/turismo/def/core#offeredBy">offered by</a> <sup class="type-op" title="object property">op</sup>
</dd>
</dl>
</div>
<div class="entity" id="https://ontologia.segittur.es/turismo/def/core#EventOrganisationCompany">
<h3>Event Organisation Company<sup class="type-c" title="class">c</sup> <span class="backlink"> back to <a href="#toc">ToC</a> or <a href="#classes">Class ToC</a> </span></h3>
<p><strong>IRI:</strong> https://ontologia.segittur.es/turismo/def/core#EventOrganisationCompany</p>
<dl class="description">
<dt>
has sub-classes
</dt>
<dd>
<a href="#https://ontologia.segittur.es/turismo/def/core#Winery" title="https://ontologia.segittur.es/turismo/def/core#Winery">Winery</a> <sup class="type-c" title="class">c</sup>
</dd>
<dt>
is in range of
</dt>
<dd>
<a href="#https://ontologia.segittur.es/turismo/def/core#offeredBy" title="https://ontologia.segittur.es/turismo/def/core#offeredBy">offered by</a> <sup class="type-op" title="object property">op</sup>
</dd>
</dl>
</div>
<div class="entity" id="Municipality">
<h3>Municipality<sup class="type-c" title="class">c</sup> <span class="backlink"> back to <a href="#toc">ToC</a> or <a href="#classes">Class ToC</a> </span></h3>
<p><strong>IRI:</strong> http://ontologia.segittur.es/enoturismo/def/core#Municipality</p>
<div class="comment">
<span class="markdown">Geographical area encompassing a local community.</span>
</div>
<dl class="description">
<dt>
is in domain of
</dt>
<dd>
<a href="#name" title="http://ontologia.segittur.es/enoturismo/def/core#name">name</a> <sup class="type-dp" title="data property">dp</sup>, <a href="#postalCode" title="http://ontologia.segittur.es/enoturismo/def/core#postalCode">postal Code</a> <sup class="type-dp" title="data property">dp</sup>
</dd>
<dt>
is in range of
</dt>
<dd>
<a href="#hasMunicipality" title="http://ontologia.segittur.es/enoturismo/def/core#hasMunicipality">has municipality</a> <sup class="type-op" title="object property">op</sup>
</dd>
</dl>
</div>
<div class="entity" id="https://ontologia.segittur.es/turismo/def/core#Museum">
<h3>Museum<sup class="type-c" title="class">c</sup> <span class="backlink"> back to <a href="#toc">ToC</a> or <a href="#classes">Class ToC</a> </span></h3>
<p><strong>IRI:</strong> https://ontologia.segittur.es/turismo/def/core#Museum</p>
<dl class="description">
<dt>
has sub-classes
</dt>
<dd>
<a href="#WineMuseum" title="http://ontologia.segittur.es/enoturismo/def/core#WineMuseum">Wine Museum</a> <sup class="type-c" title="class">c</sup>
</dd>
</dl>
</div>
<div class="entity" id="MuseumVisit">
<h3>Museum Visit<sup class="type-c" title="class">c</sup> <span class="backlink"> back to <a href="#toc">ToC</a> or <a href="#classes">Class ToC</a> </span></h3>
<p><strong>IRI:</strong> http://ontologia.segittur.es/enoturismo/def/core#MuseumVisit</p>
<div class="comment">
<span class="markdown">Tourist experience involving a visit to a museum related to wine culture, history, or heritage.</span>
</div>
<dl class="description">
<dt>
has super-classes
</dt>
<dd>
<a href="#https://ontologia.segittur.es/turismo/def/core#AgritourismExperience" title="https://ontologia.segittur.es/turismo/def/core#AgritourismExperience">Agritourism Experience</a> <sup class="type-c" title="class">c</sup>
</dd>
<dt>
is in domain of
</dt>
<dd>
<a href="#visitsMuseum" title="http://ontologia.segittur.es/enoturismo/def/core#visitsMuseum">visits museum</a> <sup class="type-op" title="object property">op</sup>
</dd>
<dt>
is disjoint with
</dt>
<dd>
<a href="#Tasting" title="http://ontologia.segittur.es/enoturismo/def/core#Tasting">Tasting</a> <sup class="type-c" title="class">c</sup>, <a href="#VineyardVisit" title="http://ontologia.segittur.es/enoturismo/def/core#VineyardVisit">Vineyard Visit</a> <sup class="type-c" title="class">c</sup>, <a href="#WineTasting" title="http://ontologia.segittur.es/enoturismo/def/core#WineTasting">Wine Tasting</a> <sup class="type-c" title="class">c</sup>
</dd>
</dl>
</div>
<div class="entity" id="http://purl.obolibrary.org/obo/foodon.owl#PreparedFoodProduct">
<h3>Prepared Food Product<sup class="type-c" title="class">c</sup> <span class="backlink"> back to <a href="#toc">ToC</a> or <a href="#classes">Class ToC</a> </span></h3>
<p><strong>IRI:</strong> http://purl.obolibrary.org/obo/foodon.owl#PreparedFoodProduct</p>
<dl class="description">
<dt>
is in range of
</dt>
<dd>
<a href="#usesFood" title="http://ontologia.segittur.es/enoturismo/def/core#usesFood">uses food</a> <sup class="type-op" title="object property">op</sup>
</dd>
</dl>
</div>
<div class="entity" id="https://ontologia.segittur.es/turismo/def/core#Rating">
<h3>Rating<sup class="type-c" title="class">c</sup> <span class="backlink"> back to <a href="#toc">ToC</a> or <a href="#classes">Class ToC</a> </span></h3>
<p><strong>IRI:</strong> https://ontologia.segittur.es/turismo/def/core#Rating</p>
<dl class="description">
<dt>
has super-classes
</dt>
<dd>
<a href="#https://ontologia.segittur.es/turismo/def/core#Acknowledgement" title="https://ontologia.segittur.es/turismo/def/core#Acknowledgement">Acknowledgement</a> <sup class="type-c" title="class">c</sup>
</dd>
</dl>
</div>
<div class="entity" id="Role">
<h3>Role<sup class="type-c" title="class">c</sup> <span class="backlink"> back to <a href="#toc">ToC</a> or <a href="#classes">Class ToC</a> </span></h3>
<p><strong>IRI:</strong> http://ontologia.segittur.es/enoturismo/def/core#Role</p>
<dl class="description">
<dt>
is in domain of
</dt>
<dd>
<a href="#description" title="http://ontologia.segittur.es/enoturismo/def/core#description">description</a> <sup class="type-dp" title="data property">dp</sup>, <a href="#name" title="http://ontologia.segittur.es/enoturismo/def/core#name">name</a> <sup class="type-dp" title="data property">dp</sup>, <a href="#realizedBy" title="http://ontologia.segittur.es/enoturismo/def/core#realizedBy">realized by</a> <sup class="type-op" title="object property">op</sup>
</dd>
<dt>
is in range of
</dt>
<dd>
<a href="#bears" title="http://ontologia.segittur.es/enoturismo/def/core#bears">bears</a> <sup class="type-op" title="object property">op</sup>
</dd>
</dl>
</div>
<div class="entity" id="Tasting">
<h3>Tasting<sup class="type-c" title="class">c</sup> <span class="backlink"> back to <a href="#toc">ToC</a> or <a href="#classes">Class ToC</a> </span></h3>
<p><strong>IRI:</strong> http://ontologia.segittur.es/enoturismo/def/core#Tasting</p>
<div class="comment">
<span class="markdown">Gastronomic experience that pairs wine and food to highlight and balance their flavors and aromas.</span>
</div>
<dl class="description">
<dt>
has super-classes
</dt>
<dd>
<a href="#https://ontologia.segittur.es/turismo/def/core#AgritourismExperience" title="https://ontologia.segittur.es/turismo/def/core#AgritourismExperience">Agritourism Experience</a> <sup class="type-c" title="class">c</sup>
</dd>
<dt>
is in domain of
</dt>
<dd>
<a href="#hasWineFoodSample" title="http://ontologia.segittur.es/enoturismo/def/core#hasWineFoodSample">has wine food sample</a> <sup class="type-op" title="object property">op</sup>
</dd>
<dt>
is disjoint with
</dt>
<dd>
<a href="#MuseumVisit" title="http://ontologia.segittur.es/enoturismo/def/core#MuseumVisit">Museum Visit</a> <sup class="type-c" title="class">c</sup>, <a href="#VineyardVisit" title="http://ontologia.segittur.es/enoturismo/def/core#VineyardVisit">Vineyard Visit</a> <sup class="type-c" title="class">c</sup>, <a href="#WineTasting" title="http://ontologia.segittur.es/enoturismo/def/core#WineTasting">Wine Tasting</a> <sup class="type-c" title="class">c</sup>
</dd>
</dl>
</div>
<div class="entity" id="https://ontologia.segittur.es/turismo/def/core#TourismDestination">
<h3>Tourism Destination<sup class="type-c" title="class">c</sup> <span class="backlink"> back to <a href="#toc">ToC</a> or <a href="#classes">Class ToC</a> </span></h3>
<p><strong>IRI:</strong> https://ontologia.segittur.es/turismo/def/core#TourismDestination</p>
<dl class="description">
<dt>
has sub-classes
</dt>
<dd>
<a href="#EnotourismDestination" title="http://ontologia.segittur.es/enoturismo/def/core#EnotourismDestination">Enotourism Destination</a> <sup class="type-c" title="class">c</sup>
</dd>
</dl>
</div>
<div class="entity" id="https://ontologia.segittur.es/turismo/def/core#TourismOrganisation">
<h3>Tourism Organisation<sup class="type-c" title="class">c</sup> <span class="backlink"> back to <a href="#toc">ToC</a> or <a href="#classes">Class ToC</a> </span></h3>
<p><strong>IRI:</strong> https://ontologia.segittur.es/turismo/def/core#TourismOrganisation</p>
<dl class="description">
<dt>
has sub-classes
</dt>
<dd>
<a href="#https://ontologia.segittur.es/turismo/def/core#Winery" title="https://ontologia.segittur.es/turismo/def/core#Winery">Winery</a> <sup class="type-c" title="class">c</sup>
</dd>
</dl>
</div>
<div class="entity" id="https://ontologia.segittur.es/turismo/def/core#Vineyard">
<h3>Vineyard<sup class="type-c" title="class">c</sup> <span class="backlink"> back to <a href="#toc">ToC</a> or <a href="#classes">Class ToC</a> </span></h3>
<p><strong>IRI:</strong> https://ontologia.segittur.es/turismo/def/core#Vineyard</p>
<div class="comment">
<span class="markdown">Land dedicated to the cultivation of grapevines for the production of wine grapes.</span>
</div>
<dl class="description">
<dt>
has super-classes
</dt>
<dd>
<a href="#https://ontologia.segittur.es/turismo/def/core#AgritourismFacility" title="https://ontologia.segittur.es/turismo/def/core#AgritourismFacility">Agritourism Facility</a> <sup class="type-c" title="class">c</sup>
</dd>
<dt>
is in range of
</dt>
<dd>
<a href="#hasVineyard" title="http://ontologia.segittur.es/enoturismo/def/core#hasVineyard">has vineyard</a> <sup class="type-op" title="object property">op</sup>, <a href="#visitsVineyard" title="http://ontologia.segittur.es/enoturismo/def/core#visitsVineyard">visits vineyard</a> <sup class="type-op" title="object property">op</sup>
</dd>
</dl>
</div>
<div class="entity" id="VineyardVisit">
<h3>Vineyard Visit<sup class="type-c" title="class">c</sup> <span class="backlink"> back to <a href="#toc">ToC</a> or <a href="#classes">Class ToC</a> </span></h3>
<p><strong>IRI:</strong> http://ontologia.segittur.es/enoturismo/def/core#VineyardVisit</p>
<div class="comment">
<span class="markdown">Tourist activity involving a tour of vineyards to learn about grape cultivation and the wine production environment.</span>
</div>
<dl class="description">
<dt>
has super-classes
</dt>
<dd>
<a href="#https://ontologia.segittur.es/turismo/def/core#AgritourismExperience" title="https://ontologia.segittur.es/turismo/def/core#AgritourismExperience">Agritourism Experience</a> <sup class="type-c" title="class">c</sup>
</dd>
<dt>
is in domain of
</dt>
<dd>
<a href="#visitsVineyard" title="http://ontologia.segittur.es/enoturismo/def/core#visitsVineyard">visits vineyard</a> <sup class="type-op" title="object property">op</sup>
</dd>
<dt>
is disjoint with
</dt>
<dd>
<a href="#MuseumVisit" title="http://ontologia.segittur.es/enoturismo/def/core#MuseumVisit">Museum Visit</a> <sup class="type-c" title="class">c</sup>, <a href="#Tasting" title="http://ontologia.segittur.es/enoturismo/def/core#Tasting">Tasting</a> <sup class="type-c" title="class">c</sup>, <a href="#WineTasting" title="http://ontologia.segittur.es/enoturismo/def/core#WineTasting">Wine Tasting</a> <sup class="type-c" title="class">c</sup>
</dd>
</dl>
</div>
<div class="entity" id="http://purl.org/ceu/ebaco/core#Wine">
<h3>Wine<sup class="type-c" title="class">c</sup> <span class="backlink"> back to <a href="#toc">ToC</a> or <a href="#classes">Class ToC</a> </span></h3>
<p><strong>IRI:</strong> http://purl.org/ceu/ebaco/core#Wine</p>
<dl class="description">
<dt>
is in domain of
</dt>
<dd>
<a href="#https://ontologia.segittur.es/turismo/def/core#hasAcknowledgement" title="https://ontologia.segittur.es/turismo/def/core#hasAcknowledgement">has acknowledgement</a> <sup class="type-op" title="object property">op</sup>
</dd>
<dt>
is in range of
</dt>
<dd>
<a href="#produces" title="http://ontologia.segittur.es/enoturismo/def/core#produces">produces</a> <sup class="type-op" title="object property">op</sup>, <a href="#promotesWine" title="http://ontologia.segittur.es/enoturismo/def/core#promotesWine">promotes wine</a> <sup class="type-op" title="object property">op</sup>, <a href="#usesWineForTesting" title="http://ontologia.segittur.es/enoturismo/def/core#usesWineForTesting">uses wine for testing</a> <sup class="type-op" title="object property">op</sup>, <a href="#usesWineForWineTesting" title="http://ontologia.segittur.es/enoturismo/def/core#usesWineForWineTesting">uses wine for wine testing</a> <sup class="type-op" title="object property">op</sup>
</dd>
</dl>
</div>
<div class="entity" id="WineFestival">
<h3>Wine Festival<sup class="type-c" title="class">c</sup> <span class="backlink"> back to <a href="#toc">ToC</a> or <a href="#classes">Class ToC</a> </span></h3>
<p><strong>IRI:</strong> http://ontologia.segittur.es/enoturismo/def/core#WineFestival</p>
<div class="comment">
<span class="markdown">Public event celebrating wine culture through tastings, cultural activities, and social gatherings.</span>
</div>
<dl class="description">
<dt>
has super-classes
</dt>
<dd>
<a href="#https://ontologia.segittur.es/turismo/def/core#Event" title="https://ontologia.segittur.es/turismo/def/core#Event">Event</a> <sup class="type-c" title="class">c</sup>
</dd>
<dt>
is in domain of
</dt>
<dd>
<a href="#composedOf" title="http://ontologia.segittur.es/enoturismo/def/core#composedOf">composed of</a> <sup class="type-op" title="object property">op</sup>
</dd>
</dl>
</div>
<div class="entity" id="WineFestivalActivity">
<h3>Wine Festival Activity<sup class="type-c" title="class">c</sup> <span class="backlink"> back to <a href="#toc">ToC</a> or <a href="#classes">Class ToC</a> </span></h3>
<p><strong>IRI:</strong> http://ontologia.segittur.es/enoturismo/def/core#WineFestivalActivity</p>
<div class="comment">
<span class="markdown">Specific action or event within a wine festival that promotes participation and enjoyment centered around wine.</span>
</div>
<dl class="description">
<dt>
is in domain of
</dt>
<dd>
<a href="#hasExperiences" title="http://ontologia.segittur.es/enoturismo/def/core#hasExperiences">has experiences</a> <sup class="type-op" title="object property">op</sup>, <a href="#hasStand" title="http://ontologia.segittur.es/enoturismo/def/core#hasStand">has stand</a> <sup class="type-op" title="object property">op</sup>
</dd>
<dt>
is in range of
</dt>
<dd>
<a href="#composedOf" title="http://ontologia.segittur.es/enoturismo/def/core#composedOf">composed of</a> <sup class="type-op" title="object property">op</sup>
</dd>
</dl>
</div>
<div class="entity" id="WineFoodSample">
<h3>Wine Food Sample<sup class="type-c" title="class">c</sup> <span class="backlink"> back to <a href="#toc">ToC</a> or <a href="#classes">Class ToC</a> </span></h3>
<p><strong>IRI:</strong> http://ontologia.segittur.es/enoturismo/def/core#WineFoodSample</p>
<div class="comment">
<span class="markdown">Small serving of wine and food offered together to taste and appreciate their combination of flavors.</span>
</div>
<dl class="description">
<dt>
is in domain of
</dt>
<dd>
<a href="#hasNextWineFoodSample" title="http://ontologia.segittur.es/enoturismo/def/core#hasNextWineFoodSample">has next wine food sample</a> <sup class="type-op" title="object property">op</sup>, <a href="#usesFood" title="http://ontologia.segittur.es/enoturismo/def/core#usesFood">uses food</a> <sup class="type-op" title="object property">op</sup>, <a href="#usesWineForTesting" title="http://ontologia.segittur.es/enoturismo/def/core#usesWineForTesting">uses wine for testing</a> <sup class="type-op" title="object property">op</sup>
</dd>
<dt>
is in range of
</dt>
<dd>
<a href="#hasNextWineFoodSample" title="http://ontologia.segittur.es/enoturismo/def/core#hasNextWineFoodSample">has next wine food sample</a> <sup class="type-op" title="object property">op</sup>, <a href="#hasWineFoodSample" title="http://ontologia.segittur.es/enoturismo/def/core#hasWineFoodSample">has wine food sample</a> <sup class="type-op" title="object property">op</sup>
</dd>
</dl>
</div>
<div class="entity" id="WineMuseum">
<h3>Wine Museum<sup class="type-c" title="class">c</sup> <span class="backlink"> back to <a href="#toc">ToC</a> or <a href="#classes">Class ToC</a> </span></h3>
<p><strong>IRI:</strong> http://ontologia.segittur.es/enoturismo/def/core#WineMuseum</p>
<div class="comment">
<span class="markdown">Exhibition space dedicated to preserving and promoting the history, culture, and heritage of wine.</span>
</div>
<dl class="description">
<dt>
has super-classes
</dt>
<dd>
<a href="#https://ontologia.segittur.es/turismo/def/core#AgritourismFacility" title="https://ontologia.segittur.es/turismo/def/core#AgritourismFacility">Agritourism Facility</a> <sup class="type-c" title="class">c</sup>, <a href="#https://ontologia.segittur.es/turismo/def/core#Museum" title="https://ontologia.segittur.es/turismo/def/core#Museum">Museum</a> <sup class="type-c" title="class">c</sup>
</dd>
<dt>
is in range of
</dt>
<dd>
<a href="#hasWineMuseum" title="http://ontologia.segittur.es/enoturismo/def/core#hasWineMuseum">has wine museum</a> <sup class="type-op" title="object property">op</sup>, <a href="#visitsMuseum" title="http://ontologia.segittur.es/enoturismo/def/core#visitsMuseum">visits museum</a> <sup class="type-op" title="object property">op</sup>
</dd>
</dl>
</div>
<div class="entity" id="WineRoute">
<h3>Wine Route<sup class="type-c" title="class">c</sup> <span class="backlink"> back to <a href="#toc">ToC</a> or <a href="#classes">Class ToC</a> </span></h3>
<p><strong>IRI:</strong> http://ontologia.segittur.es/enoturismo/def/core#WineRoute</p>
<div class="comment">
<span class="markdown">Group of wineries and services that are part of a wine-producing area.</span>
</div>
<dl class="description">
<dt>
is in domain of
</dt>
<dd>
<a href="#associatedDOP" title="http://ontologia.segittur.es/enoturismo/def/core#associatedDOP">associated d o p</a> <sup class="type-op" title="object property">op</sup>, <a href="#belongsToRegion" title="http://ontologia.segittur.es/enoturismo/def/core#belongsToRegion">belongs to region</a> <sup class="type-op" title="object property">op</sup>, <a href="#name" title="http://ontologia.segittur.es/enoturismo/def/core#name">name</a> <sup class="type-dp" title="data property">dp</sup>, <a href="#region" title="http://ontologia.segittur.es/enoturismo/def/core#region">region</a> <sup class="type-dp" title="data property">dp</sup>
</dd>
<dt>
is in range of
</dt>
<dd>
<a href="#belongsTo" title="http://ontologia.segittur.es/enoturismo/def/core#belongsTo">belongs to</a> <sup class="type-op" title="object property">op</sup>
</dd>
</dl>
</div>
<div class="entity" id="WineSample">
<h3>Wine Sample<sup class="type-c" title="class">c</sup> <span class="backlink"> back to <a href="#toc">ToC</a> or <a href="#classes">Class ToC</a> </span></h3>
<p><strong>IRI:</strong> http://ontologia.segittur.es/enoturismo/def/core#WineSample</p>
<div class="comment">
<span class="markdown">Small amount of wine offered for tasting and evaluating its sensory characteristics.</span>
</div>
<dl class="description">
<dt>
is in domain of
</dt>
<dd>
<a href="#hasNextWineSample" title="http://ontologia.segittur.es/enoturismo/def/core#hasNextWineSample">has next wine sample</a> <sup class="type-op" title="object property">op</sup>, <a href="#usesWineForWineTesting" title="http://ontologia.segittur.es/enoturismo/def/core#usesWineForWineTesting">uses wine for wine testing</a> <sup class="type-op" title="object property">op</sup>
</dd>
<dt>
is in range of
</dt>
<dd>
<a href="#hasNextWineSample" title="http://ontologia.segittur.es/enoturismo/def/core#hasNextWineSample">has next wine sample</a> <sup class="type-op" title="object property">op</sup>, <a href="#hasWineSample" title="http://ontologia.segittur.es/enoturismo/def/core#hasWineSample">has wine sample</a> <sup class="type-op" title="object property">op</sup>
</dd>
</dl>
</div>
<div class="entity" id="WineStall">
<h3>Wine Stall<sup class="type-c" title="class">c</sup> <span class="backlink"> back to <a href="#toc">ToC</a> or <a href="#classes">Class ToC</a> </span></h3>
<p><strong>IRI:</strong> http://ontologia.segittur.es/enoturismo/def/core#WineStall</p>
<div class="comment">
<span class="markdown">Booth or stand where wines are offered for tasting or sale during events or festivals.</span>
</div>
<dl class="description">
<dt>
is in domain of
</dt>
<dd>
<a href="#id" title="http://ontologia.segittur.es/enoturismo/def/core#id">id</a> <sup class="type-dp" title="data property">dp</sup>, <a href="#name" title="http://ontologia.segittur.es/enoturismo/def/core#name">name</a> <sup class="type-dp" title="data property">dp</sup>, <a href="#organizedBy" title="http://ontologia.segittur.es/enoturismo/def/core#organizedBy">organized by</a> <sup class="type-op" title="object property">op</sup>, <a href="#promotesWine" title="http://ontologia.segittur.es/enoturismo/def/core#promotesWine">promotes wine</a> <sup class="type-op" title="object property">op</sup>
</dd>
<dt>
is in range of
</dt>
<dd>
<a href="#hasStand" title="http://ontologia.segittur.es/enoturismo/def/core#hasStand">has stand</a> <sup class="type-op" title="object property">op</sup>
</dd>
</dl>
</div>
<div class="entity" id="WineTasting">
<h3>Wine Tasting<sup class="type-c" title="class">c</sup> <span class="backlink"> back to <a href="#toc">ToC</a> or <a href="#classes">Class ToC</a> </span></h3>
<p><strong>IRI:</strong> http://ontologia.segittur.es/enoturismo/def/core#WineTasting</p>
<div class="comment">
<span class="markdown">Activity in which participants taste different wines to analyze their sensory properties and quality.</span>
</div>
<dl class="description">
<dt>
has super-classes
</dt>
<dd>