-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathontology.ttl
More file actions
547 lines (387 loc) · 25.6 KB
/
Copy pathontology.ttl
File metadata and controls
547 lines (387 loc) · 25.6 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
@prefix : <http://ontologia.segittur.es/enoturismo/def/core#> .
@prefix owl: <http://www.w3.org/2002/07/owl#> .
@prefix rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> .
@prefix xml: <http://www.w3.org/XML/1998/namespace> .
@prefix xsd: <http://www.w3.org/2001/XMLSchema#> .
@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
@base <http://ontologia.segittur.es/enoturismo/def/core#> .
<http://ontologia.segittur.es/enoturismo/def/core#> rdf:type owl:Ontology ;
:description "Ampliar la ontología de SEGITTUR con una ontología de enoturismo para un trabajo en grupo de la asignatura Ingeniería Ontológica de la UPM"@es ;
:title "Enotourism Ontology"@en ,
"Ontología de Enoturismo"@es ;
<http://purl.org/dc/terms/created> "2025-11-14"^^xsd:date ;
<http://purl.org/dc/terms/creator> "Adrián Racero Serrano" ,
"Juan Manuel Cardeñosa Borrego" ;
<http://purl.org/dc/terms/description> "Extend the SEGITTUR ontology with a enotourism ontology for a group project in the UPM's Ontological Engineering course."@en ;
<http://purl.org/dc/terms/license> <https://creativecommons.org/licenses/by/4.0/> ;
owl:versionInfo "1.0" ;
<https://w3id.org/mod#createdWith> <https://chowlk.linkeddata.es/> .
#################################################################
# Annotation properties
#################################################################
### http://ontologia.segittur.es/enoturismo/def/core#description
:description rdf:type owl:AnnotationProperty ;
rdfs:range xsd:string .
### http://ontologia.segittur.es/enoturismo/def/core#title
:title rdf:type owl:AnnotationProperty .
### http://purl.org/dc/terms/created
<http://purl.org/dc/terms/created> rdf:type owl:AnnotationProperty .
### http://purl.org/dc/terms/creator
<http://purl.org/dc/terms/creator> rdf:type owl:AnnotationProperty .
### http://purl.org/dc/terms/description
<http://purl.org/dc/terms/description> rdf:type owl:AnnotationProperty .
### http://purl.org/dc/terms/license
<http://purl.org/dc/terms/license> rdf:type owl:AnnotationProperty .
### http://www.w3.org/2002/07/owl#versionInfo
owl:versionInfo rdf:type owl:AnnotationProperty .
### https://w3id.org/mod#createdWith
<https://w3id.org/mod#createdWith> rdf:type owl:AnnotationProperty .
#################################################################
# Datatypes
#################################################################
### http://www.w3.org/2001/XMLSchema#date
xsd:date rdf:type rdfs:Datatype .
#################################################################
# Object Properties
#################################################################
### http://ontologia.segittur.es/enoturismo/def/core#associatedDOP
:associatedDOP rdf:type owl:ObjectProperty ;
rdfs:domain :WineRoute ;
rdfs:range :DOP ;
rdfs:label "associated d o p" .
### http://ontologia.segittur.es/enoturismo/def/core#bears
:bears rdf:type owl:ObjectProperty ;
rdfs:domain <http://xmlns.com/foaf/0.1/Agent> ;
rdfs:range :Role ;
rdfs:label "bears" .
### http://ontologia.segittur.es/enoturismo/def/core#belongsTo
:belongsTo rdf:type owl:ObjectProperty ;
rdfs:domain <https://ontologia.segittur.es/turismo/def/core#Winery> ;
rdfs:range :WineRoute ;
rdfs:label "belongs to" .
### http://ontologia.segittur.es/enoturismo/def/core#belongsToRegion
:belongsToRegion rdf:type owl:ObjectProperty ;
rdfs:domain :WineRoute ;
rdfs:range :EnotourismDestination ;
rdfs:label "belongs to region" .
### http://ontologia.segittur.es/enoturismo/def/core#composedOf
:composedOf rdf:type owl:ObjectProperty ;
rdfs:domain :WineFestival ;
rdfs:range :WineFestivalActivity ;
rdfs:label "composed of" .
### http://ontologia.segittur.es/enoturismo/def/core#hasExperiences
:hasExperiences rdf:type owl:ObjectProperty ;
rdfs:domain :WineFestivalActivity ;
rdfs:range <https://ontologia.segittur.es/turismo/def/core#AgritourismExperience> ;
rdfs:label "has experiences" .
### http://ontologia.segittur.es/enoturismo/def/core#hasMunicipality
:hasMunicipality rdf:type owl:ObjectProperty ;
rdfs:domain :EnotourismDestination ;
rdfs:range :Municipality ;
rdfs:label "has municipality" .
### http://ontologia.segittur.es/enoturismo/def/core#hasNextWineFoodSample
:hasNextWineFoodSample rdf:type owl:ObjectProperty ;
rdfs:domain :WineFoodSample ;
rdfs:range :WineFoodSample ;
rdfs:label "has next wine food sample" .
### http://ontologia.segittur.es/enoturismo/def/core#hasNextWineSample
:hasNextWineSample rdf:type owl:ObjectProperty ;
rdfs:domain :WineSample ;
rdfs:range :WineSample ;
rdfs:label "has next wine sample" .
### http://ontologia.segittur.es/enoturismo/def/core#hasStand
:hasStand rdf:type owl:ObjectProperty ;
rdfs:domain :WineFestivalActivity ;
rdfs:range :WineStall ;
rdfs:label "has stand" .
### http://ontologia.segittur.es/enoturismo/def/core#hasVineyard
:hasVineyard rdf:type owl:ObjectProperty ;
rdfs:domain <https://ontologia.segittur.es/turismo/def/core#Winery> ;
rdfs:range <https://ontologia.segittur.es/turismo/def/core#Vineyard> ;
rdfs:label "has vineyard" .
### http://ontologia.segittur.es/enoturismo/def/core#hasWineFoodSample
:hasWineFoodSample rdf:type owl:ObjectProperty ;
rdfs:domain :Tasting ;
rdfs:range :WineFoodSample ;
rdfs:label "has wine food sample" .
### http://ontologia.segittur.es/enoturismo/def/core#hasWineMuseum
:hasWineMuseum rdf:type owl:ObjectProperty ;
rdfs:domain <https://ontologia.segittur.es/turismo/def/core#Winery> ;
rdfs:range :WineMuseum ;
rdfs:label "has wine museum" .
### http://ontologia.segittur.es/enoturismo/def/core#hasWineSample
:hasWineSample rdf:type owl:ObjectProperty ;
rdfs:domain :WineTasting ;
rdfs:range :WineSample ;
rdfs:label "has wine sample" .
### http://ontologia.segittur.es/enoturismo/def/core#organizedBy
:organizedBy rdf:type owl:ObjectProperty ;
rdfs:domain :WineStall ;
rdfs:range <http://xmlns.com/foaf/0.1/Agent> ;
rdfs:label "organized by" .
### http://ontologia.segittur.es/enoturismo/def/core#originatedFrom
:originatedFrom rdf:type owl:ObjectProperty ;
rdfs:domain :DOP ;
rdfs:range :EnotourismDestination ;
rdfs:label "originated from" .
### http://ontologia.segittur.es/enoturismo/def/core#perfoms
:perfoms rdf:type owl:ObjectProperty ;
rdfs:domain <http://xmlns.com/foaf/0.1/Agent> ;
rdfs:range <https://ontologia.segittur.es/turismo/def/core#AgritourismExperience> ;
rdfs:label "perfoms" .
### http://ontologia.segittur.es/enoturismo/def/core#produces
:produces rdf:type owl:ObjectProperty ;
rdfs:domain <https://ontologia.segittur.es/turismo/def/core#Winery> ;
rdfs:range <http://purl.org/ceu/ebaco/core#Wine> ;
rdfs:label "produces" .
### http://ontologia.segittur.es/enoturismo/def/core#promotesWine
:promotesWine rdf:type owl:ObjectProperty ;
rdfs:domain :WineStall ;
rdfs:range <http://purl.org/ceu/ebaco/core#Wine> ;
rdfs:label "promotes wine" .
### http://ontologia.segittur.es/enoturismo/def/core#realizedBy
:realizedBy rdf:type owl:ObjectProperty ;
rdfs:domain :Role ;
rdfs:range <https://ontologia.segittur.es/turismo/def/core#AgritourismExperience> ;
rdfs:label "realized by" .
### http://ontologia.segittur.es/enoturismo/def/core#usesFood
:usesFood rdf:type owl:ObjectProperty ;
rdfs:domain :WineFoodSample ;
rdfs:range <http://purl.obolibrary.org/obo/foodon.owl#PreparedFoodProduct> ;
rdfs:label "uses food" .
### http://ontologia.segittur.es/enoturismo/def/core#usesWineForTesting
:usesWineForTesting rdf:type owl:ObjectProperty ;
rdfs:domain :WineFoodSample ;
rdfs:range <http://purl.org/ceu/ebaco/core#Wine> ;
rdfs:label "uses wine for testing" .
### http://ontologia.segittur.es/enoturismo/def/core#usesWineForWineTesting
:usesWineForWineTesting rdf:type owl:ObjectProperty ;
rdfs:domain :WineSample ;
rdfs:range <http://purl.org/ceu/ebaco/core#Wine> ;
rdfs:label "uses wine for wine testing" .
### http://ontologia.segittur.es/enoturismo/def/core#visitsMuseum
:visitsMuseum rdf:type owl:ObjectProperty ;
rdfs:domain :MuseumVisit ;
rdfs:range :WineMuseum ;
rdfs:label "visits museum" .
### http://ontologia.segittur.es/enoturismo/def/core#visitsVineyard
:visitsVineyard rdf:type owl:ObjectProperty ;
rdfs:domain :VineyardVisit ;
rdfs:range <https://ontologia.segittur.es/turismo/def/core#Vineyard> ;
rdfs:label "visits vineyard" .
### https://ontologia.segittur.es/turismo/def/core#hasAcknowledgement
<https://ontologia.segittur.es/turismo/def/core#hasAcknowledgement> rdf:type owl:ObjectProperty ;
rdfs:domain <http://purl.org/ceu/ebaco/core#Wine> ;
rdfs:range <https://ontologia.segittur.es/turismo/def/core#Acknowledgement> ;
rdfs:label "has acknowledgement" .
### https://ontologia.segittur.es/turismo/def/core#offeredBy
<https://ontologia.segittur.es/turismo/def/core#offeredBy> rdf:type owl:ObjectProperty ;
rdfs:domain <https://ontologia.segittur.es/turismo/def/core#Event> ;
rdfs:range <https://ontologia.segittur.es/turismo/def/core#EventOrganisationCompany> ;
rdfs:label "offered by" .
### https://ontologia.segittur.es/turismo/def/core#offers
<https://ontologia.segittur.es/turismo/def/core#offers> rdf:type owl:ObjectProperty ;
rdfs:domain <https://ontologia.segittur.es/turismo/def/core#AgritourismFacility> ;
rdfs:range <https://ontologia.segittur.es/turismo/def/core#AgritourismExperience> ;
rdfs:label "offers" .
#################################################################
# Data properties
#################################################################
### http://ontologia.segittur.es/enoturismo/def/core#description
:description rdf:type owl:DatatypeProperty ;
rdfs:domain :Role .
### http://ontologia.segittur.es/enoturismo/def/core#id
:id rdf:type owl:DatatypeProperty ;
rdfs:domain :WineStall ;
rdfs:range xsd:string .
### http://ontologia.segittur.es/enoturismo/def/core#name
:name rdf:type owl:DatatypeProperty ;
rdfs:domain [ rdf:type owl:Class ;
owl:unionOf ( :DOP
:Municipality
:Role
:WineRoute
:WineStall
)
] ;
rdfs:range xsd:string .
### http://ontologia.segittur.es/enoturismo/def/core#postalCode
:postalCode rdf:type owl:DatatypeProperty ;
rdfs:domain :Municipality ;
rdfs:range xsd:string .
### http://ontologia.segittur.es/enoturismo/def/core#productionRule
:productionRule rdf:type owl:DatatypeProperty ;
rdfs:domain :DOP ;
rdfs:range xsd:string ;
rdfs:comment "A summary of the specific rules for cultivation, breeding, processing, etc."@en ,
"Un resumen de las reglas específicas de cultivo, cría, elaboración, etc."@es .
### http://ontologia.segittur.es/enoturismo/def/core#region
:region rdf:type owl:DatatypeProperty ;
rdfs:domain [ rdf:type owl:Class ;
owl:unionOf ( :DOP
:WineRoute
)
] ;
rdfs:range xsd:string .
### http://ontologia.segittur.es/enoturismo/def/core#registerDate
:registerDate rdf:type owl:DatatypeProperty ;
rdfs:domain :DOP ;
rdfs:range xsd:date ;
rdfs:comment "Date of registration."@en ,
"Fecha en la que se registró."@es .
### http://ontologia.segittur.es/enoturismo/def/core#regulatoryCouncil
:regulatoryCouncil rdf:type owl:DatatypeProperty ;
rdfs:domain :DOP ;
rdfs:range xsd:string ;
rdfs:comment "Nombre del Consejo Regulador."@es ,
"Name of the Regulatory Council." .
#################################################################
# Classes
#################################################################
### http://ontologia.segittur.es/enoturismo/def/core#DOP
:DOP rdf:type owl:Class ;
rdfs:subClassOf <https://ontologia.segittur.es/turismo/def/core#Certification> ;
rdfs:comment "Officially recognized geographical area where wine production and processing are regulated to ensure origin and quality."@en ,
"Zona geográfica reconocida oficialmente donde la producción y elaboración del vino están reguladas para garantizar su origen y calidad."@es ;
rdfs:label "D O P" .
### http://ontologia.segittur.es/enoturismo/def/core#EnotourismDestination
:EnotourismDestination rdf:type owl:Class ;
rdfs:subClassOf <https://ontologia.segittur.es/turismo/def/core#TourismDestination> ;
rdfs:comment "Lugar o región que ofrece experiencias turísticas vinculadas a la cultura, producción y disfrute del vino."@es ,
"Place or region offering tourist experiences related to the culture, production, and enjoyment of wine."@en ;
rdfs:label "Enotourism Destination" .
### http://ontologia.segittur.es/enoturismo/def/core#Municipality
:Municipality rdf:type owl:Class ;
rdfs:comment "Geographical area encompassing a local community."@en ,
"Área geográfica que abarca una comunidad local."@es ;
rdfs:label "Municipality" .
### http://ontologia.segittur.es/enoturismo/def/core#MuseumVisit
:MuseumVisit rdf:type owl:Class ;
rdfs:subClassOf <https://ontologia.segittur.es/turismo/def/core#AgritourismExperience> ;
rdfs:comment "Experiencia turística que consiste en la visita a un museo relacionado con la cultura, historia o patrimonio del vino."@es ,
"Tourist experience involving a visit to a museum related to wine culture, history, or heritage."@en ;
rdfs:label "Museum Visit" .
### http://ontologia.segittur.es/enoturismo/def/core#Role
:Role rdf:type owl:Class ;
rdfs:label "Role" .
### http://ontologia.segittur.es/enoturismo/def/core#Tasting
:Tasting rdf:type owl:Class ;
rdfs:subClassOf <https://ontologia.segittur.es/turismo/def/core#AgritourismExperience> ;
rdfs:comment "Experiencia gastronómica que combina vino y comida para resaltar y equilibrar sus sabores y aromas."@es ,
"Gastronomic experience that pairs wine and food to highlight and balance their flavors and aromas."@en ;
rdfs:label "Tasting" .
### http://ontologia.segittur.es/enoturismo/def/core#VineyardVisit
:VineyardVisit rdf:type owl:Class ;
rdfs:subClassOf <https://ontologia.segittur.es/turismo/def/core#AgritourismExperience> ;
rdfs:comment "Actividad turística que consiste en recorrer viñedos para conocer el cultivo de la vid y el entorno de producción del vino."@es ,
"Tourist activity involving a tour of vineyards to learn about grape cultivation and the wine production environment."@en ;
rdfs:label "Vineyard Visit" .
### http://ontologia.segittur.es/enoturismo/def/core#WineFestival
:WineFestival rdf:type owl:Class ;
rdfs:subClassOf <https://ontologia.segittur.es/turismo/def/core#Event> ;
rdfs:comment "Evento público que celebra la cultura del vino mediante degustaciones, actividades culturales y encuentros sociales."@es ,
"Public event celebrating wine culture through tastings, cultural activities, and social gatherings."@en ;
rdfs:label "Wine Festival" .
### http://ontologia.segittur.es/enoturismo/def/core#WineFestivalActivity
:WineFestivalActivity rdf:type owl:Class ;
rdfs:comment "Acción o evento específico que forma parte de un festival del vino y que promueve la participación y el disfrute en torno al vino."@es ,
"Specific action or event within a wine festival that promotes participation and enjoyment centered around wine."@en ;
rdfs:label "Wine Festival Activity" .
### http://ontologia.segittur.es/enoturismo/def/core#WineFoodSample
:WineFoodSample rdf:type owl:Class ;
rdfs:comment "Pequeña ración de vino y alimento ofrecida conjuntamente para degustar y apreciar su combinación de sabores."@es ,
"Small serving of wine and food offered together to taste and appreciate their combination of flavors."@en ;
rdfs:label "Wine Food Sample" .
### http://ontologia.segittur.es/enoturismo/def/core#WineMuseum
:WineMuseum rdf:type owl:Class ;
rdfs:subClassOf <https://ontologia.segittur.es/turismo/def/core#AgritourismFacility> ,
<https://ontologia.segittur.es/turismo/def/core#Museum> ;
rdfs:comment "Espacio expositivo dedicado a la conservación y divulgación de la historia, cultura y patrimonio del vino."@es ,
"Exhibition space dedicated to preserving and promoting the history, culture, and heritage of wine."@en ;
rdfs:label "Wine Museum" .
### http://ontologia.segittur.es/enoturismo/def/core#WineRoute
:WineRoute rdf:type owl:Class ;
rdfs:comment "Conjunto de bodegas y servicios que forman parte de una zona vitivinícola."@es ,
"Group of wineries and services that are part of a wine-producing area."@en ;
rdfs:label "Wine Route" .
### http://ontologia.segittur.es/enoturismo/def/core#WineSample
:WineSample rdf:type owl:Class ;
rdfs:comment "Pequeña cantidad de vino ofrecida para degustar y evaluar sus características sensoriales."@es ,
"Small amount of wine offered for tasting and evaluating its sensory characteristics."@en ;
rdfs:label "Wine Sample" .
### http://ontologia.segittur.es/enoturismo/def/core#WineStall
:WineStall rdf:type owl:Class ;
rdfs:comment "Booth or stand where wines are offered for tasting or sale during events or festivals."@en ,
"Puesto o stand donde se ofrecen vinos para degustación o venta durante eventos o festivales."@es ;
rdfs:label "Wine Stall" .
### http://ontologia.segittur.es/enoturismo/def/core#WineTasting
:WineTasting rdf:type owl:Class ;
rdfs:subClassOf <https://ontologia.segittur.es/turismo/def/core#AgritourismExperience> ;
rdfs:comment "Actividad en la que los participantes degustan distintos vinos para analizar sus propiedades sensoriales y de calidad."@es ,
"Activity in which participants taste different wines to analyze their sensory properties and quality."@en ;
rdfs:label "Wine Tasting" .
### http://purl.obolibrary.org/obo/foodon.owl#PreparedFoodProduct
<http://purl.obolibrary.org/obo/foodon.owl#PreparedFoodProduct> rdf:type owl:Class ;
rdfs:label "Prepared Food Product" .
### http://purl.org/ceu/ebaco/core#Wine
<http://purl.org/ceu/ebaco/core#Wine> rdf:type owl:Class ;
rdfs:label "Wine" .
### http://xmlns.com/foaf/0.1/Agent
<http://xmlns.com/foaf/0.1/Agent> rdf:type owl:Class ;
rdfs:label "Agent" .
### https://ontologia.segittur.es/turismo/def/core#Acknowledgement
<https://ontologia.segittur.es/turismo/def/core#Acknowledgement> rdf:type owl:Class ;
rdfs:label "Acknowledgement" .
### https://ontologia.segittur.es/turismo/def/core#AgritourismExperience
<https://ontologia.segittur.es/turismo/def/core#AgritourismExperience> rdf:type owl:Class ;
rdfs:label "Agritourism Experience" .
### https://ontologia.segittur.es/turismo/def/core#AgritourismFacility
<https://ontologia.segittur.es/turismo/def/core#AgritourismFacility> rdf:type owl:Class ;
rdfs:label "Agritourism Facility" .
### https://ontologia.segittur.es/turismo/def/core#Certification
<https://ontologia.segittur.es/turismo/def/core#Certification> rdf:type owl:Class ;
rdfs:subClassOf <https://ontologia.segittur.es/turismo/def/core#Acknowledgement> ;
rdfs:label "Certification" .
### https://ontologia.segittur.es/turismo/def/core#Event
<https://ontologia.segittur.es/turismo/def/core#Event> rdf:type owl:Class ;
rdfs:label "Event" .
### https://ontologia.segittur.es/turismo/def/core#EventOrganisationCompany
<https://ontologia.segittur.es/turismo/def/core#EventOrganisationCompany> rdf:type owl:Class ;
rdfs:label "Event Organisation Company" .
### https://ontologia.segittur.es/turismo/def/core#Museum
<https://ontologia.segittur.es/turismo/def/core#Museum> rdf:type owl:Class ;
rdfs:label "Museum" .
### https://ontologia.segittur.es/turismo/def/core#Rating
<https://ontologia.segittur.es/turismo/def/core#Rating> rdf:type owl:Class ;
rdfs:subClassOf <https://ontologia.segittur.es/turismo/def/core#Acknowledgement> ;
rdfs:label "Rating" .
### https://ontologia.segittur.es/turismo/def/core#TourismDestination
<https://ontologia.segittur.es/turismo/def/core#TourismDestination> rdf:type owl:Class ;
rdfs:label "Tourism Destination" .
### https://ontologia.segittur.es/turismo/def/core#TourismOrganisation
<https://ontologia.segittur.es/turismo/def/core#TourismOrganisation> rdf:type owl:Class ;
rdfs:label "Tourism Organisation" .
### https://ontologia.segittur.es/turismo/def/core#Vineyard
<https://ontologia.segittur.es/turismo/def/core#Vineyard> rdf:type owl:Class ;
rdfs:subClassOf <https://ontologia.segittur.es/turismo/def/core#AgritourismFacility> ;
rdfs:comment "Land dedicated to the cultivation of grapevines for the production of wine grapes."@en ,
"Terreno dedicado al cultivo de vides destinado a la producción de uvas para la elaboración de vino."@es ;
rdfs:label "Vineyard" .
### https://ontologia.segittur.es/turismo/def/core#Winery
<https://ontologia.segittur.es/turismo/def/core#Winery> rdf:type owl:Class ;
rdfs:subClassOf <https://ontologia.segittur.es/turismo/def/core#EventOrganisationCompany> ,
<https://ontologia.segittur.es/turismo/def/core#TourismOrganisation> ;
rdfs:comment "Establecimiento donde se elaboran, almacenan y, a menudo, se ofrecen vinos para degustación o venta."@es ,
"Facility where wines are produced, stored, and often offered for tasting or sale."@en ;
rdfs:label "Winery" .
#################################################################
# General axioms
#################################################################
[ rdf:type owl:AllDisjointClasses ;
owl:members ( :MuseumVisit
:Tasting
:VineyardVisit
:WineTasting
)
] .
### Generated by the OWL API (version 5.1.18) https://github.com/owlcs/owlapi/