ClarkWangPas commited on
Commit
afa7452
·
verified ·
1 Parent(s): 151b7bc

CQ2Onto Dataset

Browse files
.gitattributes CHANGED
@@ -58,3 +58,6 @@ saved_model/**/* filter=lfs diff=lfs merge=lfs -text
58
  # Video files - compressed
59
  *.mp4 filter=lfs diff=lfs merge=lfs -text
60
  *.webm filter=lfs diff=lfs merge=lfs -text
 
 
 
 
58
  # Video files - compressed
59
  *.mp4 filter=lfs diff=lfs merge=lfs -text
60
  *.webm filter=lfs diff=lfs merge=lfs -text
61
+ awo/AWO_CQs_Annoatations.xlsx filter=lfs diff=lfs merge=lfs -text
62
+ swo/SWO_CQs_Annotations.xlsx filter=lfs diff=lfs merge=lfs -text
63
+ wine/Wine_CQs_Annotations.xlsx filter=lfs diff=lfs merge=lfs -text
README.md CHANGED
@@ -1,3 +1,124 @@
1
- ---
2
- license: apache-2.0
3
- ---
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ license: apache-2.0
3
+ language:
4
+ - en
5
+ pretty_name: CQ2Onto
6
+ size_categories:
7
+ - n<1K
8
+ task_categories:
9
+ - text-generation
10
+ tags:
11
+ - ontology-engineering
12
+ - ontology-generation
13
+ - term-extraction
14
+ - benchmark
15
+ configs:
16
+ - config_name: cq2onto
17
+ data_files:
18
+ - split: wine
19
+ path: wine/cq_to_onto_wine.json
20
+ - split: awo
21
+ path: awo/cq_to_onto_awo.json
22
+ - split: odrl
23
+ path: odrl/cq_to_onto_odrl.json
24
+ - split: water
25
+ path: water/cq_to_onto_water.json
26
+ - split: vgo
27
+ path: vgo/cq_to_onto_vgo.json
28
+ - split: swo
29
+ path: swo/cq_to_onto_swo.json
30
+ - config_name: cq2term
31
+ data_files:
32
+ - split: wine
33
+ path: wine/cq_to_terms_wine.json
34
+ - split: awo
35
+ path: awo/cq_to_terms_awo.json
36
+ - split: odrl
37
+ path: odrl/cq_to_terms_odrl.json
38
+ - split: water
39
+ path: water/cq_to_terms_water.json
40
+ - split: vgo
41
+ path: vgo/cq_to_terms_vgo.json
42
+ - split: swo
43
+ path: swo/cq_to_terms_swo.json
44
+ ---
45
+
46
+ # CQ2Onto Benchmark & Dataset
47
+
48
+ Benchmark for evaluating LLM-assisted ontology generation from competency questions, across six domains. For each domain the dataset provides a gold OWL ontology, two CQ files (one per evaluation task), and the annotation spreadsheet used during construction. Each Ontology contains a set of CQs for `CQ2Term`, a set of CQs for `CQ2Onto`, a owl source file that representing all CQs for `CQ2Onto`, and an excel contains all annotation process. More details can be found [here](https://github.com/oeg-upm/OntologyEngineeringBenchmark).
49
+
50
+ Two tasks:
51
+
52
+ - **CQ2Term**: given a CQ, extract all possible classes and properties.
53
+ - **CQ2Onto**: given a set of CQs, produce a full OWL ontology.
54
+
55
+
56
+
57
+ ## Dataset Construction
58
+
59
+ We have selected six ontologies in three diferent scales:
60
+
61
+
62
+ | Ontology | Tier | Source CQs | Retained | New ⋆ | CQ2Onto set | CQ2Term set |
63
+ |----------|------|-----------:|---------:|------:|------------:|------------:|
64
+ | Wine | small | 7 | 4 | 1 | 5 | 5 |
65
+ | AWO | small | 14 | 7 | 0 | 7 | 7 |
66
+ | ODRL | medium | 35 | 13 | 6 | 19 | 19 |
67
+ | Water | medium | 43 | 21 | 0 | 21 | 20 |
68
+ | VGO | large | 68 | 30 | 1 | 31 | 22 |
69
+ | SWO | large | 88 | 35 | 0 | 35 | 26 |
70
+
71
+ All sources of the selected ontologies:
72
+
73
+ - **wine**: [Wine Ontology](https://github.com/UCDavisLibrary/wine-ontology)
74
+ - **awo**: [African Wildlife Ontology](https://people.cs.uct.ac.za/~mkeet/OEbook/ontologies/AfricanWildlifeOntology1.owl)
75
+ - **odrl**: [ODRL Vocabulary Ontology](https://www.w3.org/ns/odrl/2/)
76
+ - **water**: [SAREF4WATR Ontology](https://saref.etsi.org/saref4watr/v1.1.1/)
77
+ - **vgo**: [Video Game Ontology](https://vocab.linkeddata.es/vgo/)
78
+ - **swo**: [Software Ontology](https://obofoundry.org/ontology/swo.html)
79
+
80
+
81
+ ## File formats
82
+
83
+ **`cq_to_onto_<domain>.json`** (CQ2Onto input): list of CQs. Gold standard is the ontology, corresponding to `.owl` file.
84
+
85
+ ```json
86
+ [
87
+ {"id": "CQ1", "value": "Which wine characteristics should I consider when choosing a wine?"}
88
+ ]
89
+ ```
90
+
91
+ **`cq_to_terms_<domain>.json`** (CQ2Term gold): list of CQs, with the gold standard class and property labels.
92
+
93
+ ```json
94
+ [
95
+ {
96
+ "id": "CQ1",
97
+ "question": "Which wine characteristics should I consider when choosing a wine?",
98
+ "classes": ["Wine", "WineDescriptor"],
99
+ "properties": ["hasWineDescriptor"]
100
+ }
101
+ ]
102
+ ```
103
+
104
+ **`sub_<domain>.owl`**: OWL source code in RDF/XML. CQ-driven restriction of the source ontology, retaining only what's required to satisfy the CQs.
105
+
106
+ **`<Domain>_CQs_Annotations.xlsx`**: annotation process with per-CQ class and property splits, plus axioms.
107
+
108
+ ## Loading
109
+
110
+ ```python
111
+ from huggingface_hub import hf_hub_download
112
+ import json, rdflib
113
+
114
+ # CQ2Term: Load Dataset
115
+ path = hf_hub_download("oeg/CQ2Onto", "wine/cq_to_terms_wine.json", repo_type="dataset")
116
+ cqs = json.load(open(path))
117
+
118
+ # CQ2Onto
119
+ path = hf_hub_download("oeg/CQ2Onto", "wine/sub_wine.owl", repo_type="dataset")
120
+ g = rdflib.Graph().parse(path)
121
+ ```
122
+ ## License
123
+
124
+ Apache 2.0.
awo/AWO_CQs_Annoatations.xlsx ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:1565f7365f991e26a2839ac06c090081124edcab5e602c9dbffdff236ac3a376
3
+ size 326399
awo/cq_to_onto_awo.json ADDED
@@ -0,0 +1 @@
 
 
1
+ [{"id": "CQ1", "value": "Which animal eats which other animal?"}, {"id": "CQ2", "value": "Is [this animal] a herbivore?"}, {"id": "CQ3", "value": "Which plant parts does [this omnivorous or herbivorourus animal] eat?"}, {"id": "CQ4", "value": "Does a lion eat plants or plant parts?"}, {"id": "CQ6", "value": "Which plants eat animals?"}, {"id": "CQ7", "value": "Which animals eat [these animals]?"}, {"id": "CQ14", "value": "Are there animals that are carnivore but still eat some plants or parts of plants?"}]
awo/cq_to_terms_awo.json ADDED
@@ -0,0 +1,79 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ [
2
+ {
3
+ "id": "CQ1",
4
+ "question": "Which animal eats which other animal?",
5
+ "classes": [
6
+ "animal"
7
+ ],
8
+ "properties": [
9
+ "eats"
10
+ ]
11
+ },
12
+ {
13
+ "id": "CQ2",
14
+ "question": "Is [this animal] a herbivore?",
15
+ "classes": [
16
+ "animal",
17
+ "herbivore"
18
+ ],
19
+ "properties": []
20
+ },
21
+ {
22
+ "id": "CQ3",
23
+ "question": "Which plant parts does [this omnivorous or herbivorourus animal] eat?",
24
+ "classes": [
25
+ "Omnivore",
26
+ "Plantparts",
27
+ "herbivore"
28
+ ],
29
+ "properties": [
30
+ "eats"
31
+ ]
32
+ },
33
+ {
34
+ "id": "CQ4",
35
+ "question": "Does a lion eat plants or plant parts?",
36
+ "classes": [
37
+ "Lion",
38
+ "Plantparts",
39
+ "plant"
40
+ ],
41
+ "properties": [
42
+ "eats"
43
+ ]
44
+ },
45
+ {
46
+ "id": "CQ6",
47
+ "question": "Which plants eat animals?",
48
+ "classes": [
49
+ "animal",
50
+ "plant"
51
+ ],
52
+ "properties": [
53
+ "eats"
54
+ ]
55
+ },
56
+ {
57
+ "id": "CQ7",
58
+ "question": "Which animals eat [these animals]?",
59
+ "classes": [
60
+ "animal"
61
+ ],
62
+ "properties": [
63
+ "eats"
64
+ ]
65
+ },
66
+ {
67
+ "id": "CQ14",
68
+ "question": "Are there animals that are carnivore but still eat some plants or parts of plants?",
69
+ "classes": [
70
+ "Plantparts",
71
+ "animal",
72
+ "carnivore",
73
+ "plant"
74
+ ],
75
+ "properties": [
76
+ "eats"
77
+ ]
78
+ }
79
+ ]
awo/sub_awo.owl ADDED
@@ -0,0 +1,268 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?xml version="1.0"?>
2
+ <rdf:RDF xmlns="http://www.meteck.org/teaching/ontologies/AfricanWildlifeOntology1.owl#"
3
+ xml:base="http://www.meteck.org/teaching/ontologies/AfricanWildlifeOntology1.owl"
4
+ xmlns:owl="http://www.w3.org/2002/07/owl#"
5
+ xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
6
+ xmlns:xml="http://www.w3.org/XML/1998/namespace"
7
+ xmlns:xsd="http://www.w3.org/2001/XMLSchema#"
8
+ xmlns:rdfs="http://www.w3.org/2000/01/rdf-schema#">
9
+ <owl:Ontology rdf:about="http://www.meteck.org/teaching/ontologies/AfricanWildlifeOntology1.owl">
10
+ <rdfs:comment>African Wildlide Ontology, Semantic Web Primer, 4.3.1 pages 119-133</rdfs:comment>
11
+ <rdfs:comment>AfricanWildlifeOntology0.owl was then modified by Maria Keet (classes and object properties added, more comments added, updated the uri etc) and renamed into AfricanWildlifeOntology1.owl.
12
+ This is still an ontology just for tutorial purposes, so take it with a grain of salt</rdfs:comment>
13
+ <rdfs:comment>MK downloaded this file from http://www.iro.umontreal.ca/~lapalme/ift6281/OWL/AfricanWildlifeOntology.xml, changed the extension to .owl and appended the name with Web. That ontology give a load error in protege due to the use of Collection in the definition of Herbivore, so the AfricanWildlifeOntology0.owl has that piece removed.</rdfs:comment>
14
+ </owl:Ontology>
15
+
16
+
17
+
18
+
19
+
20
+
21
+
22
+
23
+ <!--
24
+ ///////////////////////////////////////////////////////////////////////////////////////
25
+ //
26
+ // Object Properties
27
+ //
28
+ ///////////////////////////////////////////////////////////////////////////////////////
29
+ -->
30
+
31
+
32
+
33
+
34
+ <!-- http://www.meteck.org/teaching/ontologies/AfricanWildlifeOntology1.owl#eaten-by -->
35
+
36
+ <owl:ObjectProperty rdf:about="http://www.meteck.org/teaching/ontologies/AfricanWildlifeOntology1.owl#eaten-by">
37
+ <owl:inverseOf rdf:resource="http://www.meteck.org/teaching/ontologies/AfricanWildlifeOntology1.owl#eats"/>
38
+ </owl:ObjectProperty>
39
+
40
+
41
+
42
+ <!-- http://www.meteck.org/teaching/ontologies/AfricanWildlifeOntology1.owl#eats -->
43
+
44
+ <owl:ObjectProperty rdf:about="http://www.meteck.org/teaching/ontologies/AfricanWildlifeOntology1.owl#eats">
45
+ <rdfs:range>
46
+ <owl:Class>
47
+ <owl:unionOf rdf:parseType="Collection">
48
+ <rdf:Description rdf:about="http://www.meteck.org/teaching/ontologies/AfricanWildlifeOntology1.owl#animal"/>
49
+ <rdf:Description rdf:about="http://www.meteck.org/teaching/ontologies/AfricanWildlifeOntology1.owl#plant"/>
50
+ <owl:Restriction>
51
+ <owl:onProperty rdf:resource="http://www.meteck.org/teaching/ontologies/AfricanWildlifeOntology1.owl#is-part-of"/>
52
+ <owl:someValuesFrom rdf:resource="http://www.meteck.org/teaching/ontologies/AfricanWildlifeOntology1.owl#animal"/>
53
+ </owl:Restriction>
54
+ <owl:Restriction>
55
+ <owl:onProperty rdf:resource="http://www.meteck.org/teaching/ontologies/AfricanWildlifeOntology1.owl#is-part-of"/>
56
+ <owl:someValuesFrom rdf:resource="http://www.meteck.org/teaching/ontologies/AfricanWildlifeOntology1.owl#plant"/>
57
+ </owl:Restriction>
58
+ </owl:unionOf>
59
+ </owl:Class>
60
+ </rdfs:range>
61
+ </owl:ObjectProperty>
62
+
63
+
64
+
65
+ <!-- http://www.meteck.org/teaching/ontologies/AfricanWildlifeOntology1.owl#has-part -->
66
+
67
+ <owl:ObjectProperty rdf:about="http://www.meteck.org/teaching/ontologies/AfricanWildlifeOntology1.owl#has-part">
68
+ <owl:inverseOf rdf:resource="http://www.meteck.org/teaching/ontologies/AfricanWildlifeOntology1.owl#is-part-of"/>
69
+ <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#TransitiveProperty"/>
70
+ </owl:ObjectProperty>
71
+
72
+
73
+
74
+ <!-- http://www.meteck.org/teaching/ontologies/AfricanWildlifeOntology1.owl#is-part-of -->
75
+
76
+ <owl:ObjectProperty rdf:about="http://www.meteck.org/teaching/ontologies/AfricanWildlifeOntology1.owl#is-part-of">
77
+ <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#TransitiveProperty"/>
78
+ <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#ReflexiveProperty"/>
79
+ </owl:ObjectProperty>
80
+
81
+
82
+
83
+ <!-- http://www.meteck.org/teaching/ontologies/AfricanWildlifeOntology1.owl#is-proper-part-of -->
84
+
85
+ <owl:ObjectProperty rdf:about="http://www.meteck.org/teaching/ontologies/AfricanWildlifeOntology1.owl#is-proper-part-of">
86
+ <rdfs:subPropertyOf rdf:resource="http://www.meteck.org/teaching/ontologies/AfricanWildlifeOntology1.owl#is-part-of"/>
87
+ <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#IrreflexiveProperty"/>
88
+ </owl:ObjectProperty>
89
+
90
+
91
+
92
+ <!--
93
+ ///////////////////////////////////////////////////////////////////////////////////////
94
+ //
95
+ // Classes
96
+ //
97
+ ///////////////////////////////////////////////////////////////////////////////////////
98
+ -->
99
+
100
+
101
+
102
+
103
+ <!-- http://www.meteck.org/teaching/ontologies/AfricanWildlifeOntology1.owl#CarnivorousPlant -->
104
+
105
+ <owl:Class rdf:about="http://www.meteck.org/teaching/ontologies/AfricanWildlifeOntology1.owl#CarnivorousPlant">
106
+ <rdfs:subClassOf rdf:resource="http://www.meteck.org/teaching/ontologies/AfricanWildlifeOntology1.owl#plant"/>
107
+ <rdfs:subClassOf>
108
+ <owl:Restriction>
109
+ <owl:onProperty rdf:resource="http://www.meteck.org/teaching/ontologies/AfricanWildlifeOntology1.owl#eats"/>
110
+ <owl:someValuesFrom rdf:resource="http://www.meteck.org/teaching/ontologies/AfricanWildlifeOntology1.owl#animal"/>
111
+ </owl:Restriction>
112
+ </rdfs:subClassOf>
113
+ </owl:Class>
114
+
115
+
116
+
117
+ <!-- http://www.meteck.org/teaching/ontologies/AfricanWildlifeOntology1.owl#Omnivore -->
118
+
119
+ <owl:Class rdf:about="http://www.meteck.org/teaching/ontologies/AfricanWildlifeOntology1.owl#Omnivore">
120
+ <owl:equivalentClass>
121
+ <owl:Class>
122
+ <owl:intersectionOf rdf:parseType="Collection">
123
+ <owl:Restriction>
124
+ <owl:onProperty rdf:resource="http://www.meteck.org/teaching/ontologies/AfricanWildlifeOntology1.owl#eats"/>
125
+ <owl:someValuesFrom rdf:resource="http://www.meteck.org/teaching/ontologies/AfricanWildlifeOntology1.owl#animal"/>
126
+ </owl:Restriction>
127
+ <owl:Restriction>
128
+ <owl:onProperty rdf:resource="http://www.meteck.org/teaching/ontologies/AfricanWildlifeOntology1.owl#eats"/>
129
+ <owl:someValuesFrom rdf:resource="http://www.meteck.org/teaching/ontologies/AfricanWildlifeOntology1.owl#plant"/>
130
+ </owl:Restriction>
131
+ <owl:Restriction>
132
+ <owl:onProperty rdf:resource="http://www.meteck.org/teaching/ontologies/AfricanWildlifeOntology1.owl#eats"/>
133
+ <owl:someValuesFrom>
134
+ <owl:Class>
135
+ <owl:unionOf rdf:parseType="Collection">
136
+ <owl:Restriction>
137
+ <owl:onProperty rdf:resource="http://www.meteck.org/teaching/ontologies/AfricanWildlifeOntology1.owl#is-part-of"/>
138
+ <owl:someValuesFrom rdf:resource="http://www.meteck.org/teaching/ontologies/AfricanWildlifeOntology1.owl#animal"/>
139
+ </owl:Restriction>
140
+ <owl:Restriction>
141
+ <owl:onProperty rdf:resource="http://www.meteck.org/teaching/ontologies/AfricanWildlifeOntology1.owl#is-part-of"/>
142
+ <owl:someValuesFrom rdf:resource="http://www.meteck.org/teaching/ontologies/AfricanWildlifeOntology1.owl#plant"/>
143
+ </owl:Restriction>
144
+ </owl:unionOf>
145
+ </owl:Class>
146
+ </owl:someValuesFrom>
147
+ </owl:Restriction>
148
+ </owl:intersectionOf>
149
+ </owl:Class>
150
+ </owl:equivalentClass>
151
+ <rdfs:subClassOf rdf:resource="http://www.meteck.org/teaching/ontologies/AfricanWildlifeOntology1.owl#animal"/>
152
+ <owl:disjointWith rdf:resource="http://www.meteck.org/teaching/ontologies/AfricanWildlifeOntology1.owl#carnivore"/>
153
+ <owl:disjointWith rdf:resource="http://www.meteck.org/teaching/ontologies/AfricanWildlifeOntology1.owl#herbivore"/>
154
+ </owl:Class>
155
+
156
+
157
+
158
+ <!-- http://www.meteck.org/teaching/ontologies/AfricanWildlifeOntology1.owl#PlantParts -->
159
+
160
+ <owl:Class rdf:about="http://www.meteck.org/teaching/ontologies/AfricanWildlifeOntology1.owl#PlantParts">
161
+ <rdfs:subClassOf rdf:resource="http://www.w3.org/2002/07/owl#Thing"/>
162
+ <rdfs:subClassOf>
163
+ <owl:Restriction>
164
+ <owl:onProperty rdf:resource="http://www.meteck.org/teaching/ontologies/AfricanWildlifeOntology1.owl#is-proper-part-of"/>
165
+ <owl:someValuesFrom rdf:resource="http://www.meteck.org/teaching/ontologies/AfricanWildlifeOntology1.owl#plant"/>
166
+ </owl:Restriction>
167
+ </rdfs:subClassOf>
168
+ </owl:Class>
169
+
170
+
171
+
172
+ <!-- http://www.meteck.org/teaching/ontologies/AfricanWildlifeOntology1.owl#animal -->
173
+
174
+ <owl:Class rdf:about="http://www.meteck.org/teaching/ontologies/AfricanWildlifeOntology1.owl#animal">
175
+ <owl:disjointWith rdf:resource="http://www.meteck.org/teaching/ontologies/AfricanWildlifeOntology1.owl#plant"/>
176
+ </owl:Class>
177
+
178
+
179
+
180
+ <!-- http://www.meteck.org/teaching/ontologies/AfricanWildlifeOntology1.owl#carnivore -->
181
+
182
+ <owl:Class rdf:about="http://www.meteck.org/teaching/ontologies/AfricanWildlifeOntology1.owl#carnivore">
183
+ <owl:equivalentClass>
184
+ <owl:Class>
185
+ <owl:unionOf rdf:parseType="Collection">
186
+ <owl:Restriction>
187
+ <owl:onProperty rdf:resource="http://www.meteck.org/teaching/ontologies/AfricanWildlifeOntology1.owl#eats"/>
188
+ <owl:allValuesFrom rdf:resource="http://www.meteck.org/teaching/ontologies/AfricanWildlifeOntology1.owl#animal"/>
189
+ </owl:Restriction>
190
+ <owl:Restriction>
191
+ <owl:onProperty rdf:resource="http://www.meteck.org/teaching/ontologies/AfricanWildlifeOntology1.owl#eats"/>
192
+ <owl:allValuesFrom>
193
+ <owl:Restriction>
194
+ <owl:onProperty rdf:resource="http://www.meteck.org/teaching/ontologies/AfricanWildlifeOntology1.owl#is-part-of"/>
195
+ <owl:someValuesFrom rdf:resource="http://www.meteck.org/teaching/ontologies/AfricanWildlifeOntology1.owl#animal"/>
196
+ </owl:Restriction>
197
+ </owl:allValuesFrom>
198
+ </owl:Restriction>
199
+ </owl:unionOf>
200
+ </owl:Class>
201
+ </owl:equivalentClass>
202
+ <rdfs:subClassOf rdf:resource="http://www.meteck.org/teaching/ontologies/AfricanWildlifeOntology1.owl#animal"/>
203
+ <owl:disjointWith rdf:resource="http://www.meteck.org/teaching/ontologies/AfricanWildlifeOntology1.owl#herbivore"/>
204
+ <rdfs:comment>Carnivores are exactly those animals that eat only animals.</rdfs:comment>
205
+ </owl:Class>
206
+
207
+
208
+
209
+ <!-- http://www.meteck.org/teaching/ontologies/AfricanWildlifeOntology1.owl#herbivore -->
210
+
211
+ <owl:Class rdf:about="http://www.meteck.org/teaching/ontologies/AfricanWildlifeOntology1.owl#herbivore">
212
+ <owl:equivalentClass>
213
+ <owl:Class>
214
+ <owl:unionOf rdf:parseType="Collection">
215
+ <owl:Restriction>
216
+ <owl:onProperty rdf:resource="http://www.meteck.org/teaching/ontologies/AfricanWildlifeOntology1.owl#eats"/>
217
+ <owl:allValuesFrom rdf:resource="http://www.meteck.org/teaching/ontologies/AfricanWildlifeOntology1.owl#plant"/>
218
+ </owl:Restriction>
219
+ <owl:Restriction>
220
+ <owl:onProperty rdf:resource="http://www.meteck.org/teaching/ontologies/AfricanWildlifeOntology1.owl#eats"/>
221
+ <owl:allValuesFrom>
222
+ <owl:Restriction>
223
+ <owl:onProperty rdf:resource="http://www.meteck.org/teaching/ontologies/AfricanWildlifeOntology1.owl#is-part-of"/>
224
+ <owl:someValuesFrom rdf:resource="http://www.meteck.org/teaching/ontologies/AfricanWildlifeOntology1.owl#plant"/>
225
+ </owl:Restriction>
226
+ </owl:allValuesFrom>
227
+ </owl:Restriction>
228
+ </owl:unionOf>
229
+ </owl:Class>
230
+ </owl:equivalentClass>
231
+ <rdfs:subClassOf rdf:resource="http://www.meteck.org/teaching/ontologies/AfricanWildlifeOntology1.owl#animal"/>
232
+ <rdfs:comment>Herbivores are exactly those animals that eat only plants or parts of plants </rdfs:comment>
233
+ </owl:Class>
234
+
235
+
236
+
237
+ <!-- http://www.meteck.org/teaching/ontologies/AfricanWildlifeOntology1.owl#lion -->
238
+
239
+ <owl:Class rdf:about="http://www.meteck.org/teaching/ontologies/AfricanWildlifeOntology1.owl#lion">
240
+ <rdfs:subClassOf rdf:resource="http://www.meteck.org/teaching/ontologies/AfricanWildlifeOntology1.owl#animal"/>
241
+ <rdfs:subClassOf>
242
+ <owl:Restriction>
243
+ <owl:onProperty rdf:resource="http://www.meteck.org/teaching/ontologies/AfricanWildlifeOntology1.owl#eats"/>
244
+ <owl:allValuesFrom rdf:resource="http://www.meteck.org/teaching/ontologies/AfricanWildlifeOntology1.owl#herbivore"/>
245
+ </owl:Restriction>
246
+ </rdfs:subClassOf>
247
+ <rdfs:comment>Lions are animals that eat only herbivores.</rdfs:comment>
248
+ </owl:Class>
249
+
250
+
251
+
252
+ <!-- http://www.meteck.org/teaching/ontologies/AfricanWildlifeOntology1.owl#plant -->
253
+
254
+ <owl:Class rdf:about="http://www.meteck.org/teaching/ontologies/AfricanWildlifeOntology1.owl#plant">
255
+ <rdfs:comment>Plants are disjoint from animals.</rdfs:comment>
256
+ </owl:Class>
257
+
258
+
259
+
260
+ <!-- http://www.w3.org/2002/07/owl#Thing -->
261
+
262
+ <owl:Class rdf:about="http://www.w3.org/2002/07/owl#Thing"/>
263
+ </rdf:RDF>
264
+
265
+
266
+
267
+ <!-- Generated by the OWL API (version 4.5.13) https://github.com/owlcs/owlapi -->
268
+
odrl/ODRL_CQs_Annoatations.xlsx ADDED
Binary file (50 kB). View file
 
odrl/cq_to_onto_odrl.json ADDED
@@ -0,0 +1,74 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ [
2
+ {
3
+ "id": "CQ03",
4
+ "value": "Shall the permissions 'Aggregation' and 'Disaggregation' be of the type Transfer Rights?"
5
+ },
6
+ {
7
+ "id": "CQ06",
8
+ "value": "Expressing the various roles of contract parties within the Permission/Duty element."
9
+ },
10
+ {
11
+ "id": "CQ08",
12
+ "value": "How to provide a 'NOT' expression?"
13
+ },
14
+ {
15
+ "id": "CQ10",
16
+ "value": "How are rights and duties supported for all contract parties?"
17
+ },
18
+ {
19
+ "id": "CQ13",
20
+ "value": "Shall ODRLv2 allow for nested constraints?"
21
+ },
22
+ {
23
+ "id": "CQ14",
24
+ "value": "How do we express 'and', 'or', 'xor' constraints?"
25
+ },
26
+ {
27
+ "id": "CQ21",
28
+ "value": "How to express constraints on requirements?"
29
+ },
30
+ {
31
+ "id": "CQ24",
32
+ "value": "How to express exclusive permissions?"
33
+ },
34
+ {
35
+ "id": "CQ26",
36
+ "value": "How to express Condition via Constraints?"
37
+ },
38
+ {
39
+ "id": "CQ30",
40
+ "value": "What do we lose if containers are no longer part of ODRL?"
41
+ },
42
+ {
43
+ "id": "CQ31",
44
+ "value": "Do we need 'Sequencing' as part of the REL?"
45
+ },
46
+ {
47
+ "id": "CQ33",
48
+ "value": "Can the new data model express inheritance?"
49
+ },
50
+ {
51
+ "id": "New CQ1",
52
+ "value": "Which policy is directly linked to a given asset?"
53
+ },
54
+ {
55
+ "id": "New CQ2",
56
+ "value": "What conflict resolution strategy is specified by a policy?"
57
+ },
58
+ {
59
+ "id": "New CQ3",
60
+ "value": "What duty is specified as a remedy for the violation of a prohibition?"
61
+ },
62
+ {
63
+ "id": "New CQ4",
64
+ "value": "Which rule is activated upon the failure of another rule?"
65
+ },
66
+ {
67
+ "id": "New CQ5",
68
+ "value": "What duty is specified as a consequence of another duty?"
69
+ },
70
+ {
71
+ "id": "New CQ6",
72
+ "value": "What operator is used in the constraints of a prohibition?"
73
+ }
74
+ ]
odrl/cq_to_terms_odrl.json ADDED
@@ -0,0 +1,229 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ [
2
+ {
3
+ "id": "CQ03",
4
+ "question": "Shall the permissions 'Aggregation' and 'Disaggregation' be of the type Transfer Rights?",
5
+ "classes": [
6
+ "Action",
7
+ "Permission"
8
+ ],
9
+ "properties": [
10
+ "hasAction",
11
+ "hasPermission"
12
+ ]
13
+ },
14
+ {
15
+ "id": "CQ06",
16
+ "question": "Expressing the various roles of contract parties within the Permission/Duty element.",
17
+ "classes": [
18
+ "Duty",
19
+ "Party",
20
+ "Permission"
21
+ ],
22
+ "properties": [
23
+ "assignee",
24
+ "assigner",
25
+ "function"
26
+ ]
27
+ },
28
+ {
29
+ "id": "CQ10",
30
+ "question": "How are rights and duties supported for all contract parties?",
31
+ "classes": [
32
+ "Duty",
33
+ "Party"
34
+ ],
35
+ "properties": [
36
+ "hasduty"
37
+ ]
38
+ },
39
+ {
40
+ "id": "CQ13",
41
+ "question": "Shall ODRLv2 allow for nested constraints?",
42
+ "classes": [
43
+ "Constraint",
44
+ "LogicalConstraint"
45
+ ],
46
+ "properties": [
47
+ "hasConstraint"
48
+ ]
49
+ },
50
+ {
51
+ "id": "CQ26",
52
+ "question": "How to express Condition via Constraints?",
53
+ "classes": [
54
+ "Constraint",
55
+ "LogicalConstraint"
56
+ ],
57
+ "properties": [
58
+ "hasConstraint"
59
+ ]
60
+ },
61
+ {
62
+ "id": "CQ13",
63
+ "question": "Shall ODRLv2 allow for nested constraints?",
64
+ "classes": [
65
+ "Constraint",
66
+ "LogicalConstraint"
67
+ ],
68
+ "properties": [
69
+ "hasConstraint"
70
+ ]
71
+ },
72
+ {
73
+ "id": "CQ14",
74
+ "question": "How do we express 'and', 'or', 'xor' constraints?",
75
+ "classes": [
76
+ "Constraint",
77
+ "LogicalConstraint"
78
+ ],
79
+ "properties": [
80
+ "and",
81
+ "hasConstraint",
82
+ "onlyOne",
83
+ "operand",
84
+ "or"
85
+ ]
86
+ },
87
+ {
88
+ "id": "CQ21",
89
+ "question": "How to express constraints on requirements?",
90
+ "classes": [
91
+ "Constraint",
92
+ "Duty"
93
+ ],
94
+ "properties": [
95
+ "hasConstraint",
96
+ "hasOperator",
97
+ "obligation"
98
+ ]
99
+ },
100
+ {
101
+ "id": "CQ24",
102
+ "question": "How to express exclusive permissions?",
103
+ "classes": [
104
+ "Action",
105
+ "Constraint",
106
+ "Permission"
107
+ ],
108
+ "properties": [
109
+ "hasAction",
110
+ "hasConstraint",
111
+ "hasPermission"
112
+ ]
113
+ },
114
+ {
115
+ "id": "CQ26",
116
+ "question": "How to express Condition via Constraints?",
117
+ "classes": [
118
+ "Constraint",
119
+ "LogicalConstraint"
120
+ ],
121
+ "properties": [
122
+ "hasConstraint"
123
+ ]
124
+ },
125
+ {
126
+ "id": "CQ30",
127
+ "question": "What do we lose if containers are no longer part of ODRL?",
128
+ "classes": [
129
+ "Asset",
130
+ "AssetCollection"
131
+ ],
132
+ "properties": [
133
+ "partOf",
134
+ "relation",
135
+ "scope",
136
+ "target"
137
+ ]
138
+ },
139
+ {
140
+ "id": "CQ31",
141
+ "question": "Do we need 'Sequencing' as part of the REL?",
142
+ "classes": [
143
+ "Duty",
144
+ "Rule"
145
+ ],
146
+ "properties": [
147
+ "andSequence",
148
+ "consequence"
149
+ ]
150
+ },
151
+ {
152
+ "id": "CQ33",
153
+ "question": "Can the new data model express inheritance?",
154
+ "classes": [
155
+ "Policy"
156
+ ],
157
+ "properties": [
158
+ "InheritRelation",
159
+ "inheritsFrom"
160
+ ]
161
+ },
162
+ {
163
+ "id": "CQNew CQ1",
164
+ "question": "Which policy is directly linked to a given asset?",
165
+ "classes": [
166
+ "Asset",
167
+ "Policy"
168
+ ],
169
+ "properties": [
170
+ "targetPolicy"
171
+ ]
172
+ },
173
+ {
174
+ "id": "CQNew CQ2",
175
+ "question": "What conflict resolution strategy is specified by a policy?",
176
+ "classes": [
177
+ "Conflict Strategy Preference",
178
+ "Policy",
179
+ "Rule"
180
+ ],
181
+ "properties": [
182
+ "handlePolicyConflicts"
183
+ ]
184
+ },
185
+ {
186
+ "id": "CQNew CQ3",
187
+ "question": "What duty is specified as a remedy for the violation of a prohibition?",
188
+ "classes": [
189
+ "Prohibition",
190
+ "Rule"
191
+ ],
192
+ "properties": [
193
+ "remedy"
194
+ ]
195
+ },
196
+ {
197
+ "id": "CQNew CQ4",
198
+ "question": "Which rule is activated upon the failure of another rule?",
199
+ "classes": [
200
+ "Rule"
201
+ ],
202
+ "properties": [
203
+ "failure"
204
+ ]
205
+ },
206
+ {
207
+ "id": "CQNew CQ5",
208
+ "question": "What duty is specified as a consequence of another duty?",
209
+ "classes": [
210
+ "Duty"
211
+ ],
212
+ "properties": [
213
+ "consequence"
214
+ ]
215
+ },
216
+ {
217
+ "id": "CQNew CQ6",
218
+ "question": "What operator is used in the constraints of a prohibition?",
219
+ "classes": [
220
+ "Constraint",
221
+ "Operator",
222
+ "Prohibition"
223
+ ],
224
+ "properties": [
225
+ "hasOperator",
226
+ "hasProhibition"
227
+ ]
228
+ }
229
+ ]
odrl/sub_odrl.owl ADDED
@@ -0,0 +1,571 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?xml version="1.0"?>
2
+ <rdf:RDF xmlns="http://www.w3.org/ns/odrl/2/"
3
+ xml:base="http://www.w3.org/ns/odrl/2/"
4
+ xmlns:owl="http://www.w3.org/2002/07/owl#"
5
+ xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
6
+ xmlns:xml="http://www.w3.org/XML/1998/namespace"
7
+ xmlns:xsd="http://www.w3.org/2001/XMLSchema#"
8
+ xmlns:odrl="http://www.w3.org/ns/odrl/2/"
9
+ xmlns:rdfs="http://www.w3.org/2000/01/rdf-schema#"
10
+ xmlns:skos="http://www.w3.org/2004/02/skos/core#"
11
+ xmlns:terms="http://purl.org/dc/terms/">
12
+ <owl:Ontology rdf:about="http://www.w3.org/ns/odrl/2/">
13
+ <terms:contributor>W3C Permissions &amp; Obligations Expression Working Group</terms:contributor>
14
+ <terms:creator>Michael Steidl</terms:creator>
15
+ <terms:creator>Renato Iannella</terms:creator>
16
+ <terms:creator>Stuart Myles</terms:creator>
17
+ <terms:creator>Víctor Rodríguez-Doncel</terms:creator>
18
+ <terms:description xml:lang="en">The ODRL Vocabulary and Expression defines a set of concepts and terms (the vocabulary) and encoding mechanism (the expression) for permissions and obligations statements describing digital content usage based on the ODRL Information Model.</terms:description>
19
+ <terms:license rdf:resource="https://www.w3.org/Consortium/Legal/2002/ipr-notice-20021231#Copyright/"/>
20
+ <rdfs:comment xml:lang="en">This is the RDF ontology for ODRL Version 2.2.</rdfs:comment>
21
+ <rdfs:label xml:lang="en">ODRL Version 2.2</rdfs:label>
22
+ <owl:versionInfo>2.2</owl:versionInfo>
23
+ </owl:Ontology>
24
+
25
+
26
+
27
+
28
+
29
+
30
+
31
+
32
+
33
+ <!-- http://www.w3.org/ns/odrl/2/action -->
34
+
35
+ <owl:ObjectProperty rdf:about="http://www.w3.org/ns/odrl/2/action">
36
+ <rdfs:domain>
37
+ <owl:Class>
38
+ <owl:unionOf rdf:parseType="Collection">
39
+ <rdf:Description rdf:about="http://www.w3.org/ns/odrl/2/Policy"/>
40
+ <rdf:Description rdf:about="http://www.w3.org/ns/odrl/2/Rule"/>
41
+ </owl:unionOf>
42
+ </owl:Class>
43
+ </rdfs:domain>
44
+ <rdfs:range rdf:resource="http://www.w3.org/ns/odrl/2/Action"/>
45
+ </owl:ObjectProperty>
46
+
47
+
48
+
49
+ <!-- http://www.w3.org/ns/odrl/2/and -->
50
+
51
+ <owl:ObjectProperty rdf:about="http://www.w3.org/ns/odrl/2/and">
52
+ <rdfs:subPropertyOf rdf:resource="http://www.w3.org/ns/odrl/2/operand"/>
53
+ </owl:ObjectProperty>
54
+
55
+
56
+
57
+ <!-- http://www.w3.org/ns/odrl/2/andSequence -->
58
+
59
+ <owl:ObjectProperty rdf:about="http://www.w3.org/ns/odrl/2/andSequence">
60
+ <rdfs:subPropertyOf rdf:resource="http://www.w3.org/ns/odrl/2/operand"/>
61
+ </owl:ObjectProperty>
62
+
63
+
64
+
65
+ <!-- http://www.w3.org/ns/odrl/2/assignee -->
66
+
67
+ <owl:ObjectProperty rdf:about="http://www.w3.org/ns/odrl/2/assignee">
68
+ <rdfs:subPropertyOf rdf:resource="http://www.w3.org/ns/odrl/2/function"/>
69
+ <rdfs:domain>
70
+ <owl:Class>
71
+ <owl:unionOf rdf:parseType="Collection">
72
+ <rdf:Description rdf:about="http://www.w3.org/ns/odrl/2/Policy"/>
73
+ <rdf:Description rdf:about="http://www.w3.org/ns/odrl/2/Rule"/>
74
+ </owl:unionOf>
75
+ </owl:Class>
76
+ </rdfs:domain>
77
+ <rdfs:range rdf:resource="http://www.w3.org/ns/odrl/2/Party"/>
78
+ </owl:ObjectProperty>
79
+
80
+
81
+
82
+
83
+ <!-- http://www.w3.org/ns/odrl/2/assigner -->
84
+
85
+ <owl:ObjectProperty rdf:about="http://www.w3.org/ns/odrl/2/assigner">
86
+ <rdfs:subPropertyOf rdf:resource="http://www.w3.org/ns/odrl/2/function"/>
87
+ <rdfs:domain>
88
+ <owl:Class>
89
+ <owl:unionOf rdf:parseType="Collection">
90
+ <rdf:Description rdf:about="http://www.w3.org/ns/odrl/2/Policy"/>
91
+ <rdf:Description rdf:about="http://www.w3.org/ns/odrl/2/Rule"/>
92
+ </owl:unionOf>
93
+ </owl:Class>
94
+ </rdfs:domain>
95
+ <rdfs:range rdf:resource="http://www.w3.org/ns/odrl/2/Party"/>
96
+ </owl:ObjectProperty>
97
+
98
+
99
+
100
+
101
+
102
+
103
+
104
+
105
+
106
+
107
+
108
+
109
+
110
+
111
+
112
+ <!-- http://www.w3.org/ns/odrl/2/conflict -->
113
+
114
+ <owl:ObjectProperty rdf:about="http://www.w3.org/ns/odrl/2/conflict">
115
+ <rdfs:domain rdf:resource="http://www.w3.org/ns/odrl/2/Policy"/>
116
+ <rdfs:range rdf:resource="http://www.w3.org/ns/odrl/2/ConflictTerm"/>
117
+ </owl:ObjectProperty>
118
+
119
+
120
+
121
+
122
+
123
+
124
+ <!-- http://www.w3.org/ns/odrl/2/consequence -->
125
+
126
+ <owl:ObjectProperty rdf:about="http://www.w3.org/ns/odrl/2/consequence">
127
+ <rdfs:subPropertyOf rdf:resource="http://www.w3.org/ns/odrl/2/failure"/>
128
+ <rdfs:domain rdf:resource="http://www.w3.org/ns/odrl/2/Duty"/>
129
+ <rdfs:range rdf:resource="http://www.w3.org/ns/odrl/2/Duty"/>
130
+ </owl:ObjectProperty>
131
+
132
+
133
+
134
+ <!-- http://www.w3.org/ns/odrl/2/constraint -->
135
+
136
+ <owl:ObjectProperty rdf:about="http://www.w3.org/ns/odrl/2/constraint">
137
+ <rdfs:domain>
138
+ <owl:Class>
139
+ <owl:unionOf rdf:parseType="Collection">
140
+ <rdf:Description rdf:about="http://www.w3.org/ns/odrl/2/Policy"/>
141
+ <rdf:Description rdf:about="http://www.w3.org/ns/odrl/2/Rule"/>
142
+ </owl:unionOf>
143
+ </owl:Class>
144
+ </rdfs:domain>
145
+ <rdfs:range>
146
+ <owl:Class>
147
+ <owl:unionOf rdf:parseType="Collection">
148
+ <rdf:Description rdf:about="http://www.w3.org/ns/odrl/2/Constraint"/>
149
+ <rdf:Description rdf:about="http://www.w3.org/ns/odrl/2/LogicalConstraint"/>
150
+ </owl:unionOf>
151
+ </owl:Class>
152
+ </rdfs:range>
153
+ </owl:ObjectProperty>
154
+
155
+
156
+
157
+
158
+
159
+
160
+
161
+
162
+
163
+ <!-- http://www.w3.org/ns/odrl/2/duty -->
164
+
165
+ <owl:ObjectProperty rdf:about="http://www.w3.org/ns/odrl/2/duty">
166
+ <rdfs:domain rdf:resource="http://www.w3.org/ns/odrl/2/Permission"/>
167
+ <rdfs:range rdf:resource="http://www.w3.org/ns/odrl/2/Duty"/>
168
+ </owl:ObjectProperty>
169
+
170
+
171
+
172
+ <!-- http://www.w3.org/ns/odrl/2/failure -->
173
+
174
+ <owl:ObjectProperty rdf:about="http://www.w3.org/ns/odrl/2/failure">
175
+ <rdfs:domain rdf:resource="http://www.w3.org/ns/odrl/2/Rule"/>
176
+ <rdfs:range rdf:resource="http://www.w3.org/ns/odrl/2/Rule"/>
177
+ </owl:ObjectProperty>
178
+
179
+
180
+
181
+ <!-- http://www.w3.org/ns/odrl/2/function -->
182
+
183
+ <owl:ObjectProperty rdf:about="http://www.w3.org/ns/odrl/2/function">
184
+ <rdfs:domain>
185
+ <owl:Class>
186
+ <owl:unionOf rdf:parseType="Collection">
187
+ <rdf:Description rdf:about="http://www.w3.org/ns/odrl/2/Policy"/>
188
+ <rdf:Description rdf:about="http://www.w3.org/ns/odrl/2/Rule"/>
189
+ </owl:unionOf>
190
+ </owl:Class>
191
+ </rdfs:domain>
192
+ <rdfs:range rdf:resource="http://www.w3.org/ns/odrl/2/Party"/>
193
+ </owl:ObjectProperty>
194
+
195
+
196
+
197
+ <!-- http://www.w3.org/ns/odrl/2/hasPolicy -->
198
+
199
+ <owl:ObjectProperty rdf:about="http://www.w3.org/ns/odrl/2/hasPolicy">
200
+ <rdfs:domain rdf:resource="http://www.w3.org/ns/odrl/2/Asset"/>
201
+ <rdfs:range rdf:resource="http://www.w3.org/ns/odrl/2/Policy"/>
202
+ </owl:ObjectProperty>
203
+
204
+
205
+
206
+ <!-- http://www.w3.org/ns/odrl/2/implies -->
207
+
208
+ <owl:ObjectProperty rdf:about="http://www.w3.org/ns/odrl/2/implies">
209
+ <rdfs:domain rdf:resource="http://www.w3.org/ns/odrl/2/Action"/>
210
+ <rdfs:range rdf:resource="http://www.w3.org/ns/odrl/2/Action"/>
211
+ </owl:ObjectProperty>
212
+
213
+
214
+
215
+
216
+
217
+
218
+
219
+
220
+
221
+
222
+
223
+
224
+ <!-- http://www.w3.org/ns/odrl/2/inheritFrom -->
225
+
226
+ <owl:ObjectProperty rdf:about="http://www.w3.org/ns/odrl/2/inheritFrom">
227
+ <rdfs:domain rdf:resource="http://www.w3.org/ns/odrl/2/Policy"/>
228
+ <rdfs:range rdf:resource="http://www.w3.org/ns/odrl/2/Policy"/>
229
+ </owl:ObjectProperty>
230
+
231
+
232
+
233
+ <!-- http://www.w3.org/ns/odrl/2/inheritRelation -->
234
+
235
+ <owl:ObjectProperty rdf:about="http://www.w3.org/ns/odrl/2/inheritRelation"/>
236
+
237
+
238
+
239
+ <!-- http://www.w3.org/ns/odrl/2/leftOperand -->
240
+
241
+ <owl:ObjectProperty rdf:about="http://www.w3.org/ns/odrl/2/leftOperand">
242
+ <rdfs:domain rdf:resource="http://www.w3.org/ns/odrl/2/Constraint"/>
243
+ <rdfs:range rdf:resource="http://www.w3.org/ns/odrl/2/LeftOperand"/>
244
+ </owl:ObjectProperty>
245
+
246
+
247
+
248
+ <!-- http://www.w3.org/ns/odrl/2/obligation -->
249
+
250
+ <owl:ObjectProperty rdf:about="http://www.w3.org/ns/odrl/2/obligation">
251
+ <rdfs:domain rdf:resource="http://www.w3.org/ns/odrl/2/Policy"/>
252
+ <rdfs:range rdf:resource="http://www.w3.org/ns/odrl/2/Duty"/>
253
+ </owl:ObjectProperty>
254
+
255
+
256
+
257
+ <!-- http://www.w3.org/ns/odrl/2/operand -->
258
+
259
+ <owl:ObjectProperty rdf:about="http://www.w3.org/ns/odrl/2/operand">
260
+ <rdfs:domain rdf:resource="http://www.w3.org/ns/odrl/2/LogicalConstraint"/>
261
+ </owl:ObjectProperty>
262
+
263
+
264
+
265
+ <!-- http://www.w3.org/ns/odrl/2/operator -->
266
+
267
+ <owl:ObjectProperty rdf:about="http://www.w3.org/ns/odrl/2/operator">
268
+ <rdfs:domain rdf:resource="http://www.w3.org/ns/odrl/2/Constraint"/>
269
+ <rdfs:range rdf:resource="http://www.w3.org/ns/odrl/2/Operator"/>
270
+ </owl:ObjectProperty>
271
+
272
+
273
+
274
+ <!-- http://www.w3.org/ns/odrl/2/or -->
275
+
276
+ <owl:ObjectProperty rdf:about="http://www.w3.org/ns/odrl/2/or">
277
+ <rdfs:subPropertyOf rdf:resource="http://www.w3.org/ns/odrl/2/operand"/>
278
+ </owl:ObjectProperty>
279
+
280
+
281
+
282
+
283
+
284
+
285
+ <!-- http://www.w3.org/ns/odrl/2/partOf -->
286
+
287
+ <owl:ObjectProperty rdf:about="http://www.w3.org/ns/odrl/2/partOf">
288
+ <rdfs:domain>
289
+ <owl:Class>
290
+ <owl:unionOf rdf:parseType="Collection">
291
+ <rdf:Description rdf:about="http://www.w3.org/ns/odrl/2/Asset"/>
292
+ <rdf:Description rdf:about="http://www.w3.org/ns/odrl/2/Party"/>
293
+ </owl:unionOf>
294
+ </owl:Class>
295
+ </rdfs:domain>
296
+ <rdfs:range>
297
+ <owl:Class>
298
+ <owl:unionOf rdf:parseType="Collection">
299
+ <rdf:Description rdf:about="http://www.w3.org/ns/odrl/2/AssetCollection"/>
300
+ </owl:unionOf>
301
+ </owl:Class>
302
+ </rdfs:range>
303
+ </owl:ObjectProperty>
304
+
305
+
306
+
307
+ <!-- http://www.w3.org/ns/odrl/2/AssetCollection -->
308
+
309
+ <owl:Class rdf:about="http://www.w3.org/ns/odrl/2/AssetCollection">
310
+ <rdfs:subClassOf rdf:resource="http://www.w3.org/ns/odrl/2/Asset"/>
311
+ </owl:Class>
312
+
313
+
314
+
315
+ <!-- http://www.w3.org/ns/odrl/2/permission -->
316
+
317
+ <owl:ObjectProperty rdf:about="http://www.w3.org/ns/odrl/2/permission">
318
+ <rdfs:domain rdf:resource="http://www.w3.org/ns/odrl/2/Policy"/>
319
+ <rdfs:range rdf:resource="http://www.w3.org/ns/odrl/2/Permission"/>
320
+ </owl:ObjectProperty>
321
+
322
+
323
+
324
+ <!-- http://www.w3.org/ns/odrl/2/prohibition -->
325
+
326
+ <owl:ObjectProperty rdf:about="http://www.w3.org/ns/odrl/2/prohibition">
327
+ <rdfs:domain rdf:resource="http://www.w3.org/ns/odrl/2/Policy"/>
328
+ <rdfs:range rdf:resource="http://www.w3.org/ns/odrl/2/Prohibition"/>
329
+ </owl:ObjectProperty>
330
+
331
+
332
+
333
+ <!-- http://www.w3.org/ns/odrl/2/relation -->
334
+
335
+ <owl:ObjectProperty rdf:about="http://www.w3.org/ns/odrl/2/relation">
336
+ <rdfs:domain>
337
+ <owl:Class>
338
+ <owl:unionOf rdf:parseType="Collection">
339
+ <rdf:Description rdf:about="http://www.w3.org/ns/odrl/2/Policy"/>
340
+ <rdf:Description rdf:about="http://www.w3.org/ns/odrl/2/Rule"/>
341
+ </owl:unionOf>
342
+ </owl:Class>
343
+ </rdfs:domain>
344
+ <rdfs:range rdf:resource="http://www.w3.org/ns/odrl/2/Asset"/>
345
+ </owl:ObjectProperty>
346
+
347
+
348
+
349
+ <!-- http://www.w3.org/ns/odrl/2/remedy -->
350
+
351
+ <owl:ObjectProperty rdf:about="http://www.w3.org/ns/odrl/2/remedy">
352
+ <rdfs:subPropertyOf rdf:resource="http://www.w3.org/ns/odrl/2/failure"/>
353
+ <rdfs:domain rdf:resource="http://www.w3.org/ns/odrl/2/Prohibition"/>
354
+ <rdfs:range rdf:resource="http://www.w3.org/ns/odrl/2/Duty"/>
355
+ </owl:ObjectProperty>
356
+
357
+
358
+
359
+ <!-- http://www.w3.org/ns/odrl/2/scope -->
360
+
361
+ <owl:ObjectProperty rdf:about="http://www.w3.org/ns/odrl/2/scope"/>
362
+
363
+
364
+
365
+ <!-- http://www.w3.org/ns/odrl/2/xone -->
366
+
367
+ <owl:ObjectProperty rdf:about="http://www.w3.org/ns/odrl/2/xone">
368
+ <rdfs:subPropertyOf rdf:resource="http://www.w3.org/ns/odrl/2/operand"/>
369
+ </owl:ObjectProperty>
370
+
371
+
372
+ <rdf:Description rdf:about="http://www.w3.org/ns/odrl/2/xone">
373
+ <rdfs:isDefinedBy rdf:resource="http://www.w3.org/ns/odrl/2/"/>
374
+ <skos:definition xml:lang="en">The relation is satisfied when only one, and not more, of the Constaints is satisfied</skos:definition>
375
+ <skos:note xml:lang="en">This property MUST only be used for Logical Constraints, and the list of operand values MUST be Constraint instances.</skos:note>
376
+ <rdfs:label xml:lang="en">Only One</rdfs:label>
377
+ </rdf:Description>
378
+
379
+
380
+ <!-- http://www.w3.org/ns/odrl/2/target -->
381
+
382
+ <owl:ObjectProperty rdf:about="http://www.w3.org/ns/odrl/2/target">
383
+ <rdfs:subPropertyOf rdf:resource="http://www.w3.org/ns/odrl/2/relation"/>
384
+ <rdfs:domain>
385
+ <owl:Class>
386
+ <owl:unionOf rdf:parseType="Collection">
387
+ <rdf:Description rdf:about="http://www.w3.org/ns/odrl/2/Policy"/>
388
+ <rdf:Description rdf:about="http://www.w3.org/ns/odrl/2/Rule"/>
389
+ </owl:unionOf>
390
+ </owl:Class>
391
+ </rdfs:domain>
392
+ <rdfs:range rdf:resource="http://www.w3.org/ns/odrl/2/Asset"/>
393
+ </owl:ObjectProperty>
394
+
395
+
396
+
397
+
398
+
399
+
400
+
401
+
402
+
403
+
404
+
405
+
406
+
407
+
408
+ <!--
409
+ ///////////////////////////////////////////////////////////////////////////////////////
410
+ //
411
+ // Data properties
412
+ //
413
+ ///////////////////////////////////////////////////////////////////////////////////////
414
+ -->
415
+
416
+
417
+ <!--
418
+ ///////////////////////////////////////////////////////////////////////////////////////
419
+ //
420
+ // Classes
421
+ //
422
+ ///////////////////////////////////////////////////////////////////////////////////////
423
+ -->
424
+
425
+
426
+
427
+
428
+
429
+
430
+ <!-- http://www.w3.org/ns/odrl/2/Action -->
431
+
432
+ <owl:Class rdf:about="http://www.w3.org/ns/odrl/2/Action">
433
+ </owl:Class>
434
+
435
+
436
+
437
+
438
+
439
+
440
+
441
+
442
+
443
+
444
+ <!-- http://www.w3.org/ns/odrl/2/Asset -->
445
+
446
+ <owl:Class rdf:about="http://www.w3.org/ns/odrl/2/Asset"/>
447
+
448
+
449
+
450
+
451
+
452
+
453
+ <!-- http://www.w3.org/ns/odrl/2/AssetScope -->
454
+
455
+ <owl:Class rdf:about="http://www.w3.org/ns/odrl/2/AssetScope"/>
456
+
457
+
458
+
459
+ <!-- http://www.w3.org/ns/odrl/2/ConflictTerm -->
460
+
461
+ <owl:Class rdf:about="http://www.w3.org/ns/odrl/2/ConflictTerm"/>
462
+
463
+
464
+
465
+ <!-- http://www.w3.org/ns/odrl/2/Constraint -->
466
+
467
+ <owl:Class rdf:about="http://www.w3.org/ns/odrl/2/Constraint"/>
468
+
469
+
470
+
471
+ <!-- http://www.w3.org/ns/odrl/2/Duty -->
472
+
473
+ <owl:Class rdf:about="http://www.w3.org/ns/odrl/2/Duty">
474
+ <rdfs:subClassOf rdf:resource="http://www.w3.org/ns/odrl/2/Rule"/>
475
+ <owl:disjointWith rdf:resource="http://www.w3.org/ns/odrl/2/Permission"/>
476
+ <owl:disjointWith rdf:resource="http://www.w3.org/ns/odrl/2/Prohibition"/>
477
+ </owl:Class>
478
+
479
+
480
+
481
+ <!-- http://www.w3.org/ns/odrl/2/LeftOperand -->
482
+
483
+ <owl:Class rdf:about="http://www.w3.org/ns/odrl/2/LeftOperand"/>
484
+
485
+
486
+
487
+ <!-- http://www.w3.org/ns/odrl/2/LogicalConstraint -->
488
+
489
+ <owl:Class rdf:about="http://www.w3.org/ns/odrl/2/LogicalConstraint"/>
490
+
491
+
492
+
493
+
494
+
495
+ <!-- http://www.w3.org/ns/odrl/2/Operator -->
496
+
497
+ <owl:Class rdf:about="http://www.w3.org/ns/odrl/2/Operator"/>
498
+
499
+
500
+
501
+
502
+
503
+ <!-- http://www.w3.org/ns/odrl/2/Permission -->
504
+
505
+ <owl:Class rdf:about="http://www.w3.org/ns/odrl/2/Permission">
506
+ <rdfs:subClassOf rdf:resource="http://www.w3.org/ns/odrl/2/Rule"/>
507
+ <owl:disjointWith rdf:resource="http://www.w3.org/ns/odrl/2/Prohibition"/>
508
+ </owl:Class>
509
+
510
+
511
+
512
+ <!-- http://www.w3.org/ns/odrl/2/Policy -->
513
+
514
+ <owl:Class rdf:about="http://www.w3.org/ns/odrl/2/Policy"/>
515
+
516
+
517
+
518
+
519
+ <!-- http://www.w3.org/ns/odrl/2/Prohibition -->
520
+
521
+ <owl:Class rdf:about="http://www.w3.org/ns/odrl/2/Prohibition">
522
+ <rdfs:subClassOf rdf:resource="http://www.w3.org/ns/odrl/2/Rule"/>
523
+ </owl:Class>
524
+
525
+
526
+
527
+
528
+
529
+ <!-- http://www.w3.org/ns/odrl/2/Rule -->
530
+
531
+ <owl:Class rdf:about="http://www.w3.org/ns/odrl/2/Rule"/>
532
+
533
+
534
+
535
+
536
+
537
+
538
+
539
+
540
+
541
+
542
+
543
+
544
+
545
+
546
+
547
+
548
+
549
+
550
+
551
+
552
+ <!-- http://www.w3.org/ns/odrl/2/Party -->
553
+
554
+ <owl:Class rdf:about="http://www.w3.org/ns/odrl/2/Party">
555
+ </owl:Class>
556
+
557
+
558
+
559
+
560
+
561
+
562
+
563
+
564
+
565
+
566
+ </rdf:RDF>
567
+
568
+
569
+
570
+ <!-- Generated by the OWL API (version 4.5.13) https://github.com/owlcs/owlapi -->
571
+
swo/SWO_CQs_Annotations.xlsx ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:9044497e93ce10e14d969cfa121c5a18b84c8b06dfb8ccc5ca72680a8c03bfe4
3
+ size 209787
swo/cq_to_onto_swo.json ADDED
@@ -0,0 +1,142 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ [
2
+ {
3
+ "id": "CQ04",
4
+ "value": "Which of the named and published algorithms does this tool use?"
5
+ },
6
+ {
7
+ "id": "CQ05",
8
+ "value": "Are there any modifications to the algorithm the tool uses?"
9
+ },
10
+ {
11
+ "id": "CQ06",
12
+ "value": "Does this software provide XML editing?"
13
+ },
14
+ {
15
+ "id": "CQ07",
16
+ "value": "What type of software (API, Desktop application etc) is it?"
17
+ },
18
+ {
19
+ "id": "CQ08",
20
+ "value": "What software can perform task x?"
21
+ },
22
+ {
23
+ "id": "CQ11",
24
+ "value": "Is this software available as a web service?"
25
+ },
26
+ {
27
+ "id": "CQ14",
28
+ "value": "Does it do what I want or need it to do e.g. render a gif?"
29
+ },
30
+ {
31
+ "id": "CQ15",
32
+ "value": "Which software tool created this data?"
33
+ },
34
+ {
35
+ "id": "CQ16",
36
+ "value": "What software can I use my data with to support my task?"
37
+ },
38
+ {
39
+ "id": "CQ17",
40
+ "value": "What are the input and output formats for this software?"
41
+ },
42
+ {
43
+ "id": "CQ19",
44
+ "value": "What software can read a .cel file?"
45
+ },
46
+ {
47
+ "id": "CQ21",
48
+ "value": "What is the valid input for this software?"
49
+ },
50
+ {
51
+ "id": "CQ22",
52
+ "value": "Can this software export from its proprietary data format to an open format such as csv, txt?"
53
+ },
54
+ {
55
+ "id": "CQ23",
56
+ "value": "Can software A work with data that are output from software B?"
57
+ },
58
+ {
59
+ "id": "CQ26",
60
+ "value": "What open source, maintained software can I use to process these in this format?"
61
+ },
62
+ {
63
+ "id": "CQ29",
64
+ "value": "Given input x, what are the data exports for this version?"
65
+ },
66
+ {
67
+ "id": "CQ30",
68
+ "value": "Where can I get the software?"
69
+ },
70
+ {
71
+ "id": "CQ32",
72
+ "value": "How do I get help?"
73
+ },
74
+ {
75
+ "id": "CQ36",
76
+ "value": "Who developed it?"
77
+ },
78
+ {
79
+ "id": "CQ37",
80
+ "value": "What is the homepage of the software?"
81
+ },
82
+ {
83
+ "id": "CQ38",
84
+ "value": "Can we collaborate with developers of software x?"
85
+ },
86
+ {
87
+ "id": "CQ40",
88
+ "value": "Which URL can I get it from?"
89
+ },
90
+ {
91
+ "id": "CQ45",
92
+ "value": "How long has this software been around?"
93
+ },
94
+ {
95
+ "id": "CQ46",
96
+ "value": "How actively developed is it?"
97
+ },
98
+ {
99
+ "id": "CQ54",
100
+ "value": "What is the version of this software?"
101
+ },
102
+ {
103
+ "id": "CQ55",
104
+ "value": "What new features are in this version?"
105
+ },
106
+ {
107
+ "id": "CQ57",
108
+ "value": "When was the 1.0 version released?"
109
+ },
110
+ {
111
+ "id": "CQ58",
112
+ "value": "Is the software open source development? Is there a community development?"
113
+ },
114
+ {
115
+ "id": "CQ59",
116
+ "value": "What license and what is permissiveness?"
117
+ },
118
+ {
119
+ "id": "CQ60",
120
+ "value": "Is it open source or not?"
121
+ },
122
+ {
123
+ "id": "CQ65",
124
+ "value": "Is it FOSS?"
125
+ },
126
+ {
127
+ "id": "CQ68",
128
+ "value": "Is it free or not?"
129
+ },
130
+ {
131
+ "id": "CQ73",
132
+ "value": "Where is the documentation?"
133
+ },
134
+ {
135
+ "id": "CQ84",
136
+ "value": "In what language was it implemented?"
137
+ },
138
+ {
139
+ "id": "CQ85",
140
+ "value": "What platform does the software run on?"
141
+ }
142
+ ]
swo/cq_to_terms_swo.json ADDED
@@ -0,0 +1,302 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ [
2
+ {
3
+ "id": "CQ04",
4
+ "question": "Which of the named and published algorithms does this tool use?",
5
+ "classes": [
6
+ "Algorithm"
7
+ ],
8
+ "properties": [
9
+ "implements"
10
+ ]
11
+ },
12
+ {
13
+ "id": "CQ05",
14
+ "question": "Are there any modifications to the algorithm the tool uses?",
15
+ "classes": [
16
+ "Algorithm"
17
+ ],
18
+ "properties": [
19
+ "implements"
20
+ ]
21
+ },
22
+ {
23
+ "id": "CQ06",
24
+ "question": "Does this software provide XML editing?",
25
+ "classes": [
26
+ "XML",
27
+ "software",
28
+ "text editing"
29
+ ],
30
+ "properties": [
31
+ "uses software"
32
+ ]
33
+ },
34
+ {
35
+ "id": "CQ07",
36
+ "question": "What type of software (API, Desktop application etc) is it?",
37
+ "classes": [
38
+ "application programming interface",
39
+ "desktop graphical user interface",
40
+ "software"
41
+ ],
42
+ "properties": [
43
+ "has interface"
44
+ ]
45
+ },
46
+ {
47
+ "id": "CQ11",
48
+ "question": "Is this software available as a web service?",
49
+ "classes": [
50
+ "software",
51
+ "web service"
52
+ ],
53
+ "properties": [
54
+ "has interface"
55
+ ]
56
+ },
57
+ {
58
+ "id": "CQ15",
59
+ "question": "Which software tool created this data?",
60
+ "classes": [
61
+ "data item",
62
+ "software"
63
+ ],
64
+ "properties": [
65
+ "has specified data output"
66
+ ]
67
+ },
68
+ {
69
+ "id": "CQ16",
70
+ "question": "What software can I use my data with to support my task?",
71
+ "classes": [
72
+ "Task",
73
+ "data item",
74
+ "software"
75
+ ],
76
+ "properties": [
77
+ "has specified data input",
78
+ "is software for"
79
+ ]
80
+ },
81
+ {
82
+ "id": "CQ17",
83
+ "question": "What are the input and output formats for this software?",
84
+ "classes": [
85
+ "Format",
86
+ "software"
87
+ ],
88
+ "properties": [
89
+ "has format specification",
90
+ "has specified data input",
91
+ "has specified data output"
92
+ ]
93
+ },
94
+ {
95
+ "id": "CQ19",
96
+ "question": "What software can read a .cel file?",
97
+ "classes": [
98
+ "CEL ASCII format",
99
+ "CEL binary format",
100
+ "software"
101
+ ],
102
+ "properties": [
103
+ "has specified data input"
104
+ ]
105
+ },
106
+ {
107
+ "id": "CQ21",
108
+ "question": "What is the valid input for this software?",
109
+ "classes": [
110
+ "software"
111
+ ],
112
+ "properties": [
113
+ "has input"
114
+ ]
115
+ },
116
+ {
117
+ "id": "CQ22",
118
+ "question": "Can this software export from its proprietary data format to an open format such as csv, txt?",
119
+ "classes": [
120
+ ".csv",
121
+ "data item",
122
+ "software"
123
+ ],
124
+ "properties": [
125
+ "has output",
126
+ "has specified data output"
127
+ ]
128
+ },
129
+ {
130
+ "id": "CQ23",
131
+ "question": "Can software A work with data that are output from software B?",
132
+ "classes": [
133
+ "data item",
134
+ "software"
135
+ ],
136
+ "properties": [
137
+ "has output",
138
+ "has specified data input",
139
+ "has specified data output",
140
+ "uses software"
141
+ ]
142
+ },
143
+ {
144
+ "id": "CQ26",
145
+ "question": "What open source, maintained software can I use to process these in this format?",
146
+ "classes": [
147
+ "Format",
148
+ "Open source software license",
149
+ "software"
150
+ ],
151
+ "properties": [
152
+ "has license",
153
+ "has specified data input"
154
+ ]
155
+ },
156
+ {
157
+ "id": "CQ29",
158
+ "question": "Given input x, what are the data exports for this version?",
159
+ "classes": [
160
+ "Data",
161
+ "Format",
162
+ "Version",
163
+ "software"
164
+ ],
165
+ "properties": [
166
+ "has input",
167
+ "has output",
168
+ "has specified data input",
169
+ "has specified data output",
170
+ "has version"
171
+ ]
172
+ },
173
+ {
174
+ "id": "CQ30",
175
+ "question": "Where can I get the software?",
176
+ "classes": [
177
+ "software"
178
+ ],
179
+ "properties": [
180
+ "has download location",
181
+ "has website homepage"
182
+ ]
183
+ },
184
+ {
185
+ "id": "CQ36",
186
+ "question": "Who developed it?",
187
+ "classes": [
188
+ "software",
189
+ "software developer role"
190
+ ],
191
+ "properties": [
192
+ "is developed by"
193
+ ]
194
+ },
195
+ {
196
+ "id": "CQ37",
197
+ "question": "What is the homepage of the software?",
198
+ "classes": [
199
+ "software"
200
+ ],
201
+ "properties": [
202
+ "has website homepage"
203
+ ]
204
+ },
205
+ {
206
+ "id": "CQ38",
207
+ "question": "Can we collaborate with developers of software x?",
208
+ "classes": [
209
+ "software"
210
+ ],
211
+ "properties": [
212
+ "is developed by"
213
+ ]
214
+ },
215
+ {
216
+ "id": "CQ40",
217
+ "question": "Which URL can I get it from?",
218
+ "classes": [
219
+ "software"
220
+ ],
221
+ "properties": [
222
+ "has support URL"
223
+ ]
224
+ },
225
+ {
226
+ "id": "CQ54",
227
+ "question": "What is the version of this software?",
228
+ "classes": [
229
+ "Version",
230
+ "software"
231
+ ],
232
+ "properties": [
233
+ "has version"
234
+ ]
235
+ },
236
+ {
237
+ "id": "CQ57",
238
+ "question": "When was the 1.0 version released?",
239
+ "classes": [
240
+ "Version",
241
+ "software"
242
+ ],
243
+ "properties": [
244
+ "has release date",
245
+ "has version"
246
+ ]
247
+ },
248
+ {
249
+ "id": "CQ60",
250
+ "question": "Is it open source or not?",
251
+ "classes": [
252
+ "Open source software license",
253
+ "software"
254
+ ],
255
+ "properties": [
256
+ "has license"
257
+ ]
258
+ },
259
+ {
260
+ "id": "CQ65",
261
+ "question": "Is it FOSS?",
262
+ "classes": [
263
+ "open source software license",
264
+ "software"
265
+ ],
266
+ "properties": [
267
+ "has license"
268
+ ]
269
+ },
270
+ {
271
+ "id": "CQ68",
272
+ "question": "Is it free or not?",
273
+ "classes": [
274
+ "Free",
275
+ "Not Free",
276
+ "software"
277
+ ],
278
+ "properties": []
279
+ },
280
+ {
281
+ "id": "CQ73",
282
+ "question": "Where is the documentation?",
283
+ "classes": [
284
+ "software"
285
+ ],
286
+ "properties": [
287
+ "has documentation",
288
+ "has website homepage"
289
+ ]
290
+ },
291
+ {
292
+ "id": "CQ85",
293
+ "question": "What platform does the software run on?",
294
+ "classes": [
295
+ "platform",
296
+ "software"
297
+ ],
298
+ "properties": [
299
+ "uses platform"
300
+ ]
301
+ }
302
+ ]
swo/sub_swo.owl ADDED
@@ -0,0 +1,771 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?xml version="1.0"?>
2
+ <rdf:RDF xmlns="http://www.ebi.ac.uk/swo/swo.owl#"
3
+ xml:base="http://www.ebi.ac.uk/swo/swo.owl"
4
+ xmlns:dc="http://purl.org/dc/elements/1.1/"
5
+ xmlns:efo="http://www.ebi.ac.uk/efo/"
6
+ xmlns:obo="http://purl.obolibrary.org/obo/"
7
+ xmlns:owl="http://www.w3.org/2002/07/owl#"
8
+ xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
9
+ xmlns:xml="http://www.w3.org/XML/1998/namespace"
10
+ xmlns:xsd="http://www.w3.org/2001/XMLSchema#"
11
+ xmlns:rdfs="http://www.w3.org/2000/01/rdf-schema#"
12
+ xmlns:skos="http://www.w3.org/2004/02/skos/core#"
13
+ xmlns:terms="http://purl.org/dc/terms/"
14
+ xmlns:oboInOwl="http://www.geneontology.org/formats/oboInOwl#">
15
+ <owl:Ontology rdf:about="http://www.ebi.ac.uk/swo/swo.owl">
16
+ <owl:versionIRI rdf:resource="http://www.ebi.ac.uk/swo/swo/releases/2023-03-05/swo.owl"/>
17
+ <terms:creator>Allyson Lister</terms:creator>
18
+ <terms:creator>Andy Brown</terms:creator>
19
+ <terms:creator>Duncan Hull</terms:creator>
20
+ <terms:creator>Helen Parkinson</terms:creator>
21
+ <terms:creator>James Malone</terms:creator>
22
+ <terms:creator>Jon Ison</terms:creator>
23
+ <terms:creator>Nandini Badarinarayan</terms:creator>
24
+ <terms:creator>Robert Stevens</terms:creator>
25
+ <terms:description>The Software Ontology (SWO) is a resource for describing software tools, their types, tasks, versions, provenance and associated data. It contains detailed information on licensing and formats as well as software applications themselves, mainly (but not limited) to the bioinformatics community.</terms:description>
26
+ <terms:license>https://creativecommons.org/licenses/by/4.0/</terms:license>
27
+ <terms:title>Software Ontology</terms:title>
28
+ <rdfs:comment>The Software Ontology (SWO) is a resource for describing software tools, their types, tasks, versions, licensing, provenance and associated data. It contains SWO-specific classes and axioms as well as imports from:
29
+
30
+
31
+ 1. BFO`
32
+ 2. IAO
33
+ 3. OBI
34
+ 4. EDAM</rdfs:comment>
35
+ <owl:versionInfo>2023-03-05</owl:versionInfo>
36
+ </owl:Ontology>
37
+
38
+
39
+
40
+
41
+
42
+
43
+
44
+
45
+
46
+
47
+
48
+
49
+ <!--
50
+ ///////////////////////////////////////////////////////////////////////////////////////
51
+ //
52
+ // Object Properties
53
+ //
54
+ ///////////////////////////////////////////////////////////////////////////////////////
55
+ -->
56
+
57
+
58
+
59
+
60
+ <!-- http://purl.obolibrary.org/obo/RO_0000085 -->
61
+
62
+ <owl:ObjectProperty rdf:about="http://purl.obolibrary.org/obo/RO_0000085">
63
+ <rdfs:range rdf:resource="http://purl.obolibrary.org/obo/BFO_0000034"/>
64
+ <obo:IAO_0000112 xml:lang="en">this enzyme has function this catalysis function (more colloquially: this enzyme has this catalysis function)</obo:IAO_0000112>
65
+ <obo:IAO_0000115 xml:lang="en">a relation between an independent continuant (the bearer) and a function, in which the function specifically depends on the bearer for its existence</obo:IAO_0000115>
66
+ <obo:IAO_0000116 xml:lang="en">A bearer can have many functions, and its functions can exist for different periods of time, but none of its functions can exist when the bearer does not exist. A function need not be realized at all the times that the function exists.</obo:IAO_0000116>
67
+ <obo:IAO_0000118 xml:lang="en">has_function</obo:IAO_0000118>
68
+ <rdfs:label xml:lang="en">has function</rdfs:label>
69
+ </owl:ObjectProperty>
70
+
71
+
72
+
73
+ <!-- http://purl.obolibrary.org/obo/RO_0002233 -->
74
+
75
+ <owl:ObjectProperty rdf:about="http://purl.obolibrary.org/obo/RO_0002233">
76
+ <obo:IAO_0000114 rdf:resource="http://purl.obolibrary.org/obo/IAO_0000125"/>
77
+ <obo:IAO_0000115>p has input c iff: p is a process, c is a material entity, c is a participant in p, c is present at the start of p, and the state of c is modified during p.</obo:IAO_0000115>
78
+ <obo:IAO_0000117 rdf:resource="https://orcid.org/0000-0002-6601-2165"/>
79
+ <obo:IAO_0000118>consumes</obo:IAO_0000118>
80
+ <oboInOwl:inSubset rdf:resource="http://purl.obolibrary.org/obo/valid_for_go_annotation_extension"/>
81
+ <oboInOwl:inSubset rdf:resource="http://purl.obolibrary.org/obo/valid_for_go_ontology"/>
82
+ <oboInOwl:inSubset rdf:resource="http://purl.obolibrary.org/obo/valid_for_gocam"/>
83
+ <oboInOwl:inSubset rdf:resource="http://purl.obolibrary.org/obo/ro/subsets#ro-eco"/>
84
+ <rdfs:label xml:lang="en">has input</rdfs:label>
85
+ </owl:ObjectProperty>
86
+
87
+
88
+
89
+ <!-- http://purl.obolibrary.org/obo/RO_0002234 -->
90
+
91
+ <owl:ObjectProperty rdf:about="http://purl.obolibrary.org/obo/RO_0002234">
92
+ <obo:IAO_0000114 rdf:resource="http://purl.obolibrary.org/obo/IAO_0000125"/>
93
+ <obo:IAO_0000115>p has output c iff c is a participant in p, c is present at the end of p, and c is not present in the same state at the beginning of p.</obo:IAO_0000115>
94
+ <obo:IAO_0000117 rdf:resource="https://orcid.org/0000-0002-6601-2165"/>
95
+ <obo:IAO_0000118>produces</obo:IAO_0000118>
96
+ <oboInOwl:inSubset rdf:resource="http://purl.obolibrary.org/obo/valid_for_go_annotation_extension"/>
97
+ <oboInOwl:inSubset rdf:resource="http://purl.obolibrary.org/obo/valid_for_go_ontology"/>
98
+ <oboInOwl:inSubset rdf:resource="http://purl.obolibrary.org/obo/valid_for_gocam"/>
99
+ <oboInOwl:inSubset rdf:resource="http://purl.obolibrary.org/obo/ro/subsets#ro-eco"/>
100
+ <rdfs:label xml:lang="en">has output</rdfs:label>
101
+ </owl:ObjectProperty>
102
+
103
+
104
+
105
+ <!-- http://www.ebi.ac.uk/swo/SWO_0000086 -->
106
+
107
+ <owl:ObjectProperty rdf:about="http://www.ebi.ac.uk/swo/SWO_0000086">
108
+ <rdfs:range rdf:resource="http://purl.obolibrary.org/obo/IAO_0000027"/>
109
+ <obo:IAO_0000115>The relationship between input data which is permitted to a piece of software.</obo:IAO_0000115>
110
+ <terms:creator>James Malone</terms:creator>
111
+ <rdfs:comment>AL 2.9.22: This cannot be a child of &apos;has specified input&apos; because the restrictions on domain and range for that hierarchy would create issues for us, as both software and data item (our domain and range, respectively) are continuants. For now, the solution is to take it out of that hierarchy completely.</rdfs:comment>
112
+ <rdfs:comment>See also http://softwareontology.wordpress.com/2011/04/15/ins-and-outs-of-software/</rdfs:comment>
113
+ <rdfs:label>has specified data input</rdfs:label>
114
+ </owl:ObjectProperty>
115
+
116
+
117
+
118
+ <!-- http://www.ebi.ac.uk/swo/SWO_0000087 -->
119
+
120
+ <owl:ObjectProperty rdf:about="http://www.ebi.ac.uk/swo/SWO_0000087">
121
+ <rdfs:range rdf:resource="http://purl.obolibrary.org/obo/IAO_0000027"/>
122
+ <obo:IAO_0000115 xml:lang="en">The relationship between a piece of software and the data that it is possible to output.</obo:IAO_0000115>
123
+ <terms:creator>James Malone</terms:creator>
124
+ <rdfs:comment>AL 2.9.22: This cannot be a child of &apos;has specified output&apos; because the restrictions on domain and range for that hierarchy would create issues for us, as both software and data item (our domain and range, respectively) are continuants. For now, the solution is to take it out of that hierarchy completely.</rdfs:comment>
125
+ <rdfs:comment>See also http://softwareontology.wordpress.com/2011/04/15/ins-and-outs-of-software/</rdfs:comment>
126
+ <rdfs:label xml:lang="en">has specified data output</rdfs:label>
127
+ </owl:ObjectProperty>
128
+
129
+
130
+ <!-- http://www.ebi.ac.uk/swo/SWO_0000082 -->
131
+
132
+ <owl:ObjectProperty rdf:about="http://www.ebi.ac.uk/swo/SWO_0000082">
133
+ <owl:inverseOf rdf:resource="http://www.ebi.ac.uk/swo/SWO_0000157"/>
134
+ <rdfs:domain rdf:resource="http://www.ebi.ac.uk/swo/SWO_0000001"/>
135
+ <rdfs:range rdf:resource="http://www.ebi.ac.uk/swo/SWO_0000001"/>
136
+ <obo:IAO_0000112>Cytoscape plugins would be linked to the Cytoscape application via uses software, while Microsoft Excel is linked to Microsoft Office via has_part.</obo:IAO_0000112>
137
+ <obo:IAO_0000115>This property allows the linkage of two different pieces of software such that one directly executes or uses the other. The has_part relationship should instead be used to describe related but independent members of a larger software package, and &apos;uses platform&apos; relationship should be used to describe which operating system(s) a particular piece of software can use.</obo:IAO_0000115>
138
+ <obo:IAO_0000119>Allyson Lister</obo:IAO_0000119>
139
+ <rdfs:label xml:lang="en">uses software</rdfs:label>
140
+ </owl:ObjectProperty>
141
+
142
+
143
+
144
+ <!-- http://www.ebi.ac.uk/swo/SWO_0000150 -->
145
+
146
+ <owl:ObjectProperty rdf:about="http://www.ebi.ac.uk/swo/SWO_0000150">
147
+ <obo:IAO_0000115>&apos;uses platform&apos; should be used to link a particular piece of software to one or more operating systems which that software can run on. This is in contrast to both &apos;uses software&apos; (which describes one piece of software directly executing another), and has_part, which can be used to describe related but independent software in a package, for example.</obo:IAO_0000115>
148
+ <terms:creator>Allyson Lister</terms:creator>
149
+ <rdfs:comment>This property, together with &apos;uses software&apos;, is probably best modelled as a child of has_part. Its current position in the property hierarchy is based on simplicity of use. &apos;uses platform&apos; was deemed an appropriate addition (rather than making use of already extant has_part or &apos;uses software&apos;) due to the already present definitions of those classes which restrict their use to particular situations.</rdfs:comment>
150
+ <rdfs:label xml:lang="en">uses platform</rdfs:label>
151
+ </owl:ObjectProperty>
152
+
153
+
154
+
155
+ <!-- http://www.ebi.ac.uk/swo/SWO_0000157 -->
156
+
157
+ <owl:ObjectProperty rdf:about="http://www.ebi.ac.uk/swo/SWO_0000157">
158
+ <rdfs:label xml:lang="en">is software for</rdfs:label>
159
+ </owl:ObjectProperty>
160
+
161
+
162
+
163
+ <!-- http://www.ebi.ac.uk/swo/SWO_0000394 -->
164
+
165
+ <owl:ObjectProperty rdf:about="http://www.ebi.ac.uk/swo/SWO_0000394">
166
+ <obo:IAO_0000115>The relationship between a software and software developer.</obo:IAO_0000115>
167
+ <rdfs:label>is developed by</rdfs:label>
168
+ </owl:ObjectProperty>
169
+
170
+
171
+
172
+ <!-- http://www.ebi.ac.uk/swo/SWO_0000740 -->
173
+
174
+ <owl:ObjectProperty rdf:about="http://www.ebi.ac.uk/swo/SWO_0000740">
175
+ <rdfs:range rdf:resource="http://purl.obolibrary.org/obo/IAO_0000064"/>
176
+ <obo:IAO_0000115>implements is the relationship between software and an algorithm that is defined for use within that software when executed.</obo:IAO_0000115>
177
+ <terms:creator>James Malone</terms:creator>
178
+ <rdfs:label>implements</rdfs:label>
179
+ </owl:ObjectProperty>
180
+
181
+
182
+
183
+ <!-- http://www.ebi.ac.uk/swo/SWO_0000741 -->
184
+
185
+ <owl:ObjectProperty rdf:about="http://www.ebi.ac.uk/swo/SWO_0000741">
186
+ <obo:IAO_0000112>Linking a type of software to its particular programming language.</obo:IAO_0000112>
187
+ <obo:IAO_0000115>Is encoded in is an &quot;is about&quot; relationship which describes the type of encoding used for the referenced class.</obo:IAO_0000115>
188
+ <obo:IAO_0000119>Allyson Lister</obo:IAO_0000119>
189
+ <rdfs:label>is encoded in</rdfs:label>
190
+ </owl:ObjectProperty>
191
+
192
+
193
+
194
+ <!-- http://www.ebi.ac.uk/swo/SWO_0004000 -->
195
+
196
+ <owl:ObjectProperty rdf:about="http://www.ebi.ac.uk/swo/SWO_0004000">
197
+ <rdfs:range rdf:resource="http://purl.obolibrary.org/obo/IAO_0000129"/>
198
+ <obo:IAO_0000115>relationship between an entity and a version name or number</obo:IAO_0000115>
199
+ <rdfs:comment>For further information, please see http://softwareontology.wordpress.com/2012/06/20/versioning-in-swo/</rdfs:comment>
200
+ <rdfs:label>has version</rdfs:label>
201
+ </owl:ObjectProperty>
202
+
203
+
204
+
205
+ <!-- http://www.ebi.ac.uk/swo/SWO_0004001 -->
206
+
207
+ <owl:ObjectProperty rdf:about="http://www.ebi.ac.uk/swo/SWO_0004001">
208
+ <rdfs:range rdf:resource="http://www.ebi.ac.uk/swo/SWO_9000050"/>
209
+ <obo:IAO_0000115>Provides a method of asserting what type of interactions are possible for the class in question. The interface must be from the &apos;software interface&apos; hierarchy.</obo:IAO_0000115>
210
+ <obo:IAO_0000119>Allyson Lister</obo:IAO_0000119>
211
+ <obo:IAO_0000119>Andy Brown</obo:IAO_0000119>
212
+ <terms:creator>Andy Brown</terms:creator>
213
+ <rdfs:label>has interface</rdfs:label>
214
+ </owl:ObjectProperty>
215
+
216
+
217
+
218
+ <!-- http://www.ebi.ac.uk/swo/SWO_0004002 -->
219
+
220
+ <owl:ObjectProperty rdf:about="http://www.ebi.ac.uk/swo/SWO_0004002">
221
+ <rdfs:subPropertyOf rdf:resource="http://www.ebi.ac.uk/swo/SWO_0000741"/>
222
+ <rdfs:domain rdf:resource="http://purl.obolibrary.org/obo/IAO_0000027"/>
223
+ <rdfs:range rdf:resource="http://purl.obolibrary.org/obo/IAO_0000098"/>
224
+ <obo:IAO_0000115>Has format specification is a type of &quot;is encoded in&quot; relationship which specifically describes the relationship between data and a data format specification.</obo:IAO_0000115>
225
+ <obo:IAO_0000119>Allyson Lister</obo:IAO_0000119>
226
+ <rdfs:label>has format specification</rdfs:label>
227
+ </owl:ObjectProperty>
228
+
229
+
230
+
231
+ <!-- http://www.ebi.ac.uk/swo/SWO_9001002 -->
232
+
233
+ <owl:ObjectProperty rdf:about="http://www.ebi.ac.uk/swo/SWO_9001002">
234
+ <obo:IAO_0000115>Axioms using the &apos;has clause&apos; property, e.g. C &apos;has clause&apos; C1, provide links from the left hand class to the instances within the &apos;license clause&apos; hierarchy. This provides a way to more precisely assert the constraints of the licensing applied.</obo:IAO_0000115>
235
+ <obo:IAO_0000119>Allyson Lister</obo:IAO_0000119>
236
+ <rdfs:label>has clause</rdfs:label>
237
+ </owl:ObjectProperty>
238
+
239
+
240
+
241
+ <!-- http://www.ebi.ac.uk/swo/has_license -->
242
+
243
+ <owl:ObjectProperty rdf:about="http://www.ebi.ac.uk/swo/has_license">
244
+ <obo:IAO_0000115>The relationship between an entity and the set of legal restrictions, i.e. license, which are applied in using or otherwise interacting with that entity. Eg. relationship between software and a software license.</obo:IAO_0000115>
245
+ <rdfs:label>has license</rdfs:label>
246
+ </owl:ObjectProperty>
247
+
248
+
249
+
250
+ <!-- http://www.ebi.ac.uk/swo/data/SWO_3000054 -->
251
+
252
+ <owl:ObjectProperty rdf:about="http://www.ebi.ac.uk/swo/data/SWO_3000054">
253
+ <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#SymmetricProperty"/>
254
+ <rdfs:domain rdf:resource="http://purl.obolibrary.org/obo/IAO_0000098"/>
255
+ <rdfs:range rdf:resource="http://purl.obolibrary.org/obo/IAO_0000098"/>
256
+ <obo:IAO_0000112>The format for BioPAX Manchester OWL syntax is an alternative format of the BioPAX RDF/XML format.</obo:IAO_0000112>
257
+ <obo:IAO_0000115>With both a domain and range of &apos;data format specification&apos;, this property provides a means of stating that two different data format specifications are valid specifications for the same type of data.</obo:IAO_0000115>
258
+ <obo:IAO_0000119>Allyson Lister</obo:IAO_0000119>
259
+ <rdfs:label xml:lang="en">is alternative format of</rdfs:label>
260
+ </owl:ObjectProperty>
261
+
262
+
263
+
264
+ <!-- http://www.ebi.ac.uk/swo/maturity/SWO_9000067 -->
265
+
266
+ <owl:ObjectProperty rdf:about="http://www.ebi.ac.uk/swo/maturity/SWO_9000067">
267
+ <rdfs:range rdf:resource="http://www.ebi.ac.uk/swo/maturity/SWO_9000061"/>
268
+ <obo:IAO_0000115>&apos;has declared status&apos; provides a way to assert the developmental status of a class, such as whether it is stable or under development. Is especially useful for software that might not be complete or stable yet, and when combined with version information.</obo:IAO_0000115>
269
+ <obo:IAO_0000119>Allyson Lister</obo:IAO_0000119>
270
+ <rdfs:label>has declared status</rdfs:label>
271
+ </owl:ObjectProperty>
272
+
273
+
274
+
275
+ <!--
276
+ ///////////////////////////////////////////////////////////////////////////////////////
277
+ //
278
+ // Data properties
279
+ //
280
+ ///////////////////////////////////////////////////////////////////////////////////////
281
+ -->
282
+
283
+
284
+
285
+
286
+ <!-- http://www.ebi.ac.uk/swo/SWO_0000043 -->
287
+
288
+ <owl:DatatypeProperty rdf:about="http://www.ebi.ac.uk/swo/SWO_0000043">
289
+ <rdfs:range rdf:resource="http://www.w3.org/2001/XMLSchema#string"/>
290
+ <obo:IAO_0000115>Should be used to link a particular class (e.g. a piece of software or an algorithm) with a publication(s) which act as the primary reference(s) for that class.</obo:IAO_0000115>
291
+ <terms:creator>Allyson Lister</terms:creator>
292
+ <rdfs:label xml:lang="en">has documentation</rdfs:label>
293
+ </owl:DatatypeProperty>
294
+
295
+
296
+
297
+ <!-- http://www.ebi.ac.uk/swo/SWO_0000046 -->
298
+
299
+ <owl:DatatypeProperty rdf:about="http://www.ebi.ac.uk/swo/SWO_0000046">
300
+ <rdfs:subPropertyOf rdf:resource="http://www.ebi.ac.uk/swo/SWO_0004006"/>
301
+ <rdfs:range rdf:resource="http://www.w3.org/2001/XMLSchema#string"/>
302
+ <obo:IAO_0000115>The location from where the software can be downloaded.</obo:IAO_0000115>
303
+ <obo:IAO_0000119>Allyson Lister</obo:IAO_0000119>
304
+ <terms:creator>Allyson Lister</terms:creator>
305
+ <rdfs:label xml:lang="en">has download location</rdfs:label>
306
+ </owl:DatatypeProperty>
307
+
308
+
309
+
310
+ <!-- http://www.ebi.ac.uk/swo/SWO_0004006 -->
311
+
312
+ <owl:DatatypeProperty rdf:about="http://www.ebi.ac.uk/swo/SWO_0004006">
313
+ <rdfs:range rdf:resource="http://www.w3.org/2000/01/rdf-schema#Literal"/>
314
+ <obo:IAO_0000115>The URL of the homepage for the resource this property is associated with.</obo:IAO_0000115>
315
+ <obo:IAO_0000119>Allyson Lister</obo:IAO_0000119>
316
+ <rdfs:label>has website homepage</rdfs:label>
317
+ </owl:DatatypeProperty>
318
+
319
+
320
+
321
+ <!-- http://www.ebi.ac.uk/swo/maturity/SWO_9000068 -->
322
+
323
+ <owl:DatatypeProperty rdf:about="http://www.ebi.ac.uk/swo/maturity/SWO_9000068">
324
+ <rdfs:range rdf:resource="http://www.w3.org/2001/XMLSchema#string"/>
325
+ <terms:creator>Andy Brown</terms:creator>
326
+ <rdfs:comment>The official date of release of software</rdfs:comment>
327
+ <rdfs:label>has release date</rdfs:label>
328
+ </owl:DatatypeProperty>
329
+
330
+
331
+
332
+ <!-- http://www.ebi.ac.uk/swo/maturity/SWO_9000070 -->
333
+
334
+ <owl:DatatypeProperty rdf:about="http://www.ebi.ac.uk/swo/maturity/SWO_9000070">
335
+ <rdfs:range rdf:resource="http://www.w3.org/2000/01/rdf-schema#Literal"/>
336
+ <terms:creator>Andy Brown</terms:creator>
337
+ <rdfs:comment>A URL for a source of support information about software</rdfs:comment>
338
+ <rdfs:label>has support URL</rdfs:label>
339
+ </owl:DatatypeProperty>
340
+
341
+
342
+
343
+ <!--
344
+ ///////////////////////////////////////////////////////////////////////////////////////
345
+ //
346
+ // Classes
347
+ //
348
+ ///////////////////////////////////////////////////////////////////////////////////////
349
+ -->
350
+
351
+
352
+
353
+
354
+ <!-- http://edamontology.org/format_2332 -->
355
+
356
+ <owl:Class rdf:about="http://edamontology.org/format_2332">
357
+ <rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/IAO_0000098"/>
358
+ <obo:IAO_0000115>Extensible Markup Language (XML) is a standard set of rules for encoding documents in a machine-readable form defined by the W3C.</obo:IAO_0000115>
359
+ <terms:creator>James Malone</terms:creator>
360
+ <rdfs:label>XML</rdfs:label>
361
+ </owl:Class>
362
+
363
+
364
+
365
+ <!-- http://purl.obolibrary.org/obo/BFO_0000034 -->
366
+
367
+ <owl:Class rdf:about="http://purl.obolibrary.org/obo/BFO_0000034">
368
+ <obo:BFO_0000179>function</obo:BFO_0000179>
369
+ <obo:BFO_0000180>Function</obo:BFO_0000180>
370
+ <obo:IAO_0000112 xml:lang="en">the function of a hammer to drive in nails</obo:IAO_0000112>
371
+ <obo:IAO_0000112 xml:lang="en">the function of a heart pacemaker to regulate the beating of a heart through electricity</obo:IAO_0000112>
372
+ <obo:IAO_0000112 xml:lang="en">the function of amylase in saliva to break down starch into sugar</obo:IAO_0000112>
373
+ <obo:IAO_0000116 xml:lang="en">BFO 2 Reference: In the past, we have distinguished two varieties of function, artifactual function and biological function. These are not asserted subtypes of BFO:function however, since the same function – for example: to pump, to transport – can exist both in artifacts and in biological entities. The asserted subtypes of function that would be needed in order to yield a separate monoheirarchy are not artifactual function, biological function, etc., but rather transporting function, pumping function, etc.</obo:IAO_0000116>
374
+ <obo:IAO_0000600 xml:lang="en">A function is a disposition that exists in virtue of the bearer’s physical make-up and this physical make-up is something the bearer possesses because it came into being, either through evolution (in the case of natural biological entities) or through intentional design (in the case of artifacts), in order to realize processes of a certain sort. (axiom label in BFO2 Reference: [064-001])</obo:IAO_0000600>
375
+ <obo:IAO_0000602>(forall (x) (if (Function x) (Disposition x))) // axiom label in BFO2 CLIF: [064-001]</obo:IAO_0000602>
376
+ <rdfs:isDefinedBy rdf:resource="http://purl.obolibrary.org/obo/bfo.owl"/>
377
+ <rdfs:label xml:lang="en">function</rdfs:label>
378
+ </owl:Class>
379
+
380
+
381
+
382
+ <!-- http://purl.obolibrary.org/obo/IAO_0000010 -->
383
+
384
+ <owl:Class rdf:about="http://purl.obolibrary.org/obo/IAO_0000010">
385
+ <obo:IAO_0000111 xml:lang="en">software</obo:IAO_0000111>
386
+ <obo:IAO_0000114 rdf:resource="http://purl.obolibrary.org/obo/IAO_0000120"/>
387
+ <obo:IAO_0000115 xml:lang="en">Software is a plan specification composed of a series of instructions that can be
388
+ interpreted by or directly executed by a processing unit.</obo:IAO_0000115>
389
+ <obo:IAO_0000116 xml:lang="en">see sourceforge tracker discussion at http://sourceforge.net/tracker/index.php?func=detail&amp;aid=1958818&amp;group_id=177891&amp;atid=886178</obo:IAO_0000116>
390
+ <obo:IAO_0000117 xml:lang="en">PERSON: Alan Ruttenberg</obo:IAO_0000117>
391
+ <obo:IAO_0000117 xml:lang="en">PERSON: Bjoern Peters</obo:IAO_0000117>
392
+ <obo:IAO_0000117 xml:lang="en">PERSON: Chris Stoeckert</obo:IAO_0000117>
393
+ <obo:IAO_0000117 xml:lang="en">PERSON: Melanie Courtot</obo:IAO_0000117>
394
+ <obo:IAO_0000119 xml:lang="en">GROUP: OBI</obo:IAO_0000119>
395
+ <rdfs:label xml:lang="en">software</rdfs:label>
396
+ <skos:exactMatch>http://www.ebi.ac.uk/swo/SWO_0000001</skos:exactMatch>
397
+ </owl:Class>
398
+
399
+
400
+
401
+ <!-- http://purl.obolibrary.org/obo/IAO_0000025 -->
402
+
403
+ <owl:Class rdf:about="http://purl.obolibrary.org/obo/IAO_0000025">
404
+ <obo:IAO_0000111 xml:lang="en">programming language</obo:IAO_0000111>
405
+ <obo:IAO_0000112 xml:lang="en">R, Perl, Java</obo:IAO_0000112>
406
+ <obo:IAO_0000114 rdf:resource="http://purl.obolibrary.org/obo/IAO_0000120"/>
407
+ <obo:IAO_0000115 xml:lang="en">A language in which source code is written that is intended to be executed/run by a software interpreter. Programming languages are ways to write instructions that specify what to do, and sometimes, how to do it.</obo:IAO_0000115>
408
+ <obo:IAO_0000115>A language in which source code is written, intended to executed/run by a software interpreter. Programming languages are ways to write instructions that specify what to do, and sometimes, how to do it.</obo:IAO_0000115>
409
+ <obo:IAO_0000117 xml:lang="en">person:Alan Ruttenberg</obo:IAO_0000117>
410
+ <obo:IAO_0000117 xml:lang="en">person:Chris Stoeckert</obo:IAO_0000117>
411
+ <obo:IAO_0000119>IAO</obo:IAO_0000119>
412
+ <obo:IAO_0000119 xml:lang="en">OBI_0000058</obo:IAO_0000119>
413
+ <obo:IAO_0000119 xml:lang="en">group:OBI</obo:IAO_0000119>
414
+ <rdfs:label>programming language</rdfs:label>
415
+ <rdfs:label xml:lang="en">programming language</rdfs:label>
416
+ </owl:Class>
417
+
418
+
419
+
420
+ <!-- http://purl.obolibrary.org/obo/IAO_0000027 -->
421
+
422
+ <owl:Class rdf:about="http://purl.obolibrary.org/obo/IAO_0000027">
423
+ <rdfs:subClassOf>
424
+ <owl:Restriction>
425
+ <owl:onProperty rdf:resource="http://www.ebi.ac.uk/swo/SWO_0000741"/>
426
+ <owl:someValuesFrom rdf:resource="http://purl.obolibrary.org/obo/IAO_0000098"/>
427
+ </owl:Restriction>
428
+ </rdfs:subClassOf>
429
+ <obo:IAO_0000111 xml:lang="en">data item</obo:IAO_0000111>
430
+ <obo:IAO_0000112 xml:lang="en">Data items include counts of things, analyte concentrations, and statistical summaries.</obo:IAO_0000112>
431
+ <obo:IAO_0000114 rdf:resource="http://purl.obolibrary.org/obo/IAO_0000125"/>
432
+ <obo:IAO_0000115 xml:lang="en">An information content entity that is intended to be a truthful statement about something (modulo, e.g., measurement precision or other systematic errors) and is constructed/acquired by a method which reliably tends to produce (approximately) truthful statements.</obo:IAO_0000115>
433
+ <obo:IAO_0000116 xml:lang="en">2/2/2009 Alan and Bjoern discussing FACS run output data. This is a data item because it is about the cell population. Each element records an event and is typically further composed a set of measurment data items that record the fluorescent intensity stimulated by one of the lasers.</obo:IAO_0000116>
434
+ <obo:IAO_0000116 xml:lang="en">2009-03-16: data item deliberatly ambiguous: we merged data set and datum to be one entity, not knowing how to define singular versus plural. So data item is more general than datum.</obo:IAO_0000116>
435
+ <obo:IAO_0000116 xml:lang="en">2009-03-16: removed datum as alternative term as datum specifically refers to singular form, and is thus not an exact synonym.</obo:IAO_0000116>
436
+ <obo:IAO_0000116>2014-03-31: See discussion at http://odontomachus.wordpress.com/2014/03/30/aboutness-objects-propositions/</obo:IAO_0000116>
437
+ <obo:IAO_0000116 xml:lang="en">JAR: datum -- well, this will be very tricky to define, but maybe some
438
+ information-like stuff that might be put into a computer and that is
439
+ meant, by someone, to denote and/or to be interpreted by some
440
+ process... I would include lists, tables, sentences... I think I might
441
+ defer to Barry, or to Brian Cantwell Smith
442
+
443
+ JAR: A data item is an approximately justified approximately true approximate belief</obo:IAO_0000116>
444
+ <obo:IAO_0000117 xml:lang="en">PERSON: Alan Ruttenberg</obo:IAO_0000117>
445
+ <obo:IAO_0000117 xml:lang="en">PERSON: Chris Stoeckert</obo:IAO_0000117>
446
+ <obo:IAO_0000117 xml:lang="en">PERSON: Jonathan Rees</obo:IAO_0000117>
447
+ <obo:IAO_0000118 xml:lang="en">data</obo:IAO_0000118>
448
+ <rdfs:label xml:lang="en">data item</rdfs:label>
449
+ <rdfs:seeAlso>http://www.ontobee.org/browser/rdf.php?o=IAO&amp;iri=http://purl.obolibrary.org/obo/IAO_0000027</rdfs:seeAlso>
450
+ </owl:Class>
451
+
452
+
453
+
454
+ <!-- http://purl.obolibrary.org/obo/IAO_0000064 -->
455
+
456
+ <owl:Class rdf:about="http://purl.obolibrary.org/obo/IAO_0000064">
457
+ <obo:IAO_0000111 xml:lang="en">algorithm</obo:IAO_0000111>
458
+ <obo:IAO_0000112 xml:lang="en">PMID: 18378114.Genomics. 2008 Mar 28. LINKGEN: A new algorithm to process data in genetic linkage studies.</obo:IAO_0000112>
459
+ <obo:IAO_0000114 rdf:resource="http://purl.obolibrary.org/obo/IAO_0000120"/>
460
+ <obo:IAO_0000115>A plan specification which describes inputs, output of mathematical functions as well as workflow of execution for achieving an predefined objective. Algorithms are realized usually by means of implementation as computer programs for execution by automata.</obo:IAO_0000115>
461
+ <obo:IAO_0000115 xml:lang="en">A plan specification which describes the inputs and output of mathematical functions as well as workflow of execution for achieving an predefined objective. Algorithms are realized usually by means of implementation as computer programs for execution by automata.</obo:IAO_0000115>
462
+ <obo:IAO_0000117 xml:lang="en">Philippe Rocca-Serra</obo:IAO_0000117>
463
+ <obo:IAO_0000117 xml:lang="en">PlanAndPlannedProcess Branch</obo:IAO_0000117>
464
+ <obo:IAO_0000119>IAO</obo:IAO_0000119>
465
+ <obo:IAO_0000119 xml:lang="en">OBI_0000270</obo:IAO_0000119>
466
+ <obo:IAO_0000119 xml:lang="en">adapted from discussion on OBI list (Matthew Pocock, Christian Cocos, Alan Ruttenberg)</obo:IAO_0000119>
467
+ <rdfs:label>algorithm</rdfs:label>
468
+ <rdfs:label xml:lang="en">algorithm</rdfs:label>
469
+ </owl:Class>
470
+
471
+
472
+
473
+ <!-- http://purl.obolibrary.org/obo/IAO_0000098 -->
474
+
475
+ <owl:Class rdf:about="http://purl.obolibrary.org/obo/IAO_0000098">
476
+ <obo:IAO_0000111 xml:lang="en">data format specification</obo:IAO_0000111>
477
+ <obo:IAO_0000114 rdf:resource="http://purl.obolibrary.org/obo/IAO_0000123"/>
478
+ <obo:IAO_0000115 xml:lang="en">A data format specification is the information content borne by the document published defining the specification.
479
+ Example: The ISO document specifying what encompasses an XML document; The instructions in a XSD file</obo:IAO_0000115>
480
+ <obo:IAO_0000116 xml:lang="en">2009-03-16: provenance: term imported from OBI_0000187, which had original definition &quot;A data format specification is a plan which organizes
481
+ information. Example: The ISO document specifying what encompasses an
482
+ XML document; The instructions in a XSD file&quot;</obo:IAO_0000116>
483
+ <obo:IAO_0000117 xml:lang="en">PERSON: Alan Ruttenberg</obo:IAO_0000117>
484
+ <obo:IAO_0000117 xml:lang="en">PlanAndPlannedProcess Branch</obo:IAO_0000117>
485
+ <obo:IAO_0000119 xml:lang="en">OBI branch derived</obo:IAO_0000119>
486
+ <obo:IAO_0000119 xml:lang="en">OBI_0000187</obo:IAO_0000119>
487
+ <rdfs:label xml:lang="en">data format specification</rdfs:label>
488
+ </owl:Class>
489
+
490
+
491
+
492
+ <!-- http://purl.obolibrary.org/obo/IAO_0000129 -->
493
+
494
+ <owl:Class rdf:about="http://purl.obolibrary.org/obo/IAO_0000129">
495
+ <obo:IAO_0000111 xml:lang="en">version number</obo:IAO_0000111>
496
+ <obo:IAO_0000114 rdf:resource="http://purl.obolibrary.org/obo/IAO_0000123"/>
497
+ <obo:IAO_0000115 xml:lang="en">A version number is an information content entity which is a sequence of characters borne by part of each of a class of manufactured products or its packaging and indicates its order within a set of other products having the same name.</obo:IAO_0000115>
498
+ <obo:IAO_0000116 xml:lang="en">Note: we feel that at the moment we are happy with a general version number, and that we will subclass as needed in the future. For example, see 7. genome sequence version</obo:IAO_0000116>
499
+ <obo:IAO_0000117 xml:lang="en">GROUP: IAO</obo:IAO_0000117>
500
+ <rdfs:label>version name</rdfs:label>
501
+ <rdfs:label xml:lang="en">version number</rdfs:label>
502
+ </owl:Class>
503
+
504
+
505
+
506
+ <!-- http://www.ebi.ac.uk/swo/SWO_0000002 -->
507
+
508
+ <owl:Class rdf:about="http://www.ebi.ac.uk/swo/SWO_0000002">
509
+ <obo:IAO_0000115>A licence is a legal instrument (usually by way of contract law, with or without printed material) governing the use or redistribution of the resource containing the licence.</obo:IAO_0000115>
510
+ <obo:IAO_0000119>Modified from http://en.wikipedia.org/wiki/Software_license</obo:IAO_0000119>
511
+ <terms:creator>James Malone</terms:creator>
512
+ <rdfs:label xml:lang="en">licence</rdfs:label>
513
+ <rdfs:label>software license</rdfs:label>
514
+ </owl:Class>
515
+
516
+
517
+
518
+ <!-- http://www.ebi.ac.uk/swo/SWO_0000084 -->
519
+
520
+ <owl:Class rdf:about="http://www.ebi.ac.uk/swo/SWO_0000084">
521
+ <obo:IAO_0000115>CEL binary format is a binary data format specification created by Affymetrix where values are stored in little-endian format. The CEL format stores the results of the intensity calculations on the pixel values of the DAT file. This includes an intensity value, standard deviation of the intensity, the number of pixels used to calculate the intensity value, a flag to indicate an outlier as calculated by the algorithm and a user defined flag indicating the feature should be excluded from future analysis. The file stores the previously stated data for each feature on the probe array.</obo:IAO_0000115>
522
+ <obo:IAO_0000119>http://www.affymetrix.com/support/developer/powertools/changelog/gcos-agcc/cel.html, accessed 22 May 2013.</obo:IAO_0000119>
523
+ <terms:creator>Allyson Lister</terms:creator>
524
+ <rdfs:comment>It is unclear whether, originally, this format was intended to be the ASCII or binary version of the CEL format. As such, this class has been renamed as the binary format, and a new class created (CEL ASCII format) to make both options available. (22/05/2013)</rdfs:comment>
525
+ <rdfs:label>CEL binary format</rdfs:label>
526
+ </owl:Class>
527
+
528
+
529
+
530
+ <!-- http://www.ebi.ac.uk/swo/SWO_0000322 -->
531
+
532
+ <owl:Class rdf:about="http://www.ebi.ac.uk/swo/SWO_0000322">
533
+ <obo:IAO_0000115>A package for processing protein mass spectrometry data.</obo:IAO_0000115>
534
+ <obo:IAO_0000119>http://bioconductor.org/packages/2.4/bioc/html/PROcess.html</obo:IAO_0000119>
535
+ <terms:creator>Nandini Badarinarayan</terms:creator>
536
+ <rdfs:label>PROcess</rdfs:label>
537
+ </owl:Class>
538
+
539
+
540
+
541
+ <!-- http://www.ebi.ac.uk/swo/SWO_0000392 -->
542
+
543
+ <owl:Class rdf:about="http://www.ebi.ac.uk/swo/SWO_0000392">
544
+ <obo:IAO_0000115>Software developer role is a role borne by an organization or individual in which they are responsible for authoring software.</obo:IAO_0000115>
545
+ <obo:IAO_0000119>James Malone</obo:IAO_0000119>
546
+ <rdfs:label>software developer role</rdfs:label>
547
+ </owl:Class>
548
+
549
+
550
+
551
+ <!-- http://www.ebi.ac.uk/swo/SWO_0000396 -->
552
+
553
+ <owl:Class rdf:about="http://www.ebi.ac.uk/swo/SWO_0000396">
554
+ <obo:IAO_0000115>An organization or legal entity (including single person) that is responsible for developing software. Developing includes aspects of design, coding and testing.</obo:IAO_0000115>
555
+ <rdfs:label>software developer organization</rdfs:label>
556
+ </owl:Class>
557
+
558
+
559
+
560
+ <!-- http://www.ebi.ac.uk/swo/SWO_9000020 -->
561
+
562
+ <owl:Class rdf:about="http://www.ebi.ac.uk/swo/SWO_9000020">
563
+ <obo:IAO_0000115>A source code available clause is a source code clause which states that the source code for the licensed software is available to the licensee. However, usage of the source code may or may not be restricted in a variety of ways.</obo:IAO_0000115>
564
+ <obo:IAO_0000119>Allyson Lister</obo:IAO_0000119>
565
+ <rdfs:label>Source code available</rdfs:label>
566
+ </owl:Class>
567
+
568
+
569
+
570
+ <!-- http://www.ebi.ac.uk/swo/SWO_9000050 -->
571
+
572
+ <owl:Class rdf:about="http://www.ebi.ac.uk/swo/SWO_9000050">
573
+ <obo:IAO_0000115>The mode of interaction with a piece of software.</obo:IAO_0000115>
574
+ <rdfs:label>software interface</rdfs:label>
575
+ </owl:Class>
576
+
577
+
578
+
579
+ <!-- http://www.ebi.ac.uk/swo/data/SWO_3000019 -->
580
+
581
+ <owl:Class rdf:about="http://www.ebi.ac.uk/swo/data/SWO_3000019">
582
+ <obo:IAO_0000115>The Graphics Interchange Format (GIF) is a bitmap image format. The format supports up to 8 bits per pixel thus allowing a single image to reference a palette of up to 256 distinct colors. The colors are chosen from the 24-bit RGB color space. It also supports animations and allows a separate palette of 256 colors for each frame. The color limitation makes the GIF format unsuitable for reproducing color photographs and other images with continuous color, but it is well-suited for simpler images such as graphics or logos with solid areas of color. [wikipedia]</obo:IAO_0000115>
583
+ <obo:IAO_0000118>Graphics Interchange Format</obo:IAO_0000118>
584
+ <rdfs:label>GIF</rdfs:label>
585
+ </owl:Class>
586
+
587
+
588
+
589
+ <!-- http://www.ebi.ac.uk/swo/data/SWO_3000043 -->
590
+
591
+ <owl:Class rdf:about="http://www.ebi.ac.uk/swo/data/SWO_3000043">
592
+ <rdfs:label>plain text file format</rdfs:label>
593
+ </owl:Class>
594
+
595
+
596
+
597
+ <!-- http://www.ebi.ac.uk/swo/data/SWO_3000059 -->
598
+
599
+ <owl:Class rdf:about="http://www.ebi.ac.uk/swo/data/SWO_3000059">
600
+ <obo:IAO_0000115>CEL ASCII format is ASCII data format specification created by Affymetrix similar to the Windows INI format. The CEL format stores the results of the intensity calculations on the pixel values of the DAT file. This includes an intensity value, standard deviation of the intensity, the number of pixels used to calculate the intensity value, a flag to indicate an outlier as calculated by the algorithm and a user defined flag indicating the feature should be excluded from future analysis. The file stores the previously stated data for each feature on the probe array.</obo:IAO_0000115>
601
+ <obo:IAO_0000119>http://www.affymetrix.com/support/developer/powertools/changelog/gcos-agcc/cel.html, accessed 22 May 2013.</obo:IAO_0000119>
602
+ <terms:creator>Allyson Lister</terms:creator>
603
+ <rdfs:label xml:lang="en">CEL ASCII format</rdfs:label>
604
+ </owl:Class>
605
+
606
+
607
+
608
+ <!-- http://www.ebi.ac.uk/swo/data/SWO_3000082 -->
609
+
610
+ <owl:Class rdf:about="http://www.ebi.ac.uk/swo/data/SWO_3000082">
611
+ <obo:IAO_0000118>Comma-separated value format</obo:IAO_0000118>
612
+ <rdfs:label xml:lang="en">.csv</rdfs:label>
613
+ </owl:Class>
614
+
615
+
616
+
617
+ <!-- http://www.ebi.ac.uk/swo/interface/SWO_5000003 -->
618
+
619
+ <owl:Class rdf:about="http://www.ebi.ac.uk/swo/interface/SWO_5000003">
620
+ <obo:IAO_0000115>A Desktop Graphical User interface is a Graphical User Interface which is loaded and run within the user&apos;s operating system rather than via a Web browser.</obo:IAO_0000115>
621
+ <obo:IAO_0000118>Desktop GUI</obo:IAO_0000118>
622
+ <terms:creator>Allyson Lister</terms:creator>
623
+ <rdfs:label xml:lang="en">desktop graphical user interface</rdfs:label>
624
+ </owl:Class>
625
+
626
+
627
+
628
+ <!-- http://www.ebi.ac.uk/swo/interface/SWO_9000051 -->
629
+
630
+ <owl:Class rdf:about="http://www.ebi.ac.uk/swo/interface/SWO_9000051">
631
+ <rdfs:subClassOf rdf:resource="http://www.ebi.ac.uk/swo/SWO_9000050"/>
632
+ <obo:IAO_0000115>A web service is a software interface which works as a method of communication between two electronic devices over the World Wide Web and which is provided at a particular network address. There are two major classes of Web services: REST-compliant Web services, and arbitrary (or application-specific) Web services.</obo:IAO_0000115>
633
+ <obo:IAO_0000118>Web Service</obo:IAO_0000118>
634
+ <obo:IAO_0000119>Modified from http://www.w3.org/TR/ws-arch/, accessed 6 June 2013; Modified from http://en.wikipedia.org/wiki/Web_service, accessed 6 June 2013.</obo:IAO_0000119>
635
+ <terms:creator>Allyson Lister</terms:creator>
636
+ <rdfs:label>web service</rdfs:label>
637
+ </owl:Class>
638
+
639
+
640
+
641
+ <!-- http://www.ebi.ac.uk/swo/interface/SWO_9000054 -->
642
+
643
+ <owl:Class rdf:about="http://www.ebi.ac.uk/swo/interface/SWO_9000054">
644
+ <rdfs:subClassOf rdf:resource="http://www.ebi.ac.uk/swo/SWO_9000050"/>
645
+ <obo:IAO_0000115>An application programming interface is a set of routines, protocols, and tools for building software applications. An API expresses a software component in terms of its operations, inputs, outputs, and underlying types. An API defines functionalities that are independent of their respective implementations, which allows definitions and implementations to vary without compromising each other. The API specifies how software components should interact.</obo:IAO_0000115>
646
+ <obo:IAO_0000118>API</obo:IAO_0000118>
647
+ <obo:IAO_0000119>http://en.wikipedia.org/wiki/Application_programming_interface, accessed 25 November 2014.</obo:IAO_0000119>
648
+ <rdfs:label>application programming interface</rdfs:label>
649
+ </owl:Class>
650
+
651
+
652
+
653
+ <!-- http://www.ebi.ac.uk/swo/license/SWO_1000008 -->
654
+
655
+ <owl:Class rdf:about="http://www.ebi.ac.uk/swo/license/SWO_1000008">
656
+ <owl:equivalentClass>
657
+ <owl:Restriction>
658
+ <owl:onProperty rdf:resource="http://www.ebi.ac.uk/swo/SWO_9001002"/>
659
+ <owl:someValuesFrom rdf:resource="http://www.ebi.ac.uk/swo/SWO_9000020"/>
660
+ </owl:Restriction>
661
+ </owl:equivalentClass>
662
+ <rdfs:subClassOf rdf:resource="http://www.ebi.ac.uk/swo/SWO_0000002"/>
663
+ <rdfs:subClassOf>
664
+ <owl:Restriction>
665
+ <owl:onProperty rdf:resource="http://www.ebi.ac.uk/swo/SWO_9001002"/>
666
+ <owl:someValuesFrom rdf:resource="http://www.ebi.ac.uk/swo/SWO_9000020"/>
667
+ </owl:Restriction>
668
+ </rdfs:subClassOf>
669
+ <rdfs:label>Open source software license</rdfs:label>
670
+ </owl:Class>
671
+
672
+
673
+
674
+ <!-- http://www.ebi.ac.uk/swo/license/SWO_1000058 -->
675
+
676
+ <owl:Class rdf:about="http://www.ebi.ac.uk/swo/license/SWO_1000058">
677
+ <obo:IAO_0000115>Purchase cost is a license clause which states whether there is a cost involved with a particular usage or licensing of a resource.</obo:IAO_0000115>
678
+ <obo:IAO_0000119>Allyson Lister</obo:IAO_0000119>
679
+ <rdfs:comment>Allyson Lister</rdfs:comment>
680
+ <rdfs:comment>In some ways, purchase cost is similar to the already-extant usage clause hierarchy, which includes restricted and unrestricted usage. However, a usage limitation is not necessarily due to whether or not something costs money: even if the usage is academic only, it could still be either free or non-free. A license could have multiple usage clauses, e.g. academic only when free, and unrestricted if a fee is paid. Purchase cost was created which, together with a usage clause, defines both limitations and cost.</rdfs:comment>
681
+ <rdfs:label>Purchase cost</rdfs:label>
682
+ </owl:Class>
683
+
684
+
685
+
686
+ <!-- http://www.ebi.ac.uk/swo/license/SWO_1000059 -->
687
+
688
+ <owl:Class rdf:about="http://www.ebi.ac.uk/swo/license/SWO_1000059">
689
+ <rdfs:subClassOf rdf:resource="http://www.ebi.ac.uk/swo/license/SWO_1000058"/>
690
+ <obo:IAO_0000115>Free is a type of purchase cost clause which, when applied, means that there is no cost for the users of the resource to which the license is attached. This clause can be combined with other clauses (such as usage clauses) to specify that only certain usages are free.</obo:IAO_0000115>
691
+ <obo:IAO_0000119>Allyson Lister</obo:IAO_0000119>
692
+ <terms:creator>Allyson Lister</terms:creator>
693
+ <rdfs:comment>This class refers only to the cost of the resource, not to the definition of &quot;free software&quot; as provided by the GNU Project and which is commonly used to describe software that respects users&apos; freedom and community (http://www.gnu.org/philosophy/free-sw.html).</rdfs:comment>
694
+ <rdfs:label>Free</rdfs:label>
695
+ </owl:Class>
696
+
697
+
698
+
699
+ <!-- http://www.ebi.ac.uk/swo/license/SWO_1000060 -->
700
+
701
+ <owl:Class rdf:about="http://www.ebi.ac.uk/swo/license/SWO_1000060">
702
+ <rdfs:subClassOf rdf:resource="http://www.ebi.ac.uk/swo/license/SWO_1000058"/>
703
+ <obo:IAO_0000115>Not Free is a type of purchase cost clause which, when applied, means that there is a cost for the users of the resource to which the license is attached. This clause can be combined with other clauses (such as usage clauses) to specify that only certain usages incur a purchase cost.</obo:IAO_0000115>
704
+ <obo:IAO_0000119>Allyson Lister</obo:IAO_0000119>
705
+ <terms:creator>Allyson Lister</terms:creator>
706
+ <rdfs:comment>This class refers only to the cost of the resource, not to the definition of &quot;free software&quot; as provided by the GNU Project and which is commonly used to describe software that respects users&apos; freedom and community (http://www.gnu.org/philosophy/free-sw.html).</rdfs:comment>
707
+ <rdfs:label>Not Free</rdfs:label>
708
+ </owl:Class>
709
+
710
+
711
+
712
+ <!-- http://www.ebi.ac.uk/swo/maturity/SWO_9000061 -->
713
+
714
+ <owl:Class rdf:about="http://www.ebi.ac.uk/swo/maturity/SWO_9000061">
715
+ <obo:IAO_0000115>Development status is an information content entity which indicates the maturity of a software entity within the context of the software life cycle.</obo:IAO_0000115>
716
+ <obo:IAO_0000119>Allyson Lister</obo:IAO_0000119>
717
+ <terms:creator>Andy Brown</terms:creator>
718
+ <rdfs:label>Development status</rdfs:label>
719
+ </owl:Class>
720
+
721
+
722
+
723
+ <!-- http://www.ebi.ac.uk/swo/maturity/SWO_9000073 -->
724
+
725
+ <owl:Class rdf:about="http://www.ebi.ac.uk/swo/maturity/SWO_9000073">
726
+ <rdfs:subClassOf rdf:resource="http://www.ebi.ac.uk/swo/maturity/SWO_9000061"/>
727
+ <obo:IAO_0000115>Software has developers actively maintaining it (fixing bugs)</obo:IAO_0000115>
728
+ <terms:creator>Andy Brown</terms:creator>
729
+ <rdfs:label>Maintained</rdfs:label>
730
+ </owl:Class>
731
+
732
+
733
+
734
+ <!-- http://www.ebi.ac.uk/swo/objective/SWO_4000011 -->
735
+
736
+ <owl:Class rdf:about="http://www.ebi.ac.uk/swo/objective/SWO_4000011">
737
+ <obo:IAO_0000115>Text editing is the objective of editing plain text files.</obo:IAO_0000115>
738
+ <rdfs:label>text editing</rdfs:label>
739
+ </owl:Class>
740
+
741
+
742
+
743
+ <!-- http://www.ebi.ac.uk/swo/objective/SWO_4000012 -->
744
+
745
+ <owl:Class rdf:about="http://www.ebi.ac.uk/swo/objective/SWO_4000012">
746
+ <rdfs:comment>Renders a file in such a way that its contents can be understood by users.</rdfs:comment>
747
+ <rdfs:label>file rendering</rdfs:label>
748
+ </owl:Class>
749
+
750
+
751
+
752
+ <!--
753
+ ///////////////////////////////////////////////////////////////////////////////////////
754
+ //
755
+ // Individuals
756
+ //
757
+ ///////////////////////////////////////////////////////////////////////////////////////
758
+ -->
759
+
760
+
761
+
762
+
763
+ <!-- http://www.ebi.ac.uk/swo/SWO_1200000 -->
764
+
765
+ <owl:NamedIndividual rdf:about="http://www.ebi.ac.uk/swo/SWO_1200000"/>
766
+ </rdf:RDF>
767
+
768
+
769
+
770
+ <!-- Generated by the OWL API (version 4.5.13) https://github.com/owlcs/owlapi -->
771
+
vgo/VideoGame_CQs_Annotations.xlsx ADDED
Binary file (41.9 kB). View file
 
vgo/cq_to_onto_vgo.json ADDED
@@ -0,0 +1,126 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ [
2
+ {
3
+ "id": "CQ01",
4
+ "value": "What is the username of the player?"
5
+ },
6
+ {
7
+ "id": "CQ02",
8
+ "value": "Who are the friends of the player?"
9
+ },
10
+ {
11
+ "id": "CQ03",
12
+ "value": "Who are the friends that play other games as well with this player?"
13
+ },
14
+ {
15
+ "id": "CQ05",
16
+ "value": "What are the achievements of my friends?"
17
+ },
18
+ {
19
+ "id": "CQ07",
20
+ "value": "What are the achievements your friend has received?"
21
+ },
22
+ {
23
+ "id": "CQ08",
24
+ "value": "What achievements does a game have?"
25
+ },
26
+ {
27
+ "id": "CQ09",
28
+ "value": "How many hours has this game been played in total?"
29
+ },
30
+ {
31
+ "id": "CQ10",
32
+ "value": "What are the types of achievements in this game?"
33
+ },
34
+ {
35
+ "id": "CQ11",
36
+ "value": "What are the types of achievements a game can have?"
37
+ },
38
+ {
39
+ "id": "CQ12",
40
+ "value": "What is the genre of the game?"
41
+ },
42
+ {
43
+ "id": "CQ13",
44
+ "value": "What items exist in a game?"
45
+ },
46
+ {
47
+ "id": "CQ15",
48
+ "value": "What is the release date of the game?"
49
+ },
50
+ {
51
+ "id": "CQ17",
52
+ "value": "List all games of a certain Genre?"
53
+ },
54
+ {
55
+ "id": "CQ19",
56
+ "value": "What abilities does an item have?"
57
+ },
58
+ {
59
+ "id": "CQ22",
60
+ "value": "Who has the best kill count in the game?"
61
+ },
62
+ {
63
+ "id": "CQ24",
64
+ "value": "What achievements has a player obtained?"
65
+ },
66
+ {
67
+ "id": "CQ25",
68
+ "value": "What games has the player played?"
69
+ },
70
+ {
71
+ "id": "CQ26",
72
+ "value": "What items does the player have?"
73
+ },
74
+ {
75
+ "id": "CQ27",
76
+ "value": "What achievements of a certain type does the player have?"
77
+ },
78
+ {
79
+ "id": "CQ29",
80
+ "value": "What is the last game a player has played?"
81
+ },
82
+ {
83
+ "id": "CQ35",
84
+ "value": "In how many games does the player have all the achievements?"
85
+ },
86
+ {
87
+ "id": "CQ52",
88
+ "value": "What equipment does a player have in a game?"
89
+ },
90
+ {
91
+ "id": "CQ55",
92
+ "value": "What are the games where a player can use this item?"
93
+ },
94
+ {
95
+ "id": "CQ56",
96
+ "value": "How many players have made in app purchases?"
97
+ },
98
+ {
99
+ "id": "CQ57",
100
+ "value": "How many players who have already spent money, spend money again?"
101
+ },
102
+ {
103
+ "id": "CQ62",
104
+ "value": "What time are most of the in app purchases done?"
105
+ },
106
+ {
107
+ "id": "CQ63",
108
+ "value": "Where do the most paying customers live?"
109
+ },
110
+ {
111
+ "id": "CQ64",
112
+ "value": "How long does a player spend in the game before making first IAP?"
113
+ },
114
+ {
115
+ "id": "CQ65",
116
+ "value": "Where do the players live who have not made any IAP?"
117
+ },
118
+ {
119
+ "id": "CQ66",
120
+ "value": "Where do the players who have done the most IAP live?"
121
+ },
122
+ {
123
+ "id": "New CQ1",
124
+ "value": "What playing areas does a game have?"
125
+ }
126
+ ]
vgo/cq_to_terms_vgo.json ADDED
@@ -0,0 +1,249 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ [
2
+ {
3
+ "id": "CQ01",
4
+ "question": "What is the username of the player?",
5
+ "classes": [
6
+ "Player"
7
+ ],
8
+ "properties": [
9
+ "username"
10
+ ]
11
+ },
12
+ {
13
+ "id": "CQ02",
14
+ "question": "Who are the friends of the player?",
15
+ "classes": [
16
+ "Player"
17
+ ],
18
+ "properties": [
19
+ "isFriendWithPlayer"
20
+ ]
21
+ },
22
+ {
23
+ "id": "CQ03",
24
+ "question": "Who are the friends that play other games as well with this player?",
25
+ "classes": [
26
+ "Game",
27
+ "Player"
28
+ ],
29
+ "properties": [
30
+ "isFriendWithPlayer",
31
+ "playsGame"
32
+ ]
33
+ },
34
+ {
35
+ "id": "CQ05",
36
+ "question": "What are the achievements of my friends?",
37
+ "classes": [
38
+ "Achievement",
39
+ "Player"
40
+ ],
41
+ "properties": [
42
+ "isFriendWithPlayer",
43
+ "ownsAchievement"
44
+ ]
45
+ },
46
+ {
47
+ "id": "CQ07",
48
+ "question": "What are the achievements your friend has received?",
49
+ "classes": [
50
+ "Achievement",
51
+ "Player"
52
+ ],
53
+ "properties": [
54
+ "isFriendWithPlayer",
55
+ "ownsAchievement"
56
+ ]
57
+ },
58
+ {
59
+ "id": "CQ08",
60
+ "question": "What achievements does a game have?",
61
+ "classes": [
62
+ "Achievement",
63
+ "Game"
64
+ ],
65
+ "properties": [
66
+ "hasAchievement"
67
+ ]
68
+ },
69
+ {
70
+ "id": "CQ10",
71
+ "question": "What are the types of achievements in this game?",
72
+ "classes": [
73
+ "Achievement",
74
+ "Game"
75
+ ],
76
+ "properties": [
77
+ "hasAchievement"
78
+ ]
79
+ },
80
+ {
81
+ "id": "CQ11",
82
+ "question": "What are the types of achievements a game can have?",
83
+ "classes": [
84
+ "Achievement",
85
+ "Game"
86
+ ],
87
+ "properties": [
88
+ "hasAchievement"
89
+ ]
90
+ },
91
+ {
92
+ "id": "CQ12",
93
+ "question": "What is the genre of the game?",
94
+ "classes": [
95
+ "Game",
96
+ "Genre"
97
+ ],
98
+ "properties": [
99
+ "hasGameGenre"
100
+ ]
101
+ },
102
+ {
103
+ "id": "CQ13",
104
+ "question": "What items exist in a game?",
105
+ "classes": [
106
+ "Game",
107
+ "Item"
108
+ ],
109
+ "properties": [
110
+ "hasItem"
111
+ ]
112
+ },
113
+ {
114
+ "id": "CQ15",
115
+ "question": "What is the release date of the game?",
116
+ "classes": [
117
+ "Game"
118
+ ],
119
+ "properties": [
120
+ "releaseDate"
121
+ ]
122
+ },
123
+ {
124
+ "id": "CQ17",
125
+ "question": "List all games of a certain Genre?",
126
+ "classes": [
127
+ "Game",
128
+ "Genre"
129
+ ],
130
+ "properties": [
131
+ "hasGameGenre"
132
+ ]
133
+ },
134
+ {
135
+ "id": "CQ24",
136
+ "question": "What achievements has a player obtained?",
137
+ "classes": [
138
+ "Achievement",
139
+ "Player"
140
+ ],
141
+ "properties": [
142
+ "ownsAchievement"
143
+ ]
144
+ },
145
+ {
146
+ "id": "CQ25",
147
+ "question": "What games has the player played?",
148
+ "classes": [
149
+ "Game",
150
+ "Player"
151
+ ],
152
+ "properties": [
153
+ "playsGame"
154
+ ]
155
+ },
156
+ {
157
+ "id": "CQ26",
158
+ "question": "What items does the player have?",
159
+ "classes": [
160
+ "Item",
161
+ "Player"
162
+ ],
163
+ "properties": [
164
+ "ownsItem"
165
+ ]
166
+ },
167
+ {
168
+ "id": "CQ55",
169
+ "question": "What are the games where a player can use this item?",
170
+ "classes": [
171
+ "Game",
172
+ "Item",
173
+ "Player"
174
+ ],
175
+ "properties": [
176
+ "hasItem",
177
+ "ownsItem",
178
+ "playsGame"
179
+ ]
180
+ },
181
+ {
182
+ "id": "CQ56",
183
+ "question": "How many players have made in app purchases?",
184
+ "classes": [
185
+ "InAppPurchaseEvent",
186
+ "Player"
187
+ ],
188
+ "properties": [
189
+ "isEventAssociatedToPlayer",
190
+ "purchasesGameOffering"
191
+ ]
192
+ },
193
+ {
194
+ "id": "CQ62",
195
+ "question": "What time are most of the in app purchases done?",
196
+ "classes": [
197
+ "InAppPurchaseEvent"
198
+ ],
199
+ "properties": [
200
+ "eventTime"
201
+ ]
202
+ },
203
+ {
204
+ "id": "CQ63",
205
+ "question": "Where do the most paying customers live?",
206
+ "classes": [
207
+ "InAppPurchaseEvent",
208
+ "Player"
209
+ ],
210
+ "properties": [
211
+ "isEventAssociatedToPlayer",
212
+ "livesIn"
213
+ ]
214
+ },
215
+ {
216
+ "id": "CQ65",
217
+ "question": "Where do the players live who have not made any IAP?",
218
+ "classes": [
219
+ "Player"
220
+ ],
221
+ "properties": [
222
+ "isEventAssociatedToPlayer",
223
+ "livesIn"
224
+ ]
225
+ },
226
+ {
227
+ "id": "CQ66",
228
+ "question": "Where do the players who have done the most IAP live?",
229
+ "classes": [
230
+ "InAppPurchaseEvent",
231
+ "Player"
232
+ ],
233
+ "properties": [
234
+ "isEventAssociatedToPlayer",
235
+ "livesIn"
236
+ ]
237
+ },
238
+ {
239
+ "id": "CQNew1",
240
+ "question": "What playing areas does a game have?",
241
+ "classes": [
242
+ "Game",
243
+ "PlayingArea"
244
+ ],
245
+ "properties": [
246
+ "HasPlayingArea"
247
+ ]
248
+ }
249
+ ]
vgo/sub_vgo.owl ADDED
@@ -0,0 +1,652 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?xml version="1.0"?>
2
+ <rdf:RDF xmlns="http://purl.org/net/VideoGameOntology#"
3
+ xml:base="http://purl.org/net/VideoGameOntology"
4
+ xmlns:dc="http://purl.org/dc/elements/1.1/"
5
+ xmlns:owl="http://www.w3.org/2002/07/owl#"
6
+ xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
7
+ xmlns:xml="http://www.w3.org/XML/1998/namespace"
8
+ xmlns:xsd="http://www.w3.org/2001/XMLSchema#"
9
+ xmlns:rdfs="http://www.w3.org/2000/01/rdf-schema#"
10
+ xmlns:vann="http://purl.org/vocab/vann/"
11
+ xmlns:terms="http://purl.org/dc/terms/">
12
+ <owl:Ontology rdf:about="http://purl.org/net/VideoGameOntology">
13
+ <dc:creator rdf:datatype="http://www.w3.org/2001/XMLSchema#anyURI">http://delicias.dia.fi.upm.es/members/DGarijo/#me</dc:creator>
14
+ <dc:creator rdf:datatype="http://www.w3.org/2001/XMLSchema#anyURI">http://filip.milstan.net/</dc:creator>
15
+ <dc:creator rdf:datatype="http://www.w3.org/2001/XMLSchema#anyURI">http://purl.org/net/mpoveda</dc:creator>
16
+ <dc:creator rdf:datatype="http://www.w3.org/2001/XMLSchema#anyURI">http://www.mendeley.com/profiles/janne-parkkila/</dc:creator>
17
+ <dc:description xml:lang="en">The Video Game Ontology is an ontology designed for describing video games and all the resources related to their game plays.</dc:description>
18
+ <dc:title xml:lang="en">The Video Game Ontology</dc:title>
19
+ <terms:created rdf:datatype="http://www.w3.org/2001/XMLSchema#date">2013-10-22</terms:created>
20
+ <terms:modified rdf:datatype="http://www.w3.org/2001/XMLSchema#date">2014-12-19</terms:modified>
21
+ <vann:preferredNamespacePrefix>vgo</vann:preferredNamespacePrefix>
22
+ <vann:preferredNamespaceUri>http://purl.org/net/VideoGameOntology#</vann:preferredNamespaceUri>
23
+ <rdfs:comment xml:lang="en">An ontology for describing video games and game plays. Created by Janne Parkkila, Filip Radulovic, Daniel Garijo and María Poveda.</rdfs:comment>
24
+ <owl:versionInfo>1.0</owl:versionInfo>
25
+ </owl:Ontology>
26
+
27
+
28
+
29
+ <!--
30
+ ///////////////////////////////////////////////////////////////////////////////////////
31
+ //
32
+ // Annotation properties
33
+ //
34
+ ///////////////////////////////////////////////////////////////////////////////////////
35
+ -->
36
+
37
+
38
+
39
+
40
+
41
+
42
+
43
+
44
+
45
+
46
+
47
+
48
+ <!--
49
+ ///////////////////////////////////////////////////////////////////////////////////////
50
+ //
51
+ // Object Properties
52
+ //
53
+ ///////////////////////////////////////////////////////////////////////////////////////
54
+ -->
55
+
56
+
57
+
58
+
59
+ <!-- http://purl.org/net/VideoGameOntology#hasAchievement -->
60
+
61
+ <owl:ObjectProperty rdf:about="http://purl.org/net/VideoGameOntology#hasAchievement">
62
+ <owl:inverseOf rdf:resource="http://purl.org/net/VideoGameOntology#isAchievementInGame"/>
63
+ <rdfs:domain rdf:resource="http://purl.org/net/VideoGameOntology#Game"/>
64
+ <rdfs:range rdf:resource="http://purl.org/net/VideoGameOntology#Achievement"/>
65
+ <rdfs:comment xml:lang="en">The vgo:hasAchievement property specifies that a game has a specific achievement. A game often contains more than one achievement that can be awarded to the players.</rdfs:comment>
66
+ <rdfs:comment xml:lang="en">optional</rdfs:comment>
67
+ <rdfs:label xml:lang="en">has achievement</rdfs:label>
68
+ </owl:ObjectProperty>
69
+
70
+
71
+
72
+ <!-- http://purl.org/net/VideoGameOntology#hasCharacter -->
73
+
74
+ <owl:ObjectProperty rdf:about="http://purl.org/net/VideoGameOntology#hasCharacter">
75
+ <owl:inverseOf rdf:resource="http://purl.org/net/VideoGameOntology#isCharacterInGame"/>
76
+ <rdfs:domain rdf:resource="http://purl.org/net/VideoGameOntology#Game"/>
77
+ <rdfs:range rdf:resource="http://purl.org/net/VideoGameOntology#Character"/>
78
+ <rdfs:comment xml:lang="en">The vgo:hasCharacter property specifies that a game has a specific character. A game can have more than one characters involved.</rdfs:comment>
79
+ <rdfs:comment xml:lang="en">optional</rdfs:comment>
80
+ <rdfs:label xml:lang="en">has character</rdfs:label>
81
+ </owl:ObjectProperty>
82
+
83
+
84
+
85
+ <!-- http://purl.org/net/VideoGameOntology#hasFeature -->
86
+
87
+ <owl:ObjectProperty rdf:about="http://purl.org/net/VideoGameOntology#hasFeature">
88
+ <rdfs:domain rdf:resource="http://purl.org/net/VideoGameOntology#Item"/>
89
+ <rdfs:range rdf:resource="http://purl.org/net/VideoGameOntology#Feature"/>
90
+ <rdfs:comment xml:lang="en">The vgo:hasFeature property indicates what is a vgo:Feature (or ability) of a particular vgo:Item. For example, a fire sword, a healing staff or boots of flight connects item to a feature it can have. An item with connection to potable feature would make the item potable.</rdfs:comment>
91
+ <rdfs:label xml:lang="en">has feature</rdfs:label>
92
+ </owl:ObjectProperty>
93
+
94
+
95
+
96
+ <!-- http://purl.org/net/VideoGameOntology#hasGameGenre -->
97
+
98
+ <owl:ObjectProperty rdf:about="http://purl.org/net/VideoGameOntology#hasGameGenre">
99
+ <rdfs:domain rdf:resource="http://purl.org/net/VideoGameOntology#Game"/>
100
+ <rdfs:range rdf:resource="http://purl.org/net/VideoGameOntology#Genre"/>
101
+ <rdfs:comment xml:lang="en">The vgo:hasGameGenre property specifies that a game belongs to a certain game genre. For example, Pong would be an arcade game and Mario a platformer.</rdfs:comment>
102
+ <rdfs:label xml:lang="en">has game genre</rdfs:label>
103
+ </owl:ObjectProperty>
104
+
105
+
106
+
107
+ <!-- http://purl.org/net/VideoGameOntology#hasItem -->
108
+
109
+ <owl:ObjectProperty rdf:about="http://purl.org/net/VideoGameOntology#hasItem">
110
+ <rdfs:domain rdf:resource="http://purl.org/net/VideoGameOntology#Game"/>
111
+ <rdfs:range rdf:resource="http://purl.org/net/VideoGameOntology#Item"/>
112
+ <rdfs:comment xml:lang="en">The vgo:hasItem property specifies that a game has a specific item. A game often contains more than one items.</rdfs:comment>
113
+ <rdfs:comment xml:lang="en">optional</rdfs:comment>
114
+ <rdfs:label xml:lang="en">has item</rdfs:label>
115
+ </owl:ObjectProperty>
116
+
117
+
118
+
119
+ <!-- http://purl.org/net/VideoGameOntology#hasLeaderboard -->
120
+
121
+ <owl:ObjectProperty rdf:about="http://purl.org/net/VideoGameOntology#hasLeaderboard">
122
+ <owl:inverseOf rdf:resource="http://purl.org/net/VideoGameOntology#isLeaderboardInGame"/>
123
+ <rdfs:domain rdf:resource="http://purl.org/net/VideoGameOntology#Game"/>
124
+ <rdfs:range rdf:resource="http://purl.org/net/VideoGameOntology#Leaderboard"/>
125
+ <rdfs:comment xml:lang="en">The vgo:hasLeaderboard specifies that a leaderboard belongs to a particular game. A game can have one or more leaderboards that keep track of ranking of the players. For example a leaderboard could be ranking of who has the most soccer game victories or who has the fastest lap in a Formula 1 game.</rdfs:comment>
126
+ <rdfs:label xml:lang="en">has leaderboard</rdfs:label>
127
+ </owl:ObjectProperty>
128
+
129
+
130
+
131
+ <!-- http://purl.org/net/VideoGameOntology#hasPlayingArea -->
132
+
133
+ <owl:ObjectProperty rdf:about="http://purl.org/net/VideoGameOntology#hasPlayingArea">
134
+ <rdfs:domain rdf:resource="http://purl.org/net/VideoGameOntology#Game"/>
135
+ <rdfs:range rdf:resource="http://purl.org/net/VideoGameOntology#PlayingArea"/>
136
+ <rdfs:comment xml:lang="en">The vgo:hasPlayingArea property asserts a gaming area to a specific game. In every game, the gameplay takes place in some playing area.</rdfs:comment>
137
+ <rdfs:label xml:lang="en">has playing area</rdfs:label>
138
+ </owl:ObjectProperty>
139
+
140
+
141
+
142
+ <!-- http://purl.org/net/VideoGameOntology#involvesCharacter -->
143
+
144
+ <owl:ObjectProperty rdf:about="http://purl.org/net/VideoGameOntology#involvesCharacter">
145
+ <owl:inverseOf rdf:resource="http://purl.org/net/VideoGameOntology#isCharacterInSession"/>
146
+ <rdfs:domain rdf:resource="http://purl.org/net/VideoGameOntology#Session"/>
147
+ <rdfs:range rdf:resource="http://purl.org/net/VideoGameOntology#Character"/>
148
+ <rdfs:comment xml:lang="en">The vgo:involvesCharacter property specifies that a session involves a specific character.</rdfs:comment>
149
+ <rdfs:comment xml:lang="en">optional</rdfs:comment>
150
+ <rdfs:label xml:lang="en">involves character</rdfs:label>
151
+ </owl:ObjectProperty>
152
+
153
+
154
+
155
+ <!-- http://purl.org/net/VideoGameOntology#involvesPlayer -->
156
+
157
+ <owl:ObjectProperty rdf:about="http://purl.org/net/VideoGameOntology#involvesPlayer">
158
+ <owl:inverseOf rdf:resource="http://purl.org/net/VideoGameOntology#isPlayerInSession"/>
159
+ <rdfs:domain rdf:resource="http://purl.org/net/VideoGameOntology#Session"/>
160
+ <rdfs:range rdf:resource="http://purl.org/net/VideoGameOntology#Player"/>
161
+ <rdfs:comment xml:lang="en">The vgo:involvesPlayer property specifies that a session involves a specific player. A session may involve more than one player.</rdfs:comment>
162
+ <rdfs:comment xml:lang="en">optional</rdfs:comment>
163
+ <rdfs:label xml:lang="en">involves player</rdfs:label>
164
+ </owl:ObjectProperty>
165
+
166
+
167
+
168
+ <!-- http://purl.org/net/VideoGameOntology#isAchievementInGame -->
169
+
170
+ <owl:ObjectProperty rdf:about="http://purl.org/net/VideoGameOntology#isAchievementInGame">
171
+ <rdfs:domain rdf:resource="http://purl.org/net/VideoGameOntology#Achievement"/>
172
+ <rdfs:range rdf:resource="http://purl.org/net/VideoGameOntology#Game"/>
173
+ <rdfs:comment xml:lang="en">The property vgo:isAchievementInGame asserts that a specific vgo:Achievement can be earned in a particular vgo:Game. An achievement must belong to a certain game.</rdfs:comment>
174
+ <rdfs:label xml:lang="en">is achievement in game</rdfs:label>
175
+ </owl:ObjectProperty>
176
+
177
+
178
+
179
+ <!-- http://purl.org/net/VideoGameOntology#isCharacterInGame -->
180
+
181
+ <owl:ObjectProperty rdf:about="http://purl.org/net/VideoGameOntology#isCharacterInGame">
182
+ <rdfs:domain rdf:resource="http://purl.org/net/VideoGameOntology#Character"/>
183
+ <rdfs:range rdf:resource="http://purl.org/net/VideoGameOntology#Game"/>
184
+ <rdfs:comment xml:lang="en">vgo:isCharacterInGame property describes the relation between a vgo:Character and a vgo:Game. a vgo:Character always belongs to a certain game.</rdfs:comment>
185
+ <rdfs:label xml:lang="en">is character in game</rdfs:label>
186
+ </owl:ObjectProperty>
187
+
188
+
189
+
190
+ <!-- http://purl.org/net/VideoGameOntology#isCharacterInSession -->
191
+
192
+ <owl:ObjectProperty rdf:about="http://purl.org/net/VideoGameOntology#isCharacterInSession">
193
+ <rdfs:domain rdf:resource="http://purl.org/net/VideoGameOntology#Character"/>
194
+ <rdfs:range rdf:resource="http://purl.org/net/VideoGameOntology#Session"/>
195
+ <rdfs:comment xml:lang="en">The vgo:isCharacterInSession property connects the vgo:Character to a vgo:Session. A character participates in a game session (e.g., a football match or a counter strike round) during a period of time. As players can have multiple characters, a character needs to be connected to the session, in order to know which of those characters participated in the certain session.</rdfs:comment>
196
+ <rdfs:label xml:lang="en">is character in session</rdfs:label>
197
+ </owl:ObjectProperty>
198
+
199
+
200
+
201
+ <!-- http://purl.org/net/VideoGameOntology#isEventAssociatedToPlayer -->
202
+
203
+ <owl:ObjectProperty rdf:about="http://purl.org/net/VideoGameOntology#isEventAssociatedToPlayer">
204
+ <rdfs:range rdf:resource="http://purl.org/net/VideoGameOntology#Player"/>
205
+ <rdfs:comment xml:lang="en">The vgo:isEventAssociatedToPlayer property asserts an event to a specific vgo:Player. A player may have caused an event to happen through the actions of his/her character and this property is used to connect the real person to the event.</rdfs:comment>
206
+ <rdfs:label xml:lang="en">is event associated to player</rdfs:label>
207
+ </owl:ObjectProperty>
208
+
209
+
210
+
211
+
212
+
213
+ <!-- http://purl.org/net/VideoGameOntology#isFriendWithPlayer -->
214
+
215
+ <owl:ObjectProperty rdf:about="http://purl.org/net/VideoGameOntology#isFriendWithPlayer">
216
+ <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#SymmetricProperty"/>
217
+ <rdfs:domain rdf:resource="http://purl.org/net/VideoGameOntology#Player"/>
218
+ <rdfs:range rdf:resource="http://purl.org/net/VideoGameOntology#Player"/>
219
+ <rdfs:comment xml:lang="en">The vgo:isFriendWithPlayer describes a connection between players. The property is used to model the friends a player has and with whom he might be playing games with. The friends of a player are not bound necessarily to particular game, but can be describe the friendly playing relationship in overall.</rdfs:comment>
220
+ <rdfs:label xml:lang="en">is friend with player</rdfs:label>
221
+ </owl:ObjectProperty>
222
+
223
+
224
+
225
+ <!-- http://purl.org/net/VideoGameOntology#isLeaderboardInGame -->
226
+
227
+ <owl:ObjectProperty rdf:about="http://purl.org/net/VideoGameOntology#isLeaderboardInGame">
228
+ <rdfs:domain rdf:resource="http://purl.org/net/VideoGameOntology#Leaderboard"/>
229
+ <rdfs:range rdf:resource="http://purl.org/net/VideoGameOntology#Game"/>
230
+ <rdfs:comment xml:lang="en">The vgo:isLeaderboardInGame property specifies that a leaderboard is from a specific game.</rdfs:comment>
231
+ <rdfs:comment xml:lang="en">optional</rdfs:comment>
232
+ <rdfs:label xml:lang="en">is leaderboard in game</rdfs:label>
233
+ </owl:ObjectProperty>
234
+
235
+
236
+
237
+ <!-- http://purl.org/net/VideoGameOntology#isPlayerInSession -->
238
+
239
+ <owl:ObjectProperty rdf:about="http://purl.org/net/VideoGameOntology#isPlayerInSession">
240
+ <rdfs:domain rdf:resource="http://purl.org/net/VideoGameOntology#Player"/>
241
+ <rdfs:range rdf:resource="http://purl.org/net/VideoGameOntology#Session"/>
242
+ <rdfs:comment xml:lang="en">The vgo:isPlayerInSession property connects vgo:Player to a specific vgo:Session. This property is used to keep track of the gameplay sessions the player has played and what has happened in those sessions. For example vgo:Player may have participated in a this can be a one round of Counter-Strike or played one hour session of mario.</rdfs:comment>
243
+ <rdfs:label xml:lang="en">is player in session</rdfs:label>
244
+ </owl:ObjectProperty>
245
+
246
+
247
+
248
+ <!-- http://purl.org/net/VideoGameOntology#isSessionInGame -->
249
+
250
+ <owl:ObjectProperty rdf:about="http://purl.org/net/VideoGameOntology#isSessionInGame">
251
+ <rdfs:domain rdf:resource="http://purl.org/net/VideoGameOntology#Session"/>
252
+ <rdfs:range rdf:resource="http://purl.org/net/VideoGameOntology#Game"/>
253
+ <rdfs:comment xml:lang="en">The vgo:isSessionInGame property links a vgo:Session to a certain vgo:Game. Each gameplay session must belong to a certain game.</rdfs:comment>
254
+ <rdfs:label xml:lang="en">is session in game</rdfs:label>
255
+ </owl:ObjectProperty>
256
+
257
+
258
+
259
+ <!-- http://purl.org/net/VideoGameOntology#livesIn -->
260
+
261
+ <owl:ObjectProperty rdf:about="http://purl.org/net/VideoGameOntology#livesIn">
262
+ <rdfs:domain rdf:resource="http://purl.org/net/VideoGameOntology#Player"/>
263
+ <rdfs:comment xml:lang="en">The vgo:livesIn describes the connection between a player and his place of existence in the real-world. A vgo:Player is connected to wgs84:SpatialThing as that has descriptions for places where people live and contains more detailed information of them, such as continents and regions.</rdfs:comment>
264
+ <rdfs:label xml:lang="en">lives in</rdfs:label>
265
+ </owl:ObjectProperty>
266
+
267
+
268
+
269
+ <!-- http://purl.org/net/VideoGameOntology#ownsAchievement -->
270
+
271
+ <owl:ObjectProperty rdf:about="http://purl.org/net/VideoGameOntology#ownsAchievement">
272
+ <rdfs:domain rdf:resource="http://purl.org/net/VideoGameOntology#Player"/>
273
+ <rdfs:range rdf:resource="http://purl.org/net/VideoGameOntology#Achievement"/>
274
+ <rdfs:comment xml:lang="en">The vgo:ownsAchievement links the vgo:Player to the particular vgo:Achievement earned in a game.</rdfs:comment>
275
+ <rdfs:label xml:lang="en">owns achievement</rdfs:label>
276
+ </owl:ObjectProperty>
277
+
278
+
279
+
280
+ <!-- http://purl.org/net/VideoGameOntology#ownsCharacter -->
281
+
282
+ <owl:ObjectProperty rdf:about="http://purl.org/net/VideoGameOntology#ownsCharacter">
283
+ <rdfs:domain rdf:resource="http://purl.org/net/VideoGameOntology#Player"/>
284
+ <rdfs:range rdf:resource="http://purl.org/net/VideoGameOntology#Character"/>
285
+ <rdfs:comment xml:lang="en">The vgo:ownsCharacter property asserts which characters are owned by a specific player. A player can have multiple characters in one game and this connection is used to define all the different characters a player could be playing. Even though a player deletes, trades or loses his/her character in any way, the connection can be kept to contain the player’s history of owned characters.</rdfs:comment>
286
+ <rdfs:label xml:lang="en">owns character</rdfs:label>
287
+ </owl:ObjectProperty>
288
+
289
+
290
+
291
+ <!-- http://purl.org/net/VideoGameOntology#ownsItem -->
292
+
293
+ <owl:ObjectProperty rdf:about="http://purl.org/net/VideoGameOntology#ownsItem">
294
+ <rdfs:domain rdf:resource="http://purl.org/net/VideoGameOntology#Character"/>
295
+ <rdfs:range rdf:resource="http://purl.org/net/VideoGameOntology#Item"/>
296
+ <rdfs:comment xml:lang="en">The vgo:ownsItem describes ownership of an item. A vgo:Item is always owned by a certain vgo:Character. A vgo:Character can own multiple vgo:Items and this relationship is used to keep track of the character’s owned items. Even though players may lose items, the vgo:ownsItem connection is still held with the item. This approach allows to keep track of character’s history of owned items.</rdfs:comment>
297
+ <rdfs:label xml:lang="en">owns item</rdfs:label>
298
+ </owl:ObjectProperty>
299
+
300
+
301
+
302
+ <!-- http://purl.org/net/VideoGameOntology#playsGame -->
303
+
304
+ <owl:ObjectProperty rdf:about="http://purl.org/net/VideoGameOntology#playsGame">
305
+ <rdfs:domain rdf:resource="http://purl.org/net/VideoGameOntology#Player"/>
306
+ <rdfs:range rdf:resource="http://purl.org/net/VideoGameOntology#Game"/>
307
+ <rdfs:comment xml:lang="en">the vgo:playsGame property asserts which games has the vgo:Player played at any point of time.</rdfs:comment>
308
+ <rdfs:label xml:lang="en">plays game</rdfs:label>
309
+ </owl:ObjectProperty>
310
+
311
+
312
+
313
+ <!-- http://purl.org/net/VideoGameOntology#purchasesGameOffering -->
314
+
315
+ <owl:ObjectProperty rdf:about="http://purl.org/net/VideoGameOntology#purchasesGameOffering">
316
+ <rdfs:domain rdf:resource="http://purl.org/net/VideoGameOntology#InAppPurchaseEvent"/>
317
+ <rdfs:range rdf:resource="http://purl.org/net/VideoGameOntology#GameProduct"/>
318
+ <rdfs:comment xml:lang="en">The vgo:purchasesGameOffering property aseerts a vgo:InAppPurchaseEvent to a specific vgo:GameProduct. This property describes what is purchased by the in-app purchase event that the player has done.</rdfs:comment>
319
+ <rdfs:label xml:lang="en">purchases game offering</rdfs:label>
320
+ </owl:ObjectProperty>
321
+
322
+
323
+
324
+ <!--
325
+ ///////////////////////////////////////////////////////////////////////////////////////
326
+ //
327
+ // Data properties
328
+ //
329
+ ///////////////////////////////////////////////////////////////////////////////////////
330
+ -->
331
+
332
+
333
+
334
+
335
+ <!-- http://purl.org/net/VideoGameOntology#endTime -->
336
+
337
+ <owl:DatatypeProperty rdf:about="http://purl.org/net/VideoGameOntology#endTime">
338
+ <rdfs:domain rdf:resource="http://purl.org/net/VideoGameOntology#Session"/>
339
+ <rdfs:range rdf:resource="http://www.w3.org/2001/XMLSchema#dateTime"/>
340
+ <rdfs:comment xml:lang="en">endTime describes the ending moment in time of a single Session. endTime connects the session to a DateTime value which holds the moment when the session ended.</rdfs:comment>
341
+ <rdfs:label xml:lang="en">end time</rdfs:label>
342
+ </owl:DatatypeProperty>
343
+
344
+
345
+
346
+ <!-- http://purl.org/net/VideoGameOntology#eventTime -->
347
+
348
+ <owl:DatatypeProperty rdf:about="http://purl.org/net/VideoGameOntology#eventTime">
349
+ <rdfs:range rdf:resource="http://www.w3.org/2001/XMLSchema#dateTime"/>
350
+ <rdfs:comment xml:lang="en">time describes the connection of InstantaneousEvent happening at a certain moment of time. time Conncets the event to a DateTime value that describes the moment when the event happened.</rdfs:comment>
351
+ <rdfs:label xml:lang="en">event time</rdfs:label>
352
+ </owl:DatatypeProperty>
353
+
354
+
355
+
356
+ <!-- http://purl.org/net/VideoGameOntology#releaseDate -->
357
+
358
+ <owl:DatatypeProperty rdf:about="http://purl.org/net/VideoGameOntology#releaseDate">
359
+ <rdfs:domain rdf:resource="http://purl.org/net/VideoGameOntology#Game"/>
360
+ <rdfs:range rdf:resource="http://www.w3.org/2001/XMLSchema#dateTime"/>
361
+ <rdfs:comment xml:lang="en">releaseDate connects a game to a time which describes the release date of the game.</rdfs:comment>
362
+ <rdfs:label xml:lang="en">release date</rdfs:label>
363
+ </owl:DatatypeProperty>
364
+
365
+
366
+
367
+ <!-- http://purl.org/net/VideoGameOntology#startTime -->
368
+
369
+ <owl:DatatypeProperty rdf:about="http://purl.org/net/VideoGameOntology#startTime">
370
+ <rdfs:domain rdf:resource="http://purl.org/net/VideoGameOntology#Session"/>
371
+ <rdfs:range rdf:resource="http://www.w3.org/2001/XMLSchema#dateTime"/>
372
+ <rdfs:comment xml:lang="en">startTime describes the starting moment in time of a single Session. startTime connects the session to a DateTime value which holds the moment when the session started.</rdfs:comment>
373
+ <rdfs:label xml:lang="en">start time</rdfs:label>
374
+ </owl:DatatypeProperty>
375
+
376
+
377
+
378
+ <!-- http://purl.org/net/VideoGameOntology#username -->
379
+
380
+ <owl:DatatypeProperty rdf:about="http://purl.org/net/VideoGameOntology#username">
381
+ <rdfs:domain rdf:resource="http://purl.org/net/VideoGameOntology#Player"/>
382
+ <rdfs:range rdf:resource="http://www.w3.org/2001/XMLSchema#string"/>
383
+ <rdfs:comment xml:lang="en">The username connects player to a text string which describes the username a player has.</rdfs:comment>
384
+ <rdfs:label xml:lang="en">username</rdfs:label>
385
+ </owl:DatatypeProperty>
386
+
387
+
388
+
389
+ <!--
390
+ ///////////////////////////////////////////////////////////////////////////////////////
391
+ //
392
+ // Classes
393
+ //
394
+ ///////////////////////////////////////////////////////////////////////////////////////
395
+ -->
396
+
397
+
398
+
399
+
400
+ <!-- http://purl.org/net/VideoGameOntology#Achievement -->
401
+
402
+ <owl:Class rdf:about="http://purl.org/net/VideoGameOntology#Achievement">
403
+ <rdfs:comment xml:lang="en">The vgo:Achievement is a reward gained in a game due to some event accomplished in the game. Achievements are commonly used in game industry to reward players for having accomplished tasks in the game.
404
+ This ontology defines various subclasses of vgo:Achievement, which are all based on the classification presented by Markus Montola et al. [Markus Montola, Timo Nummenmaa, Andrés Lucero, Marion Boberg, and Hannu Korhonen, 2009, “Applying game achievement systems to enhance user experience in a photo sharing service”, In Proceedings of the 13th International MindTrek Conference: Everyday Life in the Ubiquitous Era (MindTrek &apos;09)] http://dl.acm.org/citation.cfm?id=1621859</rdfs:comment>
405
+ <rdfs:label xml:lang="en">Achievement</rdfs:label>
406
+ </owl:Class>
407
+
408
+
409
+
410
+ <!-- http://purl.org/net/VideoGameOntology#Character -->
411
+
412
+ <owl:Class rdf:about="http://purl.org/net/VideoGameOntology#Character">
413
+ <rdfs:comment xml:lang="en">A vgo:Character is any actor that can exists in a game. A character can be a human-like creature as seen traditionally in video games. However, a character could also be a car, a paddle in game of Pong or spaceship of a space shooter game. This is often contextually related to the gameplay of a certain game. A character can be either controller by a player or by a computer.</rdfs:comment>
414
+ <rdfs:label xml:lang="en">Character</rdfs:label>
415
+ </owl:Class>
416
+
417
+
418
+
419
+ <!-- http://purl.org/net/VideoGameOntology#Collection -->
420
+
421
+ <owl:Class rdf:about="http://purl.org/net/VideoGameOntology#Collection">
422
+ <rdfs:subClassOf rdf:resource="http://purl.org/net/VideoGameOntology#Achievement"/>
423
+ <rdfs:comment xml:lang="en">The vgo:Collection type of achievement is typically rewarded from collecting an amount of certain items in a game. An example of vgo:Collection would be obtaining a full set of christmas clothes for a character to wear or collecting every possible flower in the game.</rdfs:comment>
424
+ <rdfs:label xml:lang="en">Collection</rdfs:label>
425
+ </owl:Class>
426
+
427
+
428
+
429
+ <!-- http://purl.org/net/VideoGameOntology#Completion -->
430
+
431
+ <owl:Class rdf:about="http://purl.org/net/VideoGameOntology#Completion">
432
+ <rdfs:subClassOf rdf:resource="http://purl.org/net/VideoGameOntology#Achievement"/>
433
+ <rdfs:comment xml:lang="en">The vgo:Completion type of achievement is usually rewarded from successfully completing a certain goal or subgoal in a game. An example of vgo:Completion would be to save a princess from a burning tower or completing all side-quests in a game.</rdfs:comment>
434
+ <rdfs:label xml:lang="en">Completion</rdfs:label>
435
+ </owl:Class>
436
+
437
+
438
+
439
+ <!-- http://purl.org/net/VideoGameOntology#Curiosity -->
440
+
441
+ <owl:Class rdf:about="http://purl.org/net/VideoGameOntology#Curiosity">
442
+ <rdfs:subClassOf rdf:resource="http://purl.org/net/VideoGameOntology#Achievement"/>
443
+ <rdfs:comment xml:lang="en">The vgo:Curiosity describes funny random things that can happen or be found in the game. An example could be jumping from the Eiffel tower without dying or following a comupter controlled character’s activities for one hour.</rdfs:comment>
444
+ <rdfs:label xml:lang="en">Curiosity</rdfs:label>
445
+ </owl:Class>
446
+
447
+
448
+
449
+ <!-- http://purl.org/net/VideoGameOntology#Fandom -->
450
+
451
+ <owl:Class rdf:about="http://purl.org/net/VideoGameOntology#Fandom">
452
+ <rdfs:subClassOf rdf:resource="http://purl.org/net/VideoGameOntology#Achievement"/>
453
+ <rdfs:comment xml:lang="en">The vgo:Fandom achievement is related to doing some true fan activities. An example of vgo:Fandom could be purchasing a collectors edition of the game or attending a fan gathering.</rdfs:comment>
454
+ <rdfs:label xml:lang="en">Fandom</rdfs:label>
455
+ </owl:Class>
456
+
457
+
458
+
459
+ <!-- http://purl.org/net/VideoGameOntology#Feature -->
460
+
461
+ <owl:Class rdf:about="http://purl.org/net/VideoGameOntology#Feature">
462
+ <rdfs:comment xml:lang="en">vgo:Feature describes an ability or characteristic. For example, a sword could have “damage dealing” ability and a bottle of water could be “potable”.</rdfs:comment>
463
+ <rdfs:label xml:lang="en">Feature</rdfs:label>
464
+ </owl:Class>
465
+
466
+
467
+
468
+ <!-- http://purl.org/net/VideoGameOntology#Game -->
469
+
470
+ <owl:Class rdf:about="http://purl.org/net/VideoGameOntology#Game">
471
+ <rdfs:comment xml:lang="en">The vgo:Game class describes a game product that can be played by a player.
472
+ Examples of games are Pong, Grand Theft Auto, Pokemon and Need for Speed.</rdfs:comment>
473
+ <rdfs:label xml:lang="en">Game</rdfs:label>
474
+ </owl:Class>
475
+
476
+
477
+
478
+ <!-- http://purl.org/net/VideoGameOntology#GameProduct -->
479
+
480
+ <owl:Class rdf:about="http://purl.org/net/VideoGameOntology#GameProduct">
481
+ <rdfs:subClassOf>
482
+ <owl:Class>
483
+ <owl:unionOf rdf:parseType="Collection">
484
+ <rdf:Description rdf:about="http://purl.org/net/VideoGameOntology#Achievement"/>
485
+ <rdf:Description rdf:about="http://purl.org/net/VideoGameOntology#Character"/>
486
+ <rdf:Description rdf:about="http://purl.org/net/VideoGameOntology#Game"/>
487
+ <rdf:Description rdf:about="http://purl.org/net/VideoGameOntology#Item"/>
488
+ <rdf:Description rdf:about="http://purl.org/net/VideoGameOntology#PlayingArea"/>
489
+ </owl:unionOf>
490
+ </owl:Class>
491
+ </rdfs:subClassOf>
492
+ <rdfs:comment xml:lang="en">A vgo:GameProduct is anything that is for sale inside a game. These can be either normal game items purchased with in-game currency or with real world money. An example of vgo:GameProduct could be a consumable health potion bought with real money, a better weapon or some visual improvement (e.g. Hats in Steam). Basically a game product can be anything, a character, an item or an achievement.
493
+ GameProduct is a subclass of Good Relations: ProductOrService &amp; schema:Product. Since vgo:GameProduct is a type of buyable product, it reuses the properties available in the schema and Good Relations, such as currency price, validity of the offer and so on.</rdfs:comment>
494
+ <rdfs:label xml:lang="en">game product</rdfs:label>
495
+ </owl:Class>
496
+
497
+
498
+
499
+ <!-- http://purl.org/net/VideoGameOntology#Genre -->
500
+
501
+ <owl:Class rdf:about="http://purl.org/net/VideoGameOntology#Genre">
502
+ <rdfs:comment xml:lang="en">The vgo:Genre class describes the genre a game belongs to. All of the games have at least one genre. Examples of this are RPG, Simulator and Adventure</rdfs:comment>
503
+ <rdfs:label xml:lang="en">Genre</rdfs:label>
504
+ </owl:Class>
505
+
506
+
507
+
508
+ <!-- http://purl.org/net/VideoGameOntology#HardMode -->
509
+
510
+ <owl:Class rdf:about="http://purl.org/net/VideoGameOntology#HardMode">
511
+ <rdfs:subClassOf rdf:resource="http://purl.org/net/VideoGameOntology#Achievement"/>
512
+ <rdfs:comment xml:lang="en">The vgo:HardMode achievement describes succeeding in a game on a high difficulty level. An example could be completing the “Doom” game on Nightmare difficulty level.</rdfs:comment>
513
+ <rdfs:label xml:lang="en">hard mode</rdfs:label>
514
+ </owl:Class>
515
+
516
+
517
+
518
+ <!-- http://purl.org/net/VideoGameOntology#InAppPurchaseEvent -->
519
+
520
+ <owl:Class rdf:about="http://purl.org/net/VideoGameOntology#InAppPurchaseEvent">
521
+ <rdfs:comment xml:lang="en">The vgo:InAppPurchaseEvent describes an event that is related to making a purchase with real money inside a game. This is a subclass of InstantaneousEvent because it happens at certain moment in time. An example of vgo:InAppPurchaseEvent would be unlocking secret levels with real money or purchasing better equipment with real money.</rdfs:comment>
522
+ <rdfs:label xml:lang="en">in-app purchase event</rdfs:label>
523
+ </owl:Class>
524
+
525
+
526
+
527
+ <!-- http://purl.org/net/VideoGameOntology#Item -->
528
+
529
+ <owl:Class rdf:about="http://purl.org/net/VideoGameOntology#Item">
530
+ <rdfs:comment xml:lang="en">A vgo:Item portrays any item that exists in a game. The item can either be just visual part of the game or a concrete usable item. As an example an item could be a drinkable potion, a magical sword or just a flower pot.</rdfs:comment>
531
+ <rdfs:label xml:lang="en">Item</rdfs:label>
532
+ </owl:Class>
533
+
534
+
535
+
536
+ <!-- http://purl.org/net/VideoGameOntology#Leaderboard -->
537
+
538
+ <owl:Class rdf:about="http://purl.org/net/VideoGameOntology#Leaderboard">
539
+ <rdfs:subClassOf rdf:resource="http://www.w3.org/2002/07/owl#Thing"/>
540
+ <rdfs:comment xml:lang="en">The vgo:Leaderboard class describes a ranking system of the players. There can be multiple rankings in a game, for example, the kill-count ranking of Modern Warfare or the best time listing of Formula 1 game.</rdfs:comment>
541
+ <rdfs:label xml:lang="en">Leaderboard</rdfs:label>
542
+ </owl:Class>
543
+
544
+
545
+
546
+ <!-- http://purl.org/net/VideoGameOntology#Loyalty -->
547
+
548
+ <owl:Class rdf:about="http://purl.org/net/VideoGameOntology#Loyalty">
549
+ <rdfs:subClassOf rdf:resource="http://purl.org/net/VideoGameOntology#Achievement"/>
550
+ <rdfs:comment xml:lang="en">The vgo:Loyalty achievement is used to give recognition to loyal players. For example, this could be an achievement received after subscribing to the game for a year.</rdfs:comment>
551
+ <rdfs:label xml:lang="en">Loyalty</rdfs:label>
552
+ </owl:Class>
553
+
554
+
555
+
556
+ <!-- http://purl.org/net/VideoGameOntology#Luck -->
557
+
558
+ <owl:Class rdf:about="http://purl.org/net/VideoGameOntology#Luck">
559
+ <rdfs:subClassOf rdf:resource="http://purl.org/net/VideoGameOntology#Achievement"/>
560
+ <rdfs:comment xml:lang="en">The vgo:Lucky describes an achievement that is awarded to the player in a lucky situation. An example of vgo:Lucky achievement would be winning in a lottery or throwing “Yahtzee” without re-rolling the dice.</rdfs:comment>
561
+ <rdfs:label xml:lang="en">Luck</rdfs:label>
562
+ </owl:Class>
563
+
564
+
565
+
566
+ <!-- http://purl.org/net/VideoGameOntology#Paragon -->
567
+
568
+ <owl:Class rdf:about="http://purl.org/net/VideoGameOntology#Paragon">
569
+ <rdfs:subClassOf rdf:resource="http://purl.org/net/VideoGameOntology#Achievement"/>
570
+ <rdfs:comment xml:lang="en">The vgo:Paragon is a rare achievement that is given only to limited number of players. An example of vgo:Paragon achievement could be the first player to finish a game under 10 hours or the first ten players to complete the game 100% through.</rdfs:comment>
571
+ <rdfs:label xml:lang="en">Paragon</rdfs:label>
572
+ </owl:Class>
573
+
574
+
575
+
576
+ <!-- http://purl.org/net/VideoGameOntology#Player -->
577
+
578
+ <owl:Class rdf:about="http://purl.org/net/VideoGameOntology#Player">
579
+ <rdfs:comment xml:lang="en">The vgo:Player describes the entity playing the game. This can be either a human or a computer. vgo:Player class is used to keep a profile of a certain playing entity and to connect all the games, achievements and characters he/she has. The vgo:Player is a subclass of foaf:Person as it contains all relative information of a certain person.</rdfs:comment>
580
+ <rdfs:label xml:lang="en">Player</rdfs:label>
581
+ </owl:Class>
582
+
583
+
584
+
585
+ <!-- http://purl.org/net/VideoGameOntology#PlayingArea -->
586
+
587
+ <owl:Class rdf:about="http://purl.org/net/VideoGameOntology#PlayingArea">
588
+ <rdfs:comment xml:lang="en">The vgo:PlayingArea is the description of a place where the gameplay takes place. All of the games have some kind of area where they are played in. An example of playing areas could be football field in soccer game, a race track from a racing game or a star system of EVE Online.</rdfs:comment>
589
+ <rdfs:label xml:lang="en">playing area</rdfs:label>
590
+ </owl:Class>
591
+
592
+
593
+
594
+ <!-- http://purl.org/net/VideoGameOntology#Session -->
595
+
596
+ <owl:Class rdf:about="http://purl.org/net/VideoGameOntology#Session">
597
+ <rdfs:subClassOf rdf:resource="http://www.w3.org/2002/07/owl#Thing"/>
598
+ <rdfs:comment xml:lang="en">The vgo:Session class describes a session of gameplay. A session can be a single round of chess, a round of Counter-Strike, one half-time of soccer or one race of Formula 1. vgo:Session class can be used to store gameplay information, especially for analytical reasons.</rdfs:comment>
599
+ <rdfs:label xml:lang="en">Session</rdfs:label>
600
+ </owl:Class>
601
+
602
+
603
+
604
+ <!-- http://purl.org/net/VideoGameOntology#SpecialPlayStyle -->
605
+
606
+ <owl:Class rdf:about="http://purl.org/net/VideoGameOntology#SpecialPlayStyle">
607
+ <rdfs:subClassOf rdf:resource="http://purl.org/net/VideoGameOntology#Achievement"/>
608
+ <rdfs:comment xml:lang="en">The vgo:SpecialPlayStyle achievement is awarded to players after playing a game in special fashion. Often this is something harder than the regular play and requires more player experience to excel in it. An example of vgo:SpecialPlayStyle could be to complete a game without any violence or against a timer.</rdfs:comment>
609
+ <rdfs:label xml:lang="en">special play style</rdfs:label>
610
+ </owl:Class>
611
+
612
+
613
+
614
+ <!-- http://purl.org/net/VideoGameOntology#Tutorial -->
615
+
616
+ <owl:Class rdf:about="http://purl.org/net/VideoGameOntology#Tutorial">
617
+ <rdfs:subClassOf rdf:resource="http://purl.org/net/VideoGameOntology#Achievement"/>
618
+ <rdfs:comment xml:lang="en">The vgo:Tutorial achievement is awarded to a player for trying out various features of the game. This is often related to learning how to play the game, how the controls work and how the game logic works. An example of vgo:Tutorial could be testing out newly gained special equipment or just playing through the in-game tutorial in the beginning.</rdfs:comment>
619
+ <rdfs:label xml:lang="en">Tutorial</rdfs:label>
620
+ </owl:Class>
621
+
622
+
623
+
624
+ <!-- http://purl.org/net/VideoGameOntology#Veteran -->
625
+
626
+ <owl:Class rdf:about="http://purl.org/net/VideoGameOntology#Veteran">
627
+ <rdfs:subClassOf rdf:resource="http://purl.org/net/VideoGameOntology#Achievement"/>
628
+ <rdfs:comment xml:lang="en">The vgo:Veteran achievement is an award that is given for accumulating a lot of play hours or game actions. For example, vgo:Veteran could be playing thousand hours of World of Tanks or making 100 goals in ice hockey game.</rdfs:comment>
629
+ <rdfs:label xml:lang="en">Veteran</rdfs:label>
630
+ </owl:Class>
631
+
632
+
633
+
634
+ <!-- http://purl.org/net/VideoGameOntology#Virtuosity -->
635
+
636
+ <owl:Class rdf:about="http://purl.org/net/VideoGameOntology#Virtuosity">
637
+ <rdfs:subClassOf rdf:resource="http://purl.org/net/VideoGameOntology#Achievement"/>
638
+ <rdfs:comment xml:lang="en">The vgo:Virtuosity describes an achievement that is awarded for playing masterfully in the game. Examples of virtuous play could be finishing the game without saving at all, dying zero times or preventing an opposing team from scoring any goals in a soccer game.</rdfs:comment>
639
+ <rdfs:label xml:lang="en">Virtuosity</rdfs:label>
640
+ </owl:Class>
641
+
642
+
643
+
644
+ <!-- http://www.w3.org/2002/07/owl#Thing -->
645
+
646
+ <owl:Class rdf:about="http://www.w3.org/2002/07/owl#Thing"/>
647
+ </rdf:RDF>
648
+
649
+
650
+
651
+ <!-- Generated by the OWL API (version 4.5.13) https://github.com/owlcs/owlapi -->
652
+
water/SAREFWater_CQs_Annoatations.xlsx ADDED
Binary file (35.2 kB). View file
 
water/cq_to_onto_water.json ADDED
@@ -0,0 +1,86 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ [
2
+ {
3
+ "id": "CQ01",
4
+ "value": "Which assets compose a water distribution infrastructure?"
5
+ },
6
+ {
7
+ "id": "CQ04",
8
+ "value": "Which types of sensors are used in water infrastructures?"
9
+ },
10
+ {
11
+ "id": "CQ05",
12
+ "value": "Which types of actuators are used in water infrastructures?"
13
+ },
14
+ {
15
+ "id": "CQ06",
16
+ "value": "A water meter is a device that measures different aspects of a water infrastructure."
17
+ },
18
+ {
19
+ "id": "CQ08",
20
+ "value": "What is the fabrication number of the water meter?"
21
+ },
22
+ {
23
+ "id": "CQ09",
24
+ "value": "What are the manufacturer and the model of the water meter?"
25
+ },
26
+ {
27
+ "id": "CQ10",
28
+ "value": "What is the version of the water meter?"
29
+ },
30
+ {
31
+ "id": "CQ11",
32
+ "value": "What is the hardware version number of the water meter?"
33
+ },
34
+ {
35
+ "id": "CQ12",
36
+ "value": "What firmware version is the water meter using?"
37
+ },
38
+ {
39
+ "id": "CQ18",
40
+ "value": "What is the power of the water meter?"
41
+ },
42
+ {
43
+ "id": "CQ19",
44
+ "value": "What is the radio frequency level of the water meter?"
45
+ },
46
+ {
47
+ "id": "CQ20",
48
+ "value": "What is the geolocation of the water meter?"
49
+ },
50
+ {
51
+ "id": "CQ25",
52
+ "value": "Water meters can provide measurements according to different temporal settings."
53
+ },
54
+ {
55
+ "id": "CQ33",
56
+ "value": "What are the physical properties of water?"
57
+ },
58
+ {
59
+ "id": "CQ34",
60
+ "value": "What are the chemical properties of water?"
61
+ },
62
+ {
63
+ "id": "CQ37",
64
+ "value": "Which water indicators are defined for Burgos?"
65
+ },
66
+ {
67
+ "id": "CQ38",
68
+ "value": "What is the start date and time of the tariff in use in the water meter?"
69
+ },
70
+ {
71
+ "id": "CQ39",
72
+ "value": "What is the duration of the current tariff of the water meter?"
73
+ },
74
+ {
75
+ "id": "CQ40",
76
+ "value": "What is the tariff period of the water meter?"
77
+ },
78
+ {
79
+ "id": "CQ42",
80
+ "value": "What is the billing date of the water meter?"
81
+ },
82
+ {
83
+ "id": "CQ43",
84
+ "value": "What is the billing date period of the water meter?"
85
+ }
86
+ ]
water/cq_to_terms_water.json ADDED
@@ -0,0 +1,235 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ [
2
+ {
3
+ "id": "CQ01",
4
+ "question": "Which assets compose a water distribution infrastructure?",
5
+ "classes": [
6
+ "Water asset",
7
+ "Water Infrastructure"
8
+ ],
9
+ "properties": [
10
+ ""
11
+ ]
12
+ },
13
+ {
14
+ "id": "CQ04",
15
+ "question": "Which types of sensors are used in water infrastructures?",
16
+ "classes": [
17
+ "Sensor",
18
+ "Water Infrastructure"
19
+ ],
20
+ "properties": [
21
+ "has measurement"
22
+ ]
23
+ },
24
+ {
25
+ "id": "CQ05",
26
+ "question": "Which types of actuators are used in water infrastructures?",
27
+ "classes": [
28
+ "Actuator",
29
+ "Water Infrastructure"
30
+ ],
31
+ "properties": [
32
+ "has measurement"
33
+ ]
34
+ },
35
+ {
36
+ "id": "CQ06",
37
+ "question": "A water meter is a device that measures different aspects of a water infrastructure.",
38
+ "classes": [
39
+ "Device",
40
+ "Meter",
41
+ "Water Infrastructure",
42
+ "Water meter"
43
+ ],
44
+ "properties": [
45
+ "makes measurement"
46
+ ]
47
+ },
48
+ {
49
+ "id": "CQ08",
50
+ "question": "What is the fabrication number of the water meter?",
51
+ "classes": [
52
+ "Meter",
53
+ "Water meter"
54
+ ],
55
+ "properties": [
56
+ "has fabrication number"
57
+ ]
58
+ },
59
+ {
60
+ "id": "CQ09",
61
+ "question": "What are the manufacturer and the model of the water meter?",
62
+ "classes": [
63
+ "Meter",
64
+ "Water meter"
65
+ ],
66
+ "properties": [
67
+ "has manufacturer",
68
+ "has model"
69
+ ]
70
+ },
71
+ {
72
+ "id": "CQ10",
73
+ "question": "What is the version of the water meter?",
74
+ "classes": [
75
+ "Meter",
76
+ "Water meter"
77
+ ],
78
+ "properties": [
79
+ "has version"
80
+ ]
81
+ },
82
+ {
83
+ "id": "CQ11",
84
+ "question": "What is the hardware version number of the water meter?",
85
+ "classes": [
86
+ "Meter",
87
+ "Water meter"
88
+ ],
89
+ "properties": [
90
+ "has hardware version"
91
+ ]
92
+ },
93
+ {
94
+ "id": "CQ12",
95
+ "question": "What firmware version is the water meter using?",
96
+ "classes": [
97
+ "Meter",
98
+ "Water meter"
99
+ ],
100
+ "properties": [
101
+ "has firmware version"
102
+ ]
103
+ },
104
+ {
105
+ "id": "CQ18",
106
+ "question": "What is the power of the water meter?",
107
+ "classes": [
108
+ "Meter",
109
+ "Water meter"
110
+ ],
111
+ "properties": [
112
+ "requires power"
113
+ ]
114
+ },
115
+ {
116
+ "id": "CQ19",
117
+ "question": "What is the radio frequency level of the water meter?",
118
+ "classes": [
119
+ "Meter",
120
+ "Water meter"
121
+ ],
122
+ "properties": [
123
+ "operates at radio frequency"
124
+ ]
125
+ },
126
+ {
127
+ "id": "CQ20",
128
+ "question": "What is the geolocation of the water meter?",
129
+ "classes": [
130
+ "Meter",
131
+ "Water meter"
132
+ ],
133
+ "properties": [
134
+ "has Geometry"
135
+ ]
136
+ },
137
+ {
138
+ "id": "CQ25",
139
+ "question": "Water meters can provide measurements according to different temporal settings.",
140
+ "classes": [
141
+ "Measurement",
142
+ "Meter",
143
+ "Temporal entity",
144
+ "Water meter"
145
+ ],
146
+ "properties": [
147
+ "makes measurement"
148
+ ]
149
+ },
150
+ {
151
+ "id": "CQ34",
152
+ "question": "What are the chemical properties of water?",
153
+ "classes": [
154
+ "Water",
155
+ "ChemicalProperty",
156
+ "Water property"
157
+ ],
158
+ "properties": [
159
+ "has property"
160
+ ]
161
+ },
162
+ {
163
+ "id": "CQ37",
164
+ "question": "Which water indicators are defined for Burgos?",
165
+ "classes": [
166
+ "City",
167
+ "Key Performance Indicator"
168
+ ],
169
+ "properties": [
170
+ "has key performance indicator"
171
+ ]
172
+ },
173
+ {
174
+ "id": "CQ38",
175
+ "question": "What is the start date and time of the tariff in use in the water meter?",
176
+ "classes": [
177
+ "Tariff",
178
+ "Water meter"
179
+ ],
180
+ "properties": [
181
+ "applies to",
182
+ "has start timestamp",
183
+ "has timestamp"
184
+ ]
185
+ },
186
+ {
187
+ "id": "CQ39",
188
+ "question": "What is the duration of the current tariff of the water meter?",
189
+ "classes": [
190
+ "Tariff",
191
+ "Water meter"
192
+ ],
193
+ "properties": [
194
+ "applies to",
195
+ "has duration"
196
+ ]
197
+ },
198
+ {
199
+ "id": "CQ40",
200
+ "question": "What is the tariff period of the water meter?",
201
+ "classes": [
202
+ "Tariff",
203
+ "Water meter"
204
+ ],
205
+ "properties": [
206
+ "applies to",
207
+ "has period"
208
+ ]
209
+ },
210
+ {
211
+ "id": "CQ42",
212
+ "question": "What is the billing date of the water meter?",
213
+ "classes": [
214
+ "Tariff",
215
+ "Water meter"
216
+ ],
217
+ "properties": [
218
+ "applies to",
219
+ "has billing date"
220
+ ]
221
+ },
222
+ {
223
+ "id": "CQ43",
224
+ "question": "What is the billing date period of the water meter?",
225
+ "classes": [
226
+ "Tariff",
227
+ "Water meter"
228
+ ],
229
+ "properties": [
230
+ "applies to",
231
+ "has billing date",
232
+ "has billing period"
233
+ ]
234
+ }
235
+ ]
water/sub_water.owl ADDED
@@ -0,0 +1,1365 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?xml version="1.0"?>
2
+ <rdf:RDF xmlns="https://saref.etsi.org/saref4watr/"
3
+ xml:base="https://saref.etsi.org/saref4watr/"
4
+ xmlns:owl="http://www.w3.org/2002/07/owl#"
5
+ xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
6
+ xmlns:xml="http://www.w3.org/XML/1998/namespace"
7
+ xmlns:xsd="http://www.w3.org/2001/XMLSchema#"
8
+ xmlns:rdfs="http://www.w3.org/2000/01/rdf-schema#"
9
+ xmlns:vann="http://purl.org/vocab/vann/"
10
+ xmlns:terms="http://purl.org/dc/terms/"
11
+ xmlns:schema="http://schema.org/">
12
+ <owl:Ontology rdf:about="https://saref.etsi.org/saref4watr/">
13
+ <owl:versionIRI rdf:resource="https://saref.etsi.org/saref4watr/v1.1.1/"/>
14
+ <terms:creator rdf:resource="http://www.garcia-castro.com/foaf.rdf#me"/>
15
+ <terms:description xml:lang="en">This ontology extends the SAREF ontology for the water domain. This work has been developed in the context of the STF 566, which was established with the goal to create three SAREF extensions, one of them for the water domain.</terms:description>
16
+ <terms:issued rdf:datatype="http://www.w3.org/2001/XMLSchema#date">2020-04-01</terms:issued>
17
+ <terms:license rdf:resource="https://forge.etsi.org/etsi-software-license"/>
18
+ <terms:modified rdf:datatype="http://www.w3.org/2001/XMLSchema#date">2020-06-03</terms:modified>
19
+ <terms:publisher rdf:resource="https://www.etsi.org/"/>
20
+ <terms:source rdf:resource="https://saref.etsi.org/sources/saref4watr/"/>
21
+ <terms:title xml:lang="en">SAREF extension for water</terms:title>
22
+ <vann:preferredNamespacePrefix>s4watr</vann:preferredNamespacePrefix>
23
+ <vann:preferredNamespaceUri>https://saref.etsi.org/saref4watr/</vann:preferredNamespaceUri>
24
+ <rdfs:seeAlso rdf:resource="https://www.etsi.org/deliver/etsi_ts/103400_103499/10341010/01.01.01_60/ts_10341010v010101p.pdf"/>
25
+ <owl:versionInfo>v1.1.1</owl:versionInfo>
26
+ </owl:Ontology>
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
+ // Datatypes
55
+ //
56
+ ///////////////////////////////////////////////////////////////////////////////////////
57
+ -->
58
+
59
+
60
+
61
+
62
+ <!-- http://www.w3.org/2001/XMLSchema#gDay -->
63
+
64
+ <rdfs:Datatype rdf:about="http://www.w3.org/2001/XMLSchema#gDay"/>
65
+
66
+
67
+
68
+ <!--
69
+ ///////////////////////////////////////////////////////////////////////////////////////
70
+ //
71
+ // Object Properties
72
+ //
73
+ ///////////////////////////////////////////////////////////////////////////////////////
74
+ -->
75
+
76
+
77
+
78
+
79
+ <!-- http://www.opengis.net/ont/geosparql#hasGeometry -->
80
+
81
+ <owl:ObjectProperty rdf:about="http://www.opengis.net/ont/geosparql#hasGeometry">
82
+ <rdfs:isDefinedBy rdf:resource="http://www.opengis.net/ont/geosparql#"/>
83
+ <rdfs:label xml:lang="en">hasGeometry</rdfs:label>
84
+ </owl:ObjectProperty>
85
+
86
+
87
+
88
+ <!-- https://saref.etsi.org/core/hasMeasurement -->
89
+
90
+ <owl:ObjectProperty rdf:about="https://saref.etsi.org/core/hasMeasurement">
91
+ <rdfs:isDefinedBy rdf:resource="https://saref.etsi.org/core/"/>
92
+ <rdfs:label xml:lang="en">has measurement</rdfs:label>
93
+ </owl:ObjectProperty>
94
+
95
+
96
+
97
+ <!-- https://saref.etsi.org/core/hasProperty -->
98
+
99
+ <owl:ObjectProperty rdf:about="https://saref.etsi.org/core/hasProperty">
100
+ <rdfs:isDefinedBy rdf:resource="https://saref.etsi.org/core/"/>
101
+ <rdfs:label xml:lang="en">has property</rdfs:label>
102
+ </owl:ObjectProperty>
103
+
104
+
105
+
106
+ <!-- https://saref.etsi.org/core/isMeasuredByDevice -->
107
+
108
+ <owl:ObjectProperty rdf:about="https://saref.etsi.org/core/isMeasuredByDevice">
109
+ <rdfs:isDefinedBy rdf:resource="https://saref.etsi.org/core/"/>
110
+ <rdfs:label xml:lang="en">is measured by device</rdfs:label>
111
+ </owl:ObjectProperty>
112
+
113
+
114
+
115
+ <!-- https://saref.etsi.org/core/makesMeasurement -->
116
+
117
+ <owl:ObjectProperty rdf:about="https://saref.etsi.org/core/makesMeasurement">
118
+ <owl:inverseOf rdf:resource="https://saref.etsi.org/core/measurementMadeBy"/>
119
+ <rdfs:isDefinedBy rdf:resource="https://saref.etsi.org/core/"/>
120
+ <rdfs:label xml:lang="en">makes measurement</rdfs:label>
121
+ </owl:ObjectProperty>
122
+
123
+
124
+
125
+ <!-- https://saref.etsi.org/core/measurementMadeBy -->
126
+
127
+ <owl:ObjectProperty rdf:about="https://saref.etsi.org/core/measurementMadeBy">
128
+ <rdfs:isDefinedBy rdf:resource="https://saref.etsi.org/core/"/>
129
+ <rdfs:label xml:lang="en">measurement made by</rdfs:label>
130
+ </owl:ObjectProperty>
131
+
132
+
133
+
134
+ <!-- https://saref.etsi.org/saref4city/hasKPI -->
135
+
136
+ <owl:ObjectProperty rdf:about="https://saref.etsi.org/saref4city/hasKPI">
137
+ <owl:inverseOf rdf:resource="https://saref.etsi.org/saref4city/isKPIOf"/>
138
+ <rdfs:isDefinedBy rdf:resource="https://saref.etsi.org/saref4city/"/>
139
+ <rdfs:label xml:lang="en">has key performance indicator</rdfs:label>
140
+ </owl:ObjectProperty>
141
+
142
+
143
+
144
+ <!-- https://saref.etsi.org/saref4city/isKPIOf -->
145
+
146
+ <owl:ObjectProperty rdf:about="https://saref.etsi.org/saref4city/isKPIOf"/>
147
+
148
+
149
+
150
+ <!-- https://saref.etsi.org/saref4watr/appliesTo -->
151
+
152
+ <owl:ObjectProperty rdf:about="https://saref.etsi.org/saref4watr/appliesTo">
153
+ <rdfs:domain rdf:resource="https://saref.etsi.org/saref4watr/Tariff"/>
154
+ <rdfs:range rdf:resource="https://saref.etsi.org/saref4watr/WaterMeter"/>
155
+ <rdfs:comment xml:lang="en">The water meter to which a tariff applies to.</rdfs:comment>
156
+ <rdfs:label xml:lang="en">applies to</rdfs:label>
157
+ </owl:ObjectProperty>
158
+
159
+
160
+
161
+ <!-- https://saref.etsi.org/saref4watr/featureIsMeasuredByDevice -->
162
+
163
+ <owl:ObjectProperty rdf:about="https://saref.etsi.org/saref4watr/featureIsMeasuredByDevice">
164
+ <rdfs:domain rdf:resource="https://saref.etsi.org/core/FeatureOfInterest"/>
165
+ <rdfs:range rdf:resource="https://saref.etsi.org/core/Device"/>
166
+ <rdfs:comment xml:lang="en">A relationship specifying the devices that measure a feature of interest.</rdfs:comment>
167
+ <rdfs:label xml:lang="en">feature is measured by device</rdfs:label>
168
+ </owl:ObjectProperty>
169
+
170
+
171
+
172
+ <!-- https://saref.etsi.org/saref4watr/hasBillingPeriod -->
173
+
174
+ <owl:ObjectProperty rdf:about="https://saref.etsi.org/saref4watr/hasBillingPeriod">
175
+ <rdfs:domain rdf:resource="https://saref.etsi.org/saref4watr/Tariff"/>
176
+ <rdfs:range rdf:resource="http://www.w3.org/2006/time#TemporalDuration"/>
177
+ <rdfs:comment xml:lang="en">The billing period of a tariff.</rdfs:comment>
178
+ <rdfs:label xml:lang="en">has billing period</rdfs:label>
179
+ </owl:ObjectProperty>
180
+
181
+
182
+
183
+ <!-- https://saref.etsi.org/saref4watr/hasDuration -->
184
+
185
+ <owl:ObjectProperty rdf:about="https://saref.etsi.org/saref4watr/hasDuration">
186
+ <rdfs:domain rdf:resource="https://saref.etsi.org/saref4watr/Tariff"/>
187
+ <rdfs:range rdf:resource="http://www.w3.org/2006/time#TemporalDuration"/>
188
+ <rdfs:comment xml:lang="en">The duration of a tariff.</rdfs:comment>
189
+ <rdfs:label xml:lang="en">has duration</rdfs:label>
190
+ </owl:ObjectProperty>
191
+
192
+
193
+
194
+ <!-- https://saref.etsi.org/saref4watr/hasPeriod -->
195
+
196
+ <owl:ObjectProperty rdf:about="https://saref.etsi.org/saref4watr/hasPeriod">
197
+ <rdfs:domain rdf:resource="https://saref.etsi.org/saref4watr/Tariff"/>
198
+ <rdfs:range rdf:resource="http://www.w3.org/2006/time#TemporalDuration"/>
199
+ <rdfs:comment xml:lang="en">The period of a tariff.</rdfs:comment>
200
+ <rdfs:label xml:lang="en">has period</rdfs:label>
201
+ </owl:ObjectProperty>
202
+
203
+
204
+
205
+ <!-- https://saref.etsi.org/saref4watr/hasPhenomenonTime -->
206
+
207
+ <owl:ObjectProperty rdf:about="https://saref.etsi.org/saref4watr/hasPhenomenonTime">
208
+ <rdfs:domain rdf:resource="https://saref.etsi.org/core/Measurement"/>
209
+ <rdfs:range rdf:resource="http://www.w3.org/2006/time#TemporalEntity"/>
210
+ <rdfs:comment xml:lang="en">The time for which the value of a measurement applies to the feature of interest.</rdfs:comment>
211
+ <rdfs:label xml:lang="en">has phenomenon time</rdfs:label>
212
+ </owl:ObjectProperty>
213
+
214
+
215
+
216
+ <!--
217
+ ///////////////////////////////////////////////////////////////////////////////////////
218
+ //
219
+ // Data properties
220
+ //
221
+ ///////////////////////////////////////////////////////////////////////////////////////
222
+ -->
223
+
224
+
225
+
226
+
227
+ <!-- https://saref.etsi.org/core/hasManufacturer -->
228
+
229
+ <owl:DatatypeProperty rdf:about="https://saref.etsi.org/core/hasManufacturer">
230
+ <rdfs:comment xml:lang="en">A relationship identifying the manufacturer of an entity (e.g., device)</rdfs:comment>
231
+ <rdfs:isDefinedBy rdf:resource="https://saref.etsi.org/core/"/>
232
+ <rdfs:label xml:lang="en">has manufacturer</rdfs:label>
233
+ </owl:DatatypeProperty>
234
+
235
+
236
+
237
+ <!-- https://saref.etsi.org/core/hasModel -->
238
+
239
+ <owl:DatatypeProperty rdf:about="https://saref.etsi.org/core/hasModel">
240
+ <rdfs:comment xml:lang="en">A relationship identifying the model of an entity (e.g., device)</rdfs:comment>
241
+ <rdfs:isDefinedBy rdf:resource="https://saref.etsi.org/core/"/>
242
+ <rdfs:label xml:lang="en">has model</rdfs:label>
243
+ </owl:DatatypeProperty>
244
+
245
+
246
+
247
+ <!-- https://saref.etsi.org/core/hasTimestamp -->
248
+
249
+ <owl:DatatypeProperty rdf:about="https://saref.etsi.org/core/hasTimestamp">
250
+ <rdfs:isDefinedBy rdf:resource="https://saref.etsi.org/core/"/>
251
+ <rdfs:label xml:lang="en">has timestamp</rdfs:label>
252
+ </owl:DatatypeProperty>
253
+
254
+
255
+
256
+ <!-- https://saref.etsi.org/saref4watr/hasFabricationNumber -->
257
+
258
+ <owl:DatatypeProperty rdf:about="https://saref.etsi.org/saref4watr/hasFabricationNumber">
259
+ <rdfs:range rdf:resource="http://www.w3.org/2000/01/rdf-schema#Literal"/>
260
+ <rdfs:comment xml:lang="en">The fabrication number of a device.</rdfs:comment>
261
+ <rdfs:label xml:lang="en">has fabrication number</rdfs:label>
262
+ </owl:DatatypeProperty>
263
+
264
+
265
+
266
+ <!-- https://saref.etsi.org/saref4watr/hasFirmwareVersion -->
267
+
268
+ <owl:DatatypeProperty rdf:about="https://saref.etsi.org/saref4watr/hasFirmwareVersion">
269
+ <rdfs:range rdf:resource="http://www.w3.org/2000/01/rdf-schema#Literal"/>
270
+ <rdfs:comment xml:lang="en">The firmware version of a device.</rdfs:comment>
271
+ <rdfs:label xml:lang="en">has firmware version</rdfs:label>
272
+ </owl:DatatypeProperty>
273
+
274
+
275
+
276
+ <!-- https://saref.etsi.org/saref4watr/hasHardwareVersion -->
277
+
278
+ <owl:DatatypeProperty rdf:about="https://saref.etsi.org/saref4watr/hasHardwareVersion">
279
+ <rdfs:range rdf:resource="http://www.w3.org/2000/01/rdf-schema#Literal"/>
280
+ <rdfs:comment xml:lang="en">The hardware version of a device.</rdfs:comment>
281
+ <rdfs:label xml:lang="en">has hardware version</rdfs:label>
282
+ </owl:DatatypeProperty>
283
+
284
+
285
+
286
+ <!-- https://saref.etsi.org/saref4watr/hasStartTimestamp -->
287
+
288
+ <owl:DatatypeProperty rdf:about="https://saref.etsi.org/saref4watr/hasStartTimestamp">
289
+ <rdfs:domain rdf:resource="https://saref.etsi.org/saref4watr/Tariff"/>
290
+ <rdfs:range rdf:resource="http://www.w3.org/2001/XMLSchema#dateTime"/>
291
+ <rdfs:comment xml:lang="en">The start date and time of a tariff.</rdfs:comment>
292
+ <rdfs:label xml:lang="en">has start timestamp</rdfs:label>
293
+ </owl:DatatypeProperty>
294
+
295
+
296
+
297
+ <!-- https://saref.etsi.org/saref4watr/hasVersion -->
298
+
299
+ <owl:DatatypeProperty rdf:about="https://saref.etsi.org/saref4watr/hasVersion">
300
+ <rdfs:range rdf:resource="http://www.w3.org/2000/01/rdf-schema#Literal"/>
301
+ <rdfs:comment xml:lang="en">The version of a device.</rdfs:comment>
302
+ <rdfs:label xml:lang="en">has version</rdfs:label>
303
+ </owl:DatatypeProperty>
304
+
305
+
306
+
307
+ <!-- https://saref.etsi.org/saref4watr/operatesAtRadioFrequency -->
308
+
309
+ <owl:DatatypeProperty rdf:about="https://saref.etsi.org/saref4watr/operatesAtRadioFrequency">
310
+ <rdfs:comment xml:lang="en">The radio frequency at which a device operates.</rdfs:comment>
311
+ <rdfs:label xml:lang="en">operates at radio frequency</rdfs:label>
312
+ </owl:DatatypeProperty>
313
+
314
+
315
+
316
+ <!-- https://saref.etsi.org/saref4watr/requiresPower -->
317
+
318
+ <owl:DatatypeProperty rdf:about="https://saref.etsi.org/saref4watr/requiresPower">
319
+ <rdfs:comment xml:lang="en">The power required by a device.</rdfs:comment>
320
+ <rdfs:label xml:lang="en">requires power</rdfs:label>
321
+ </owl:DatatypeProperty>
322
+
323
+
324
+
325
+ <!--
326
+ ///////////////////////////////////////////////////////////////////////////////////////
327
+ //
328
+ // Classes
329
+ //
330
+ ///////////////////////////////////////////////////////////////////////////////////////
331
+ -->
332
+
333
+
334
+
335
+
336
+ <!-- http://www.opengis.net/ont/geosparql#Geometry -->
337
+
338
+ <owl:Class rdf:about="http://www.opengis.net/ont/geosparql#Geometry">
339
+ <rdfs:comment xml:lang="en">The class represents the top-level geometry type. This class is equivalent to the UML class GM_Object defined in ISO 19107, and it is superclass of all geometry types.</rdfs:comment>
340
+ <rdfs:isDefinedBy rdf:resource="http://www.opengis.net/ont/geosparql#"/>
341
+ <rdfs:label xml:lang="en">Geometry</rdfs:label>
342
+ </owl:Class>
343
+
344
+
345
+
346
+ <!-- http://www.opengis.net/ont/sf#Point -->
347
+
348
+ <owl:Class rdf:about="http://www.opengis.net/ont/sf#Point">
349
+ <rdfs:subClassOf rdf:resource="http://www.opengis.net/ont/geosparql#Geometry"/>
350
+ <rdfs:isDefinedBy rdf:resource="http://www.opengis.net/ont/sf#"/>
351
+ <rdfs:label xml:lang="en">Point</rdfs:label>
352
+ </owl:Class>
353
+
354
+
355
+
356
+ <!-- http://www.w3.org/2006/time#TemporalDuration -->
357
+
358
+ <owl:Class rdf:about="http://www.w3.org/2006/time#TemporalDuration">
359
+ <rdfs:comment xml:lang="en">Time extent; duration of a time interval separate from its particular start position</rdfs:comment>
360
+ <rdfs:isDefinedBy rdf:resource="http://www.w3.org/2006/time#"/>
361
+ <rdfs:label xml:lang="en">Temporal duration</rdfs:label>
362
+ </owl:Class>
363
+
364
+
365
+
366
+ <!-- http://www.w3.org/2006/time#TemporalEntity -->
367
+
368
+ <owl:Class rdf:about="http://www.w3.org/2006/time#TemporalEntity">
369
+ <rdfs:comment xml:lang="en">A temporal interval or instant.</rdfs:comment>
370
+ <rdfs:isDefinedBy rdf:resource="http://www.w3.org/2006/time#"/>
371
+ <rdfs:label xml:lang="en">Temporal entity</rdfs:label>
372
+ </owl:Class>
373
+
374
+
375
+
376
+ <!-- https://saref.etsi.org/core/Actuator -->
377
+
378
+ <owl:Class rdf:about="https://saref.etsi.org/core/Actuator">
379
+ <rdfs:subClassOf rdf:resource="https://saref.etsi.org/core/Device"/>
380
+ <owl:disjointWith rdf:resource="https://saref.etsi.org/core/Sensor"/>
381
+ <rdfs:comment xml:lang="en">A device responsible for moving or controlling a mechanism or system.</rdfs:comment>
382
+ <rdfs:isDefinedBy rdf:resource="https://saref.etsi.org/core/"/>
383
+ <rdfs:label xml:lang="en">Actuator</rdfs:label>
384
+ </owl:Class>
385
+
386
+
387
+
388
+ <!-- https://saref.etsi.org/core/Device -->
389
+
390
+ <owl:Class rdf:about="https://saref.etsi.org/core/Device">
391
+ <rdfs:subClassOf>
392
+ <owl:Restriction>
393
+ <owl:onProperty rdf:resource="https://saref.etsi.org/core/makesMeasurement"/>
394
+ <owl:allValuesFrom rdf:resource="https://saref.etsi.org/core/Measurement"/>
395
+ </owl:Restriction>
396
+ </rdfs:subClassOf>
397
+ <rdfs:comment xml:lang="en">A tangible object designed to accomplish a particular task in households, common public buildings or offices. In order to accomplish this task, the device performs one or more functions. For example, a washing machine is designed to wash (task) and to accomplish this task it performs a start and stop function. Devices can be structured in categories (subclasses) that reflect the different domain in which a device is used, e.g., smart appliances domain (subclass FunctionRelated) vs. building domain (subclass BuildingRelated) vs. smart grid domain (subclass EnergyRelated). New categories can be defined,if needed, to reflect other differences, for example different points of view, such as the point of view of the device&apos;s user vs. the point of view of the device&apos;s manufacturer. We propose a list of devices that are relevant for the purpose of SAREF, but this list can be extended.</rdfs:comment>
398
+ <rdfs:isDefinedBy rdf:resource="https://saref.etsi.org/core/"/>
399
+ <rdfs:label xml:lang="en">Device</rdfs:label>
400
+ </owl:Class>
401
+
402
+
403
+
404
+ <!-- https://saref.etsi.org/core/FeatureOfInterest -->
405
+
406
+ <owl:Class rdf:about="https://saref.etsi.org/core/FeatureOfInterest">
407
+ <rdfs:subClassOf>
408
+ <owl:Restriction>
409
+ <owl:onProperty rdf:resource="https://saref.etsi.org/core/hasMeasurement"/>
410
+ <owl:allValuesFrom rdf:resource="https://saref.etsi.org/core/Measurement"/>
411
+ </owl:Restriction>
412
+ </rdfs:subClassOf>
413
+ <rdfs:isDefinedBy rdf:resource="https://saref.etsi.org/core/"/>
414
+ </owl:Class>
415
+
416
+
417
+
418
+ <!-- https://saref.etsi.org/core/Measurement -->
419
+
420
+ <owl:Class rdf:about="https://saref.etsi.org/core/Measurement">
421
+ <rdfs:subClassOf>
422
+ <owl:Restriction>
423
+ <owl:onProperty rdf:resource="https://saref.etsi.org/core/hasTimestamp"/>
424
+ <owl:allValuesFrom rdf:resource="http://www.w3.org/2001/XMLSchema#dateTime"/>
425
+ </owl:Restriction>
426
+ </rdfs:subClassOf>
427
+ <rdfs:comment xml:lang="en">Represents the measured value made over a property. It is also linked to the unit of measure in which the value is expressed and the timestamp of the measurement.</rdfs:comment>
428
+ <rdfs:isDefinedBy rdf:resource="https://saref.etsi.org/core/"/>
429
+ <rdfs:label xml:lang="en">Measurement</rdfs:label>
430
+ </owl:Class>
431
+
432
+
433
+
434
+ <!-- https://saref.etsi.org/core/Meter -->
435
+
436
+ <owl:Class rdf:about="https://saref.etsi.org/core/Meter">
437
+ <rdfs:subClassOf rdf:resource="https://saref.etsi.org/core/Sensor"/>
438
+ <rdfs:comment xml:lang="en">A device built to accurately detect and display a quantity in a form readable by a human being. Further, a device of category saref:Meter that performs a saref:MeteringFunction.</rdfs:comment>
439
+ <rdfs:isDefinedBy rdf:resource="https://saref.etsi.org/core/"/>
440
+ <rdfs:label xml:lang="en">Meter</rdfs:label>
441
+ </owl:Class>
442
+
443
+
444
+
445
+ <!-- https://saref.etsi.org/core/Sensor -->
446
+
447
+ <owl:Class rdf:about="https://saref.etsi.org/core/Sensor">
448
+ <rdfs:subClassOf rdf:resource="https://saref.etsi.org/core/Device"/>
449
+ <rdfs:comment xml:lang="en">A device that detects and responds to events or changes in the physical environment such as light, motion, or temperature changes. A device that has category saref:Sensor and performs a saref:SensingFunction.</rdfs:comment>
450
+ <rdfs:isDefinedBy rdf:resource="https://saref.etsi.org/core/"/>
451
+ <rdfs:label xml:lang="en">Sensor</rdfs:label>
452
+ </owl:Class>
453
+
454
+
455
+
456
+ <!-- https://saref.etsi.org/saref4city/KeyPerformanceIndicator -->
457
+
458
+ <owl:Class rdf:about="https://saref.etsi.org/saref4city/KeyPerformanceIndicator">
459
+ <rdfs:comment xml:lang="en">A Key Performance Indicator (KPI) is a type of performance measurement. KPIs evaluate the success of an organization or of a particular activity in which it engages. (Definition taken from FIWARE)</rdfs:comment>
460
+ <rdfs:isDefinedBy rdf:resource="https://saref.etsi.org/saref4city/"/>
461
+ <rdfs:label xml:lang="en">Key Performance Indicator</rdfs:label>
462
+ <rdfs:seeAlso rdf:resource="http://fiware-datamodels.readthedocs.io/en/latest/KeyPerformanceIndicator/doc/spec/index.html"/>
463
+ </owl:Class>
464
+
465
+
466
+
467
+ <!-- https://saref.etsi.org/saref4watr/AcceptabilityProperty -->
468
+
469
+ <owl:Class rdf:about="https://saref.etsi.org/saref4watr/AcceptabilityProperty">
470
+ <rdfs:subClassOf rdf:resource="https://saref.etsi.org/saref4watr/WaterProperty"/>
471
+ <rdfs:comment xml:lang="en">An acceptability property is a property of water that is related to its acceptability.</rdfs:comment>
472
+ <rdfs:label xml:lang="en">Acceptability property</rdfs:label>
473
+ </owl:Class>
474
+
475
+
476
+
477
+ <!-- https://saref.etsi.org/saref4watr/ChemicalProperty -->
478
+
479
+ <owl:Class rdf:about="https://saref.etsi.org/saref4watr/ChemicalProperty">
480
+ <rdfs:subClassOf rdf:resource="https://saref.etsi.org/saref4watr/WaterProperty"/>
481
+ <rdfs:comment xml:lang="en">A chemical property is a property of water that is related to chemical components.</rdfs:comment>
482
+ <rdfs:label xml:lang="en">ChemicalProperty</rdfs:label>
483
+ </owl:Class>
484
+
485
+
486
+
487
+ <!-- https://saref.etsi.org/saref4watr/Tariff -->
488
+
489
+ <owl:Class rdf:about="https://saref.etsi.org/saref4watr/Tariff">
490
+ <rdfs:comment xml:lang="en">A tariff is a schedule of rates or charges of a business or a public utility. Tariffs can be based on time, thresholds or consumption; however, combined tariffs may also exist that mix more than one of these types.</rdfs:comment>
491
+ <rdfs:label xml:lang="en">Tariff</rdfs:label>
492
+ </owl:Class>
493
+
494
+
495
+
496
+ <!-- https://saref.etsi.org/saref4watr/TimeBasedTariff -->
497
+
498
+ <owl:Class rdf:about="https://saref.etsi.org/saref4watr/TimeBasedTariff">
499
+ <rdfs:subClassOf rdf:resource="https://saref.etsi.org/saref4watr/Tariff"/>
500
+ <rdfs:comment xml:lang="en">A time-based tariff is a tariff that is based on time.</rdfs:comment>
501
+ <rdfs:label xml:lang="en">Time-based tariff</rdfs:label>
502
+ </owl:Class>
503
+
504
+
505
+
506
+ <!-- https://saref.etsi.org/saref4watr/Water -->
507
+
508
+ <owl:Class rdf:about="https://saref.etsi.org/saref4watr/Water">
509
+ <rdfs:subClassOf rdf:resource="https://saref.etsi.org/core/FeatureOfInterest"/>
510
+ <rdfs:subClassOf>
511
+ <owl:Restriction>
512
+ <owl:onProperty rdf:resource="https://saref.etsi.org/core/hasProperty"/>
513
+ <owl:allValuesFrom rdf:resource="https://saref.etsi.org/saref4watr/WaterProperty"/>
514
+ </owl:Restriction>
515
+ </rdfs:subClassOf>
516
+ <rdfs:comment xml:lang="en">This class is used to define a particular quantity or body of water.</rdfs:comment>
517
+ <rdfs:label xml:lang="en">Water</rdfs:label>
518
+ </owl:Class>
519
+
520
+
521
+
522
+ <!-- https://saref.etsi.org/saref4watr/WaterAsset -->
523
+
524
+ <owl:Class rdf:about="https://saref.etsi.org/saref4watr/WaterAsset">
525
+ <rdfs:subClassOf rdf:resource="https://saref.etsi.org/core/FeatureOfInterest"/>
526
+ <rdfs:comment xml:lang="en">A water asset is a physical entity used in the process of transporting, treating, storing and distributing water.</rdfs:comment>
527
+ <rdfs:label xml:lang="en">Water asset</rdfs:label>
528
+ </owl:Class>
529
+
530
+
531
+
532
+ <!-- https://saref.etsi.org/saref4watr/WaterInfrastructure -->
533
+
534
+ <owl:Class rdf:about="https://saref.etsi.org/saref4watr/WaterInfrastructure">
535
+ <rdfs:comment xml:lang="en">A water infrastructure is the set of facilities, services, and installations needed for water management.</rdfs:comment>
536
+ <rdfs:label xml:lang="en">Water infrastructure</rdfs:label>
537
+ </owl:Class>
538
+
539
+
540
+
541
+ <!-- https://saref.etsi.org/saref4watr/WaterMeter -->
542
+
543
+ <owl:Class rdf:about="https://saref.etsi.org/saref4watr/WaterMeter">
544
+ <rdfs:subClassOf rdf:resource="https://saref.etsi.org/core/Meter"/>
545
+ <rdfs:subClassOf>
546
+ <owl:Restriction>
547
+ <owl:onProperty rdf:resource="https://saref.etsi.org/saref4watr/hasFabricationNumber"/>
548
+ <owl:maxCardinality rdf:datatype="http://www.w3.org/2001/XMLSchema#nonNegativeInteger">1</owl:maxCardinality>
549
+ </owl:Restriction>
550
+ </rdfs:subClassOf>
551
+ <rdfs:subClassOf>
552
+ <owl:Restriction>
553
+ <owl:onProperty rdf:resource="https://saref.etsi.org/saref4watr/hasFirmwareVersion"/>
554
+ <owl:maxCardinality rdf:datatype="http://www.w3.org/2001/XMLSchema#nonNegativeInteger">1</owl:maxCardinality>
555
+ </owl:Restriction>
556
+ </rdfs:subClassOf>
557
+ <rdfs:subClassOf>
558
+ <owl:Restriction>
559
+ <owl:onProperty rdf:resource="https://saref.etsi.org/saref4watr/hasHardwareVersion"/>
560
+ <owl:maxCardinality rdf:datatype="http://www.w3.org/2001/XMLSchema#nonNegativeInteger">1</owl:maxCardinality>
561
+ </owl:Restriction>
562
+ </rdfs:subClassOf>
563
+ <rdfs:subClassOf>
564
+ <owl:Restriction>
565
+ <owl:onProperty rdf:resource="https://saref.etsi.org/saref4watr/hasVersion"/>
566
+ <owl:maxCardinality rdf:datatype="http://www.w3.org/2001/XMLSchema#nonNegativeInteger">1</owl:maxCardinality>
567
+ </owl:Restriction>
568
+ </rdfs:subClassOf>
569
+ <rdfs:comment xml:lang="en">A water meter is an instrument intended to measure continuously, memorize, and display the volume of water passing through the meter.</rdfs:comment>
570
+ <rdfs:label xml:lang="en">Water meter</rdfs:label>
571
+ </owl:Class>
572
+
573
+
574
+
575
+ <!-- https://saref.etsi.org/saref4watr/WaterProperty -->
576
+
577
+ <owl:Class rdf:about="https://saref.etsi.org/saref4watr/WaterProperty">
578
+ <rdfs:comment xml:lang="en">Class to group those properties related to the water.</rdfs:comment>
579
+ <rdfs:label xml:lang="en">Water property</rdfs:label>
580
+ </owl:Class>
581
+
582
+
583
+
584
+ <!--
585
+ ///////////////////////////////////////////////////////////////////////////////////////
586
+ //
587
+ // Individuals
588
+ //
589
+ ///////////////////////////////////////////////////////////////////////////////////////
590
+ -->
591
+
592
+
593
+
594
+
595
+ <!-- http://www.garcia-castro.com/foaf.rdf#me -->
596
+
597
+ <owl:NamedIndividual rdf:about="http://www.garcia-castro.com/foaf.rdf#me">
598
+ <schema:affiliation rdf:resource="https://www.upm.es/"/>
599
+ <schema:familyName>García-Castro</schema:familyName>
600
+ <schema:givenName>Raúl</schema:givenName>
601
+ </owl:NamedIndividual>
602
+
603
+
604
+
605
+ <!-- https://saref.etsi.org/saref4watr/Acrylamide -->
606
+
607
+ <owl:NamedIndividual rdf:about="https://saref.etsi.org/saref4watr/Acrylamide">
608
+ <rdf:type rdf:resource="https://saref.etsi.org/saref4watr/ChemicalProperty"/>
609
+ <rdfs:comment xml:lang="en">Property of the water indicating its concentration of acrylamide.</rdfs:comment>
610
+ <rdfs:label xml:lang="en">Acrylamide</rdfs:label>
611
+ </owl:NamedIndividual>
612
+
613
+
614
+
615
+ <!-- https://saref.etsi.org/saref4watr/Agriculture -->
616
+
617
+ <owl:NamedIndividual rdf:about="https://saref.etsi.org/saref4watr/Agriculture">
618
+ <rdfs:comment xml:lang="en">Use of water for the farming of plants and livestock.</rdfs:comment>
619
+ <rdfs:label xml:lang="en">Agriculture</rdfs:label>
620
+ </owl:NamedIndividual>
621
+
622
+
623
+
624
+ <!-- https://saref.etsi.org/saref4watr/Aluminium -->
625
+
626
+ <owl:NamedIndividual rdf:about="https://saref.etsi.org/saref4watr/Aluminium">
627
+ <rdf:type rdf:resource="https://saref.etsi.org/saref4watr/ChemicalProperty"/>
628
+ <rdfs:comment xml:lang="en">Property of the water indicating its concentration of aluminium.</rdfs:comment>
629
+ <rdfs:label xml:lang="en">Aluminium</rdfs:label>
630
+ </owl:NamedIndividual>
631
+
632
+
633
+
634
+ <!-- https://saref.etsi.org/saref4watr/Ammonium -->
635
+
636
+ <owl:NamedIndividual rdf:about="https://saref.etsi.org/saref4watr/Ammonium">
637
+ <rdf:type rdf:resource="https://saref.etsi.org/saref4watr/ChemicalProperty"/>
638
+ <rdfs:comment xml:lang="en">Property of the water indicating its concentration of ammonium.</rdfs:comment>
639
+ <rdfs:label xml:lang="en">Ammonium</rdfs:label>
640
+ </owl:NamedIndividual>
641
+
642
+
643
+
644
+ <!-- https://saref.etsi.org/saref4watr/Antimony -->
645
+
646
+ <owl:NamedIndividual rdf:about="https://saref.etsi.org/saref4watr/Antimony">
647
+ <rdf:type rdf:resource="https://saref.etsi.org/saref4watr/ChemicalProperty"/>
648
+ <rdfs:comment xml:lang="en">Property of the water indicating its concentration of antimony.</rdfs:comment>
649
+ <rdfs:label xml:lang="en">Antimony</rdfs:label>
650
+ </owl:NamedIndividual>
651
+
652
+
653
+
654
+ <!-- https://saref.etsi.org/saref4watr/Aquaculture -->
655
+
656
+ <owl:NamedIndividual rdf:about="https://saref.etsi.org/saref4watr/Aquaculture">
657
+ <rdfs:comment xml:lang="en">Use of water for the farming of fish, crustaceans, molluscs, aquatic plants, algae, and other organisms.</rdfs:comment>
658
+ <rdfs:label xml:lang="en">Aquaculture</rdfs:label>
659
+ </owl:NamedIndividual>
660
+
661
+
662
+
663
+ <!-- https://saref.etsi.org/saref4watr/Arsenic -->
664
+
665
+ <owl:NamedIndividual rdf:about="https://saref.etsi.org/saref4watr/Arsenic">
666
+ <rdf:type rdf:resource="https://saref.etsi.org/saref4watr/ChemicalProperty"/>
667
+ <rdfs:comment xml:lang="en">Property of the water indicating its concentration of arsenic.</rdfs:comment>
668
+ <rdfs:label xml:lang="en">Arsenic</rdfs:label>
669
+ </owl:NamedIndividual>
670
+
671
+
672
+
673
+ <!-- https://saref.etsi.org/saref4watr/AtmosphericPressure -->
674
+
675
+ <owl:NamedIndividual rdf:about="https://saref.etsi.org/saref4watr/AtmosphericPressure">
676
+ <rdfs:comment xml:lang="en">Property of the environment indicating the atmospheric pressure.</rdfs:comment>
677
+ <rdfs:label xml:lang="en">Atmospheric pressure</rdfs:label>
678
+ </owl:NamedIndividual>
679
+
680
+
681
+
682
+ <!-- https://saref.etsi.org/saref4watr/BatteryLastChange -->
683
+
684
+ <owl:NamedIndividual rdf:about="https://saref.etsi.org/saref4watr/BatteryLastChange">
685
+ <rdfs:comment xml:lang="en">The time in which the battery was last changed.</rdfs:comment>
686
+ <rdfs:label xml:lang="en">Battery last change</rdfs:label>
687
+ </owl:NamedIndividual>
688
+
689
+
690
+
691
+ <!-- https://saref.etsi.org/saref4watr/BatteryOperatingTime -->
692
+
693
+ <owl:NamedIndividual rdf:about="https://saref.etsi.org/saref4watr/BatteryOperatingTime">
694
+ <rdfs:comment xml:lang="en">The time for which the battery has been operating since the last charge.</rdfs:comment>
695
+ <rdfs:label xml:lang="en">Battery operating time</rdfs:label>
696
+ </owl:NamedIndividual>
697
+
698
+
699
+
700
+ <!-- https://saref.etsi.org/saref4watr/BatteryRemainingTime -->
701
+
702
+ <owl:NamedIndividual rdf:about="https://saref.etsi.org/saref4watr/BatteryRemainingTime">
703
+ <rdfs:comment xml:lang="en">The time until the battery is discharged.</rdfs:comment>
704
+ <rdfs:label xml:lang="en">Battery remaining time</rdfs:label>
705
+ </owl:NamedIndividual>
706
+
707
+
708
+
709
+ <!-- https://saref.etsi.org/saref4watr/Benzene -->
710
+
711
+ <owl:NamedIndividual rdf:about="https://saref.etsi.org/saref4watr/Benzene">
712
+ <rdf:type rdf:resource="https://saref.etsi.org/saref4watr/ChemicalProperty"/>
713
+ <rdfs:comment xml:lang="en">Property of the water indicating its concentration of benzene.</rdfs:comment>
714
+ <rdfs:label xml:lang="en">Benzene</rdfs:label>
715
+ </owl:NamedIndividual>
716
+
717
+
718
+
719
+ <!-- https://saref.etsi.org/saref4watr/Benzoapyrene -->
720
+
721
+ <owl:NamedIndividual rdf:about="https://saref.etsi.org/saref4watr/Benzoapyrene">
722
+ <rdf:type rdf:resource="https://saref.etsi.org/saref4watr/ChemicalProperty"/>
723
+ <rdfs:comment xml:lang="en">Property of the water indicating its concentration of benzo(a)pyrene.</rdfs:comment>
724
+ <rdfs:label xml:lang="en">Benzo(a)pyrene</rdfs:label>
725
+ </owl:NamedIndividual>
726
+
727
+
728
+
729
+ <!-- https://saref.etsi.org/saref4watr/Boron -->
730
+
731
+ <owl:NamedIndividual rdf:about="https://saref.etsi.org/saref4watr/Boron">
732
+ <rdf:type rdf:resource="https://saref.etsi.org/saref4watr/ChemicalProperty"/>
733
+ <rdfs:comment xml:lang="en">Property of the water indicating its concentration of boron.</rdfs:comment>
734
+ <rdfs:label xml:lang="en">Boron</rdfs:label>
735
+ </owl:NamedIndividual>
736
+
737
+
738
+
739
+ <!-- https://saref.etsi.org/saref4watr/Bromate -->
740
+
741
+ <owl:NamedIndividual rdf:about="https://saref.etsi.org/saref4watr/Bromate">
742
+ <rdf:type rdf:resource="https://saref.etsi.org/saref4watr/ChemicalProperty"/>
743
+ <rdfs:comment xml:lang="en">Property of the water indicating its concentration of bromate.</rdfs:comment>
744
+ <rdfs:label xml:lang="en">Bromate</rdfs:label>
745
+ </owl:NamedIndividual>
746
+
747
+
748
+
749
+ <!-- https://saref.etsi.org/saref4watr/Cadmium -->
750
+
751
+ <owl:NamedIndividual rdf:about="https://saref.etsi.org/saref4watr/Cadmium">
752
+ <rdf:type rdf:resource="https://saref.etsi.org/saref4watr/ChemicalProperty"/>
753
+ <rdfs:comment xml:lang="en">Property of the water indicating its concentration of cadmium.</rdfs:comment>
754
+ <rdfs:label xml:lang="en">Cadmium</rdfs:label>
755
+ </owl:NamedIndividual>
756
+
757
+
758
+
759
+ <!-- https://saref.etsi.org/saref4watr/Chloride -->
760
+
761
+ <owl:NamedIndividual rdf:about="https://saref.etsi.org/saref4watr/Chloride">
762
+ <rdf:type rdf:resource="https://saref.etsi.org/saref4watr/ChemicalProperty"/>
763
+ <rdfs:comment xml:lang="en">Property of the water indicating its concentration of chloride.</rdfs:comment>
764
+ <rdfs:label xml:lang="en">Chloride</rdfs:label>
765
+ </owl:NamedIndividual>
766
+
767
+
768
+
769
+ <!-- https://saref.etsi.org/saref4watr/Chromium -->
770
+
771
+ <owl:NamedIndividual rdf:about="https://saref.etsi.org/saref4watr/Chromium">
772
+ <rdf:type rdf:resource="https://saref.etsi.org/saref4watr/ChemicalProperty"/>
773
+ <rdfs:comment xml:lang="en">Property of the water indicating its concentration of chromium.</rdfs:comment>
774
+ <rdfs:label xml:lang="en">Chromium</rdfs:label>
775
+ </owl:NamedIndividual>
776
+
777
+
778
+
779
+ <!-- https://saref.etsi.org/saref4watr/ClostridiumPerfringens -->
780
+
781
+ <owl:NamedIndividual rdf:about="https://saref.etsi.org/saref4watr/ClostridiumPerfringens">
782
+ <rdfs:comment xml:lang="en">Property of the water indicating its concentration of clostridium perfringens.</rdfs:comment>
783
+ <rdfs:label xml:lang="en">Clostridium perfringens</rdfs:label>
784
+ </owl:NamedIndividual>
785
+
786
+
787
+
788
+ <!-- https://saref.etsi.org/saref4watr/ColiformBacteria -->
789
+
790
+ <owl:NamedIndividual rdf:about="https://saref.etsi.org/saref4watr/ColiformBacteria">
791
+ <rdfs:comment xml:lang="en">Property of the water indicating its concentration of coliform bacteria.</rdfs:comment>
792
+ <rdfs:label xml:lang="en">Coliform bacteria</rdfs:label>
793
+ </owl:NamedIndividual>
794
+
795
+
796
+
797
+ <!-- https://saref.etsi.org/saref4watr/ColonyCount22C -->
798
+
799
+ <owl:NamedIndividual rdf:about="https://saref.etsi.org/saref4watr/ColonyCount22C">
800
+ <rdfs:comment xml:lang="en">Property of the water indicating its colony count at 22 ºC.</rdfs:comment>
801
+ <rdfs:label xml:lang="en">Colony count at 22 °C</rdfs:label>
802
+ </owl:NamedIndividual>
803
+
804
+
805
+
806
+ <!-- https://saref.etsi.org/saref4watr/ColonyCount37C -->
807
+
808
+ <owl:NamedIndividual rdf:about="https://saref.etsi.org/saref4watr/ColonyCount37C">
809
+ <rdfs:comment xml:lang="en">Property of the water indicating its colony count at 37 ºC.</rdfs:comment>
810
+ <rdfs:label xml:lang="en">Colony count at 37 °C</rdfs:label>
811
+ </owl:NamedIndividual>
812
+
813
+
814
+
815
+ <!-- https://saref.etsi.org/saref4watr/Colour -->
816
+
817
+ <owl:NamedIndividual rdf:about="https://saref.etsi.org/saref4watr/Colour">
818
+ <rdf:type rdf:resource="https://saref.etsi.org/saref4watr/AcceptabilityProperty"/>
819
+ <rdfs:comment xml:lang="en">Property of the water indicating its colour.</rdfs:comment>
820
+ <rdfs:label xml:lang="en">Colour</rdfs:label>
821
+ </owl:NamedIndividual>
822
+
823
+
824
+
825
+ <!-- https://saref.etsi.org/saref4watr/Conductivity -->
826
+
827
+ <owl:NamedIndividual rdf:about="https://saref.etsi.org/saref4watr/Conductivity">
828
+ <rdf:type rdf:resource="https://saref.etsi.org/saref4watr/AcceptabilityProperty"/>
829
+ <rdfs:comment xml:lang="en">Property of the water indicating its conductivity.</rdfs:comment>
830
+ <rdfs:label xml:lang="en">Conductivity</rdfs:label>
831
+ </owl:NamedIndividual>
832
+
833
+
834
+
835
+ <!-- https://saref.etsi.org/saref4watr/Copper -->
836
+
837
+ <owl:NamedIndividual rdf:about="https://saref.etsi.org/saref4watr/Copper">
838
+ <rdf:type rdf:resource="https://saref.etsi.org/saref4watr/ChemicalProperty"/>
839
+ <rdfs:comment xml:lang="en">Property of the water indicating its concentration of copper.</rdfs:comment>
840
+ <rdfs:label xml:lang="en">Copper</rdfs:label>
841
+ </owl:NamedIndividual>
842
+
843
+
844
+
845
+ <!-- https://saref.etsi.org/saref4watr/Cyanide -->
846
+
847
+ <owl:NamedIndividual rdf:about="https://saref.etsi.org/saref4watr/Cyanide">
848
+ <rdf:type rdf:resource="https://saref.etsi.org/saref4watr/ChemicalProperty"/>
849
+ <rdfs:comment xml:lang="en">Property of the water indicating its concentration of cyanide.</rdfs:comment>
850
+ <rdfs:label xml:lang="en">Cyanide</rdfs:label>
851
+ </owl:NamedIndividual>
852
+
853
+
854
+
855
+ <!-- https://saref.etsi.org/saref4watr/Domestic -->
856
+
857
+ <owl:NamedIndividual rdf:about="https://saref.etsi.org/saref4watr/Domestic">
858
+ <rdfs:comment xml:lang="en">Use of water for domestic purposes.</rdfs:comment>
859
+ <rdfs:label xml:lang="en">Domestic</rdfs:label>
860
+ </owl:NamedIndividual>
861
+
862
+
863
+
864
+ <!-- https://saref.etsi.org/saref4watr/DrinkingWater -->
865
+
866
+ <owl:NamedIndividual rdf:about="https://saref.etsi.org/saref4watr/DrinkingWater">
867
+ <rdf:type rdf:resource="https://saref.etsi.org/saref4watr/Water"/>
868
+ <rdfs:comment xml:lang="en">Drinking water is water that is treated to comply with drinking water standards.</rdfs:comment>
869
+ <rdfs:label xml:lang="en">Drinking water</rdfs:label>
870
+ <rdfs:label xml:lang="en">Potable water</rdfs:label>
871
+ </owl:NamedIndividual>
872
+
873
+
874
+
875
+ <!-- https://saref.etsi.org/saref4watr/Enterococci -->
876
+
877
+ <owl:NamedIndividual rdf:about="https://saref.etsi.org/saref4watr/Enterococci">
878
+ <rdfs:comment xml:lang="en">Property of the water indicating its concentration of enterococci.</rdfs:comment>
879
+ <rdfs:label xml:lang="en">Enterococci</rdfs:label>
880
+ </owl:NamedIndividual>
881
+
882
+
883
+
884
+ <!-- https://saref.etsi.org/saref4watr/Epichlorohydrin -->
885
+
886
+ <owl:NamedIndividual rdf:about="https://saref.etsi.org/saref4watr/Epichlorohydrin">
887
+ <rdf:type rdf:resource="https://saref.etsi.org/saref4watr/ChemicalProperty"/>
888
+ <rdfs:comment xml:lang="en">Property of the water indicating its concentration of epichlorohydrin.</rdfs:comment>
889
+ <rdfs:label xml:lang="en">Epichlorohydrin</rdfs:label>
890
+ </owl:NamedIndividual>
891
+
892
+
893
+
894
+ <!-- https://saref.etsi.org/saref4watr/EscherichiaColi -->
895
+
896
+ <owl:NamedIndividual rdf:about="https://saref.etsi.org/saref4watr/EscherichiaColi">
897
+ <rdfs:comment xml:lang="en">Property of the water indicating its concentration of escherichia coli.</rdfs:comment>
898
+ <rdfs:label xml:lang="en">E. coli</rdfs:label>
899
+ <rdfs:label xml:lang="en">Escherichia coli</rdfs:label>
900
+ </owl:NamedIndividual>
901
+
902
+
903
+
904
+ <!-- https://saref.etsi.org/saref4watr/ExternalTemperature -->
905
+
906
+ <owl:NamedIndividual rdf:about="https://saref.etsi.org/saref4watr/ExternalTemperature">
907
+ <rdfs:comment xml:lang="en">Property of the environment indicating the temperature.</rdfs:comment>
908
+ <rdfs:label xml:lang="en">External temperature</rdfs:label>
909
+ </owl:NamedIndividual>
910
+
911
+
912
+
913
+ <!-- https://saref.etsi.org/saref4watr/FlowPressure -->
914
+
915
+ <owl:NamedIndividual rdf:about="https://saref.etsi.org/saref4watr/FlowPressure">
916
+ <rdfs:comment xml:lang="en">Property indicating the pressure of a water flow.</rdfs:comment>
917
+ <rdfs:label xml:lang="en">Flow pressure</rdfs:label>
918
+ </owl:NamedIndividual>
919
+
920
+
921
+
922
+ <!-- https://saref.etsi.org/saref4watr/FlowRate -->
923
+
924
+ <owl:NamedIndividual rdf:about="https://saref.etsi.org/saref4watr/FlowRate">
925
+ <rdfs:comment xml:lang="en">Property indicating the rate of a water flow.</rdfs:comment>
926
+ <rdfs:label xml:lang="en">Flow rate</rdfs:label>
927
+ </owl:NamedIndividual>
928
+
929
+
930
+
931
+ <!-- https://saref.etsi.org/saref4watr/FlowTemperature -->
932
+
933
+ <owl:NamedIndividual rdf:about="https://saref.etsi.org/saref4watr/FlowTemperature">
934
+ <rdfs:comment xml:lang="en">Property indicating the temperature of a water flow.</rdfs:comment>
935
+ <rdfs:label xml:lang="en">Flow temperature</rdfs:label>
936
+ </owl:NamedIndividual>
937
+
938
+
939
+
940
+ <!-- https://saref.etsi.org/saref4watr/FlowVolume -->
941
+
942
+ <owl:NamedIndividual rdf:about="https://saref.etsi.org/saref4watr/FlowVolume">
943
+ <rdfs:comment xml:lang="en">Property indicating the volume of a water flow.</rdfs:comment>
944
+ <rdfs:label xml:lang="en">Flow volume</rdfs:label>
945
+ </owl:NamedIndividual>
946
+
947
+
948
+
949
+ <!-- https://saref.etsi.org/saref4watr/Fluoride -->
950
+
951
+ <owl:NamedIndividual rdf:about="https://saref.etsi.org/saref4watr/Fluoride">
952
+ <rdf:type rdf:resource="https://saref.etsi.org/saref4watr/ChemicalProperty"/>
953
+ <rdfs:comment xml:lang="en">Property of the water indicating its concentration of fluoride.</rdfs:comment>
954
+ <rdfs:label xml:lang="en">Fluoride</rdfs:label>
955
+ </owl:NamedIndividual>
956
+
957
+
958
+
959
+ <!-- https://saref.etsi.org/saref4watr/Hardness -->
960
+
961
+ <owl:NamedIndividual rdf:about="https://saref.etsi.org/saref4watr/Hardness">
962
+ <rdf:type rdf:resource="https://saref.etsi.org/saref4watr/AcceptabilityProperty"/>
963
+ <rdfs:comment xml:lang="en">Property of the water indicating its hardness.</rdfs:comment>
964
+ <rdfs:label xml:lang="en">Hardness</rdfs:label>
965
+ </owl:NamedIndividual>
966
+
967
+
968
+
969
+ <!-- https://saref.etsi.org/saref4watr/Humidity -->
970
+
971
+ <owl:NamedIndividual rdf:about="https://saref.etsi.org/saref4watr/Humidity">
972
+ <rdfs:comment xml:lang="en">Property of the environment indicating the humidity.</rdfs:comment>
973
+ <rdfs:label xml:lang="en">Humidity</rdfs:label>
974
+ </owl:NamedIndividual>
975
+
976
+
977
+
978
+ <!-- https://saref.etsi.org/saref4watr/HydrogenIonConcentration -->
979
+
980
+ <owl:NamedIndividual rdf:about="https://saref.etsi.org/saref4watr/HydrogenIonConcentration">
981
+ <rdf:type rdf:resource="https://saref.etsi.org/saref4watr/AcceptabilityProperty"/>
982
+ <rdfs:comment xml:lang="en">Property of the water indicating its hydrogen ion concentration.</rdfs:comment>
983
+ <rdfs:label xml:lang="en">Hydrogen ion concentration</rdfs:label>
984
+ <rdfs:label xml:lang="en">pH</rdfs:label>
985
+ </owl:NamedIndividual>
986
+
987
+
988
+
989
+ <!-- https://saref.etsi.org/saref4watr/Industry -->
990
+
991
+ <owl:NamedIndividual rdf:about="https://saref.etsi.org/saref4watr/Industry">
992
+ <rdfs:comment xml:lang="en">Use of water for industrial purposes.</rdfs:comment>
993
+ <rdfs:label xml:lang="en">Industry</rdfs:label>
994
+ </owl:NamedIndividual>
995
+
996
+
997
+
998
+ <!-- https://saref.etsi.org/saref4watr/Iron -->
999
+
1000
+ <owl:NamedIndividual rdf:about="https://saref.etsi.org/saref4watr/Iron">
1001
+ <rdf:type rdf:resource="https://saref.etsi.org/saref4watr/ChemicalProperty"/>
1002
+ <rdfs:comment xml:lang="en">Property of the water indicating its concentration of iron.</rdfs:comment>
1003
+ <rdfs:label xml:lang="en">Iron</rdfs:label>
1004
+ </owl:NamedIndividual>
1005
+
1006
+
1007
+
1008
+ <!-- https://saref.etsi.org/saref4watr/Lead -->
1009
+
1010
+ <owl:NamedIndividual rdf:about="https://saref.etsi.org/saref4watr/Lead">
1011
+ <rdf:type rdf:resource="https://saref.etsi.org/saref4watr/ChemicalProperty"/>
1012
+ <rdfs:comment xml:lang="en">Property of the water indicating its concentration of lead.</rdfs:comment>
1013
+ <rdfs:label xml:lang="en">Lead</rdfs:label>
1014
+ </owl:NamedIndividual>
1015
+
1016
+
1017
+
1018
+ <!-- https://saref.etsi.org/saref4watr/Manganese -->
1019
+
1020
+ <owl:NamedIndividual rdf:about="https://saref.etsi.org/saref4watr/Manganese">
1021
+ <rdf:type rdf:resource="https://saref.etsi.org/saref4watr/ChemicalProperty"/>
1022
+ <rdfs:comment xml:lang="en">Property of the water indicating its concentration of manganese.</rdfs:comment>
1023
+ <rdfs:label xml:lang="en">Manganese</rdfs:label>
1024
+ </owl:NamedIndividual>
1025
+
1026
+
1027
+
1028
+ <!-- https://saref.etsi.org/saref4watr/Mercury -->
1029
+
1030
+ <owl:NamedIndividual rdf:about="https://saref.etsi.org/saref4watr/Mercury">
1031
+ <rdf:type rdf:resource="https://saref.etsi.org/saref4watr/ChemicalProperty"/>
1032
+ <rdfs:comment xml:lang="en">Property of the water indicating its concentration of mercury.</rdfs:comment>
1033
+ <rdfs:label xml:lang="en">Mercury</rdfs:label>
1034
+ </owl:NamedIndividual>
1035
+
1036
+
1037
+
1038
+ <!-- https://saref.etsi.org/saref4watr/MeterOnTime -->
1039
+
1040
+ <owl:NamedIndividual rdf:about="https://saref.etsi.org/saref4watr/MeterOnTime">
1041
+ <rdfs:comment xml:lang="en">The duration of the meter power up.</rdfs:comment>
1042
+ <rdfs:label xml:lang="en">Meter on time</rdfs:label>
1043
+ </owl:NamedIndividual>
1044
+
1045
+
1046
+
1047
+ <!-- https://saref.etsi.org/saref4watr/MeterOperatingTime -->
1048
+
1049
+ <owl:NamedIndividual rdf:about="https://saref.etsi.org/saref4watr/MeterOperatingTime">
1050
+ <rdfs:comment xml:lang="en">The time for which the meter has been operating.</rdfs:comment>
1051
+ <rdfs:label xml:lang="en">Meter operating time</rdfs:label>
1052
+ </owl:NamedIndividual>
1053
+
1054
+
1055
+
1056
+ <!-- https://saref.etsi.org/saref4watr/Nickel -->
1057
+
1058
+ <owl:NamedIndividual rdf:about="https://saref.etsi.org/saref4watr/Nickel">
1059
+ <rdf:type rdf:resource="https://saref.etsi.org/saref4watr/ChemicalProperty"/>
1060
+ <rdfs:comment xml:lang="en">Property of the water indicating its concentration of nickel.</rdfs:comment>
1061
+ <rdfs:label xml:lang="en">Nickel</rdfs:label>
1062
+ </owl:NamedIndividual>
1063
+
1064
+
1065
+
1066
+ <!-- https://saref.etsi.org/saref4watr/Nitrate -->
1067
+
1068
+ <owl:NamedIndividual rdf:about="https://saref.etsi.org/saref4watr/Nitrate">
1069
+ <rdf:type rdf:resource="https://saref.etsi.org/saref4watr/ChemicalProperty"/>
1070
+ <rdfs:comment xml:lang="en">Property of the water indicating its concentration of nitrate.</rdfs:comment>
1071
+ <rdfs:label xml:lang="en">Nitrate</rdfs:label>
1072
+ </owl:NamedIndividual>
1073
+
1074
+
1075
+
1076
+ <!-- https://saref.etsi.org/saref4watr/Nitrite -->
1077
+
1078
+ <owl:NamedIndividual rdf:about="https://saref.etsi.org/saref4watr/Nitrite">
1079
+ <rdf:type rdf:resource="https://saref.etsi.org/saref4watr/ChemicalProperty"/>
1080
+ <rdfs:comment xml:lang="en">Property of the water indicating its concentration of nitrite.</rdfs:comment>
1081
+ <rdfs:label xml:lang="en">Nitrite</rdfs:label>
1082
+ </owl:NamedIndividual>
1083
+
1084
+
1085
+
1086
+ <!-- https://saref.etsi.org/saref4watr/Odour -->
1087
+
1088
+ <owl:NamedIndividual rdf:about="https://saref.etsi.org/saref4watr/Odour">
1089
+ <rdf:type rdf:resource="https://saref.etsi.org/saref4watr/AcceptabilityProperty"/>
1090
+ <rdfs:comment xml:lang="en">Property of the water indicating its odour.</rdfs:comment>
1091
+ <rdfs:label xml:lang="en">Odour</rdfs:label>
1092
+ </owl:NamedIndividual>
1093
+
1094
+
1095
+
1096
+ <!-- https://saref.etsi.org/saref4watr/Oxidisability -->
1097
+
1098
+ <owl:NamedIndividual rdf:about="https://saref.etsi.org/saref4watr/Oxidisability">
1099
+ <rdf:type rdf:resource="https://saref.etsi.org/saref4watr/AcceptabilityProperty"/>
1100
+ <rdfs:comment xml:lang="en">Property of the water indicating its oxidisability.</rdfs:comment>
1101
+ <rdfs:label xml:lang="en">Oxidisability</rdfs:label>
1102
+ </owl:NamedIndividual>
1103
+
1104
+
1105
+
1106
+ <!-- https://saref.etsi.org/saref4watr/Oxygen -->
1107
+
1108
+ <owl:NamedIndividual rdf:about="https://saref.etsi.org/saref4watr/Oxygen">
1109
+ <rdf:type rdf:resource="https://saref.etsi.org/saref4watr/ChemicalProperty"/>
1110
+ <rdfs:comment xml:lang="en">Property of the water indicating its oxygen saturation.</rdfs:comment>
1111
+ <rdfs:label xml:lang="en">Dissolved oxygen</rdfs:label>
1112
+ <rdfs:label xml:lang="en">Oxygen</rdfs:label>
1113
+ <rdfs:label xml:lang="en">Oxygen saturation</rdfs:label>
1114
+ </owl:NamedIndividual>
1115
+
1116
+
1117
+
1118
+ <!-- https://saref.etsi.org/saref4watr/PolycyclicAromaticHydrocarbons -->
1119
+
1120
+ <owl:NamedIndividual rdf:about="https://saref.etsi.org/saref4watr/PolycyclicAromaticHydrocarbons">
1121
+ <rdf:type rdf:resource="https://saref.etsi.org/saref4watr/ChemicalProperty"/>
1122
+ <rdfs:comment xml:lang="en">Property of the water indicating its concentration of polycyclic aromatic hydrocarbons.</rdfs:comment>
1123
+ <rdfs:label xml:lang="en">Polycyclic aromatic hydrocarbons</rdfs:label>
1124
+ </owl:NamedIndividual>
1125
+
1126
+
1127
+
1128
+ <!-- https://saref.etsi.org/saref4watr/Precipitation -->
1129
+
1130
+ <owl:NamedIndividual rdf:about="https://saref.etsi.org/saref4watr/Precipitation">
1131
+ <rdfs:comment xml:lang="en">Property of the environment indicating the precipitation.</rdfs:comment>
1132
+ <rdfs:label xml:lang="en">Precipitation</rdfs:label>
1133
+ </owl:NamedIndividual>
1134
+
1135
+
1136
+
1137
+ <!-- https://saref.etsi.org/saref4watr/PseudomonasAeruginosa -->
1138
+
1139
+ <owl:NamedIndividual rdf:about="https://saref.etsi.org/saref4watr/PseudomonasAeruginosa">
1140
+ <rdfs:comment xml:lang="en">Property of the water indicating its concentration of pseudomonas aeruginosa.</rdfs:comment>
1141
+ <rdfs:label xml:lang="en">Pseudomonas aeruginosa</rdfs:label>
1142
+ </owl:NamedIndividual>
1143
+
1144
+
1145
+
1146
+ <!-- https://saref.etsi.org/saref4watr/RawWater -->
1147
+
1148
+ <owl:NamedIndividual rdf:about="https://saref.etsi.org/saref4watr/RawWater">
1149
+ <rdf:type rdf:resource="https://saref.etsi.org/saref4watr/Water"/>
1150
+ <rdfs:comment xml:lang="en">Raw water is water found in the environment that has not been treated and does not have any of its minerals, ions, particles, bacteria, or parasites removed.</rdfs:comment>
1151
+ <rdfs:label xml:lang="en">Raw water</rdfs:label>
1152
+ </owl:NamedIndividual>
1153
+
1154
+
1155
+
1156
+ <!-- https://saref.etsi.org/saref4watr/Recreation -->
1157
+
1158
+ <owl:NamedIndividual rdf:about="https://saref.etsi.org/saref4watr/Recreation">
1159
+ <rdfs:comment xml:lang="en">Use of water for recreational purposes.</rdfs:comment>
1160
+ <rdfs:label xml:lang="en">Recreation</rdfs:label>
1161
+ </owl:NamedIndividual>
1162
+
1163
+
1164
+
1165
+ <!-- https://saref.etsi.org/saref4watr/Selenium -->
1166
+
1167
+ <owl:NamedIndividual rdf:about="https://saref.etsi.org/saref4watr/Selenium">
1168
+ <rdf:type rdf:resource="https://saref.etsi.org/saref4watr/ChemicalProperty"/>
1169
+ <rdfs:comment xml:lang="en">Property of the water indicating its concentration of selenium.</rdfs:comment>
1170
+ <rdfs:label xml:lang="en">Selenium</rdfs:label>
1171
+ </owl:NamedIndividual>
1172
+
1173
+
1174
+
1175
+ <!-- https://saref.etsi.org/saref4watr/Sodium -->
1176
+
1177
+ <owl:NamedIndividual rdf:about="https://saref.etsi.org/saref4watr/Sodium">
1178
+ <rdf:type rdf:resource="https://saref.etsi.org/saref4watr/ChemicalProperty"/>
1179
+ <rdfs:comment xml:lang="en">Property of the water indicating its concentration of sodium.</rdfs:comment>
1180
+ <rdfs:label xml:lang="en">Sodium</rdfs:label>
1181
+ </owl:NamedIndividual>
1182
+
1183
+
1184
+
1185
+ <!-- https://saref.etsi.org/saref4watr/Stormwater -->
1186
+
1187
+ <owl:NamedIndividual rdf:about="https://saref.etsi.org/saref4watr/Stormwater">
1188
+ <rdf:type rdf:resource="https://saref.etsi.org/saref4watr/Water"/>
1189
+ <rdfs:comment xml:lang="en">Stormwater is water that originates during precipitation events and snow/ice melt.</rdfs:comment>
1190
+ <rdfs:label xml:lang="en">Storm water</rdfs:label>
1191
+ </owl:NamedIndividual>
1192
+
1193
+
1194
+
1195
+ <!-- https://saref.etsi.org/saref4watr/Sulphate -->
1196
+
1197
+ <owl:NamedIndividual rdf:about="https://saref.etsi.org/saref4watr/Sulphate">
1198
+ <rdf:type rdf:resource="https://saref.etsi.org/saref4watr/ChemicalProperty"/>
1199
+ <rdfs:comment xml:lang="en">Property of the water indicating its concentration of sulphate.</rdfs:comment>
1200
+ <rdfs:label xml:lang="en">Sulphate</rdfs:label>
1201
+ </owl:NamedIndividual>
1202
+
1203
+
1204
+
1205
+ <!-- https://saref.etsi.org/saref4watr/Taste -->
1206
+
1207
+ <owl:NamedIndividual rdf:about="https://saref.etsi.org/saref4watr/Taste">
1208
+ <rdf:type rdf:resource="https://saref.etsi.org/saref4watr/AcceptabilityProperty"/>
1209
+ <rdfs:comment xml:lang="en">Property of the water indicating its taste.</rdfs:comment>
1210
+ <rdfs:label xml:lang="en">Taste</rdfs:label>
1211
+ </owl:NamedIndividual>
1212
+
1213
+
1214
+
1215
+ <!-- https://saref.etsi.org/saref4watr/Temperature -->
1216
+
1217
+ <owl:NamedIndividual rdf:about="https://saref.etsi.org/saref4watr/Temperature">
1218
+ <rdf:type rdf:resource="https://saref.etsi.org/saref4watr/AcceptabilityProperty"/>
1219
+ <rdfs:comment xml:lang="en">Property of the water indicating its temperature.</rdfs:comment>
1220
+ <rdfs:label xml:lang="en">Temperature</rdfs:label>
1221
+ </owl:NamedIndividual>
1222
+
1223
+
1224
+
1225
+ <!-- https://saref.etsi.org/saref4watr/Tetrachloroethene -->
1226
+
1227
+ <owl:NamedIndividual rdf:about="https://saref.etsi.org/saref4watr/Tetrachloroethene">
1228
+ <rdf:type rdf:resource="https://saref.etsi.org/saref4watr/ChemicalProperty"/>
1229
+ <rdfs:comment xml:lang="en">Property of the water indicating its concentration of tetrachloroethene.</rdfs:comment>
1230
+ <rdfs:label xml:lang="en">Tetrachloroethene</rdfs:label>
1231
+ </owl:NamedIndividual>
1232
+
1233
+
1234
+
1235
+ <!-- https://saref.etsi.org/saref4watr/TotalDissolvedSolids -->
1236
+
1237
+ <owl:NamedIndividual rdf:about="https://saref.etsi.org/saref4watr/TotalDissolvedSolids">
1238
+ <rdf:type rdf:resource="https://saref.etsi.org/saref4watr/AcceptabilityProperty"/>
1239
+ <rdfs:comment xml:lang="en">Property of the water indicating the dissolved combined content of all inorganic and organic substances present in a sample of water.</rdfs:comment>
1240
+ <rdfs:label xml:lang="en">Total dissolved solids</rdfs:label>
1241
+ </owl:NamedIndividual>
1242
+
1243
+
1244
+
1245
+ <!-- https://saref.etsi.org/saref4watr/TotalIndicativeDose -->
1246
+
1247
+ <owl:NamedIndividual rdf:about="https://saref.etsi.org/saref4watr/TotalIndicativeDose">
1248
+ <rdf:type rdf:resource="https://saref.etsi.org/saref4watr/AcceptabilityProperty"/>
1249
+ <rdfs:comment xml:lang="en">Property of the water indicating its total indicative dose.</rdfs:comment>
1250
+ <rdfs:label xml:lang="en">Total indicative dose</rdfs:label>
1251
+ </owl:NamedIndividual>
1252
+
1253
+
1254
+
1255
+ <!-- https://saref.etsi.org/saref4watr/TotalOrganicCarbon -->
1256
+
1257
+ <owl:NamedIndividual rdf:about="https://saref.etsi.org/saref4watr/TotalOrganicCarbon">
1258
+ <rdf:type rdf:resource="https://saref.etsi.org/saref4watr/ChemicalProperty"/>
1259
+ <rdfs:comment xml:lang="en">Property of the water indicating its concentration of total organic carbon.</rdfs:comment>
1260
+ <rdfs:label xml:lang="en">TOC</rdfs:label>
1261
+ <rdfs:label xml:lang="en">Total organic carbon</rdfs:label>
1262
+ </owl:NamedIndividual>
1263
+
1264
+
1265
+
1266
+ <!-- https://saref.etsi.org/saref4watr/TotalSuspendedSolids -->
1267
+
1268
+ <owl:NamedIndividual rdf:about="https://saref.etsi.org/saref4watr/TotalSuspendedSolids">
1269
+ <rdf:type rdf:resource="https://saref.etsi.org/saref4watr/AcceptabilityProperty"/>
1270
+ <rdfs:comment xml:lang="en">Property of the water indicating the dry-weight of suspended particles, that are not dissolved, in a sample of water.</rdfs:comment>
1271
+ <rdfs:label xml:lang="en">Total suspended solids</rdfs:label>
1272
+ </owl:NamedIndividual>
1273
+
1274
+
1275
+
1276
+ <!-- https://saref.etsi.org/saref4watr/Trichloroethene -->
1277
+
1278
+ <owl:NamedIndividual rdf:about="https://saref.etsi.org/saref4watr/Trichloroethene">
1279
+ <rdf:type rdf:resource="https://saref.etsi.org/saref4watr/ChemicalProperty"/>
1280
+ <rdfs:comment xml:lang="en">Property of the water indicating its concentration of trichloroethene.</rdfs:comment>
1281
+ <rdfs:label xml:lang="en">Trichloroethene</rdfs:label>
1282
+ </owl:NamedIndividual>
1283
+
1284
+
1285
+
1286
+ <!-- https://saref.etsi.org/saref4watr/Trihalomethanes -->
1287
+
1288
+ <owl:NamedIndividual rdf:about="https://saref.etsi.org/saref4watr/Trihalomethanes">
1289
+ <rdf:type rdf:resource="https://saref.etsi.org/saref4watr/ChemicalProperty"/>
1290
+ <rdfs:comment xml:lang="en">Property of the water indicating its concentration of trihalomethanes.</rdfs:comment>
1291
+ <rdfs:label xml:lang="en">Trihalomethanes</rdfs:label>
1292
+ </owl:NamedIndividual>
1293
+
1294
+
1295
+
1296
+ <!-- https://saref.etsi.org/saref4watr/Tritium -->
1297
+
1298
+ <owl:NamedIndividual rdf:about="https://saref.etsi.org/saref4watr/Tritium">
1299
+ <rdf:type rdf:resource="https://saref.etsi.org/saref4watr/ChemicalProperty"/>
1300
+ <rdfs:comment xml:lang="en">Property of the water indicating its concentration of tritium.</rdfs:comment>
1301
+ <rdfs:label xml:lang="en">Tritium</rdfs:label>
1302
+ </owl:NamedIndividual>
1303
+
1304
+
1305
+
1306
+ <!-- https://saref.etsi.org/saref4watr/Turbidity -->
1307
+
1308
+ <owl:NamedIndividual rdf:about="https://saref.etsi.org/saref4watr/Turbidity">
1309
+ <rdf:type rdf:resource="https://saref.etsi.org/saref4watr/AcceptabilityProperty"/>
1310
+ <rdfs:comment xml:lang="en">Property of the water indicating its turbidity.</rdfs:comment>
1311
+ <rdfs:label xml:lang="en">Turbidity</rdfs:label>
1312
+ </owl:NamedIndividual>
1313
+
1314
+
1315
+
1316
+ <!-- https://saref.etsi.org/saref4watr/VinylChloride -->
1317
+
1318
+ <owl:NamedIndividual rdf:about="https://saref.etsi.org/saref4watr/VinylChloride">
1319
+ <rdf:type rdf:resource="https://saref.etsi.org/saref4watr/ChemicalProperty"/>
1320
+ <rdfs:comment xml:lang="en">Property of the water indicating its concentration of vinyl chloride.</rdfs:comment>
1321
+ <rdfs:label xml:lang="en">Vinyl chloride</rdfs:label>
1322
+ </owl:NamedIndividual>
1323
+
1324
+
1325
+
1326
+ <!-- https://saref.etsi.org/saref4watr/Wastewater -->
1327
+
1328
+ <owl:NamedIndividual rdf:about="https://saref.etsi.org/saref4watr/Wastewater">
1329
+ <rdf:type rdf:resource="https://saref.etsi.org/saref4watr/Water"/>
1330
+ <rdfs:comment xml:lang="en">Wastewater is water that has been used in the home, in a business, or as part of an industrial process.</rdfs:comment>
1331
+ <rdfs:label xml:lang="en">Waste water</rdfs:label>
1332
+ </owl:NamedIndividual>
1333
+
1334
+
1335
+
1336
+ <!-- https://saref.etsi.org/saref4watr/12Dichloroethane -->
1337
+
1338
+ <owl:NamedIndividual rdf:about="https://saref.etsi.org/saref4watr/12Dichloroethane">
1339
+ <rdf:type rdf:resource="https://saref.etsi.org/saref4watr/ChemicalProperty"/>
1340
+ <rdfs:comment xml:lang="en">Property of the water indicating its concentration of 1,2-dichloroethane.</rdfs:comment>
1341
+ <rdfs:label xml:lang="en">1,2-dichloroethane</rdfs:label>
1342
+ </owl:NamedIndividual>
1343
+
1344
+
1345
+
1346
+ <!-- https://www.upm.es/ -->
1347
+
1348
+ <owl:NamedIndividual rdf:about="https://www.upm.es/">
1349
+ <schema:name>Universidad Politécnica de Madrid</schema:name>
1350
+ </owl:NamedIndividual>
1351
+ <rdf:Description>
1352
+ <owl:qualifiedCardinality rdf:datatype="http://www.w3.org/2001/XMLSchema#nonNegativeInteger">1</owl:qualifiedCardinality>
1353
+ </rdf:Description>
1354
+ <rdf:Description>
1355
+ <owl:qualifiedCardinality rdf:datatype="http://www.w3.org/2001/XMLSchema#nonNegativeInteger">1</owl:qualifiedCardinality>
1356
+ </rdf:Description>
1357
+ <rdf:Description>
1358
+ <owl:cardinality rdf:datatype="http://www.w3.org/2001/XMLSchema#nonNegativeInteger">1</owl:cardinality>
1359
+ </rdf:Description>
1360
+ </rdf:RDF>
1361
+
1362
+
1363
+
1364
+ <!-- Generated by the OWL API (version 4.5.13) https://github.com/owlcs/owlapi -->
1365
+
wine/Wine_CQs_Annotations.xlsx ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:be6720fe9aee7ac7d1a01ba4bd7f57f1c2afe63bcacdd18cb61faf767b822039
3
+ size 141535
wine/cq_to_onto_wine.json ADDED
@@ -0,0 +1 @@
 
 
1
+ [{"id": "CQ1", "value": "Which wine characteristics should I consider when choosing a wine?"}, {"id": "CQ2", "value": "Is Bordeaux a red or white wine?"}, {"id": "CQ6", "value": "Does a bouquet or body of a specific wine change with vintage year?"}, {"id": "CQ7", "value": "What were good vintages for Napa Zinfandel?"}, {"id": "CQnew1", "value": "What grapes are used to make Bordeaux wine?"}]
wine/cq_to_terms_wine.json ADDED
@@ -0,0 +1,64 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ [
2
+ {
3
+ "id": "CQ1",
4
+ "question": "Which wine characteristics should I consider when choosing a wine?",
5
+ "classes": [
6
+ "Wine",
7
+ "WineDescriptor"
8
+ ],
9
+ "properties": [
10
+ "hasWineDescriptor"
11
+ ]
12
+ },
13
+ {
14
+ "id": "CQ2",
15
+ "question": "Is Bordeaux a red or white wine?",
16
+ "classes": [
17
+ "Bordeaux",
18
+ "RedBordeaux",
19
+ "RedWine",
20
+ "WhiteBordeaux",
21
+ "WhiteWine",
22
+ "Wine"
23
+ ],
24
+ "properties": []
25
+ },
26
+ {
27
+ "id": "CQ6",
28
+ "question": "Does a bouquet or body of a specific wine change with vintage year?",
29
+ "classes": [
30
+ "Vintage",
31
+ "VintageYear",
32
+ "Wine"
33
+ ],
34
+ "properties": [
35
+ "YearValue",
36
+ "hasBody",
37
+ "hasVintageYear"
38
+ ]
39
+ },
40
+ {
41
+ "id": "CQ7",
42
+ "question": "What were good vintages for Napa Zinfandel?",
43
+ "classes": [
44
+ "Vintage",
45
+ "Zinfandel"
46
+ ],
47
+ "properties": [
48
+ "YearValue",
49
+ "hasVintageYear"
50
+ ]
51
+ },
52
+ {
53
+ "id": "CQnew1",
54
+ "question": "What grapes are used to make Bordeaux wine?",
55
+ "classes": [
56
+ "Bordeaux",
57
+ "Wine",
58
+ "WineGrape"
59
+ ],
60
+ "properties": [
61
+ "madeFromGrape"
62
+ ]
63
+ }
64
+ ]
wine/sub_wine.owl ADDED
@@ -0,0 +1,1899 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?xml version="1.0"?>
2
+ <rdf:RDF xmlns="http://www.w3.org/TR/2003/PR-owl-guide-20031209/wine#"
3
+ xml:base="http://www.w3.org/TR/2003/PR-owl-guide-20031209/wine"
4
+ xmlns:owl="http://www.w3.org/2002/07/owl#"
5
+ xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
6
+ xmlns:xml="http://www.w3.org/XML/1998/namespace"
7
+ xmlns:xsd="http://www.w3.org/2001/XMLSchema#"
8
+ xmlns:rdfs="http://www.w3.org/2000/01/rdf-schema#"
9
+ xmlns:wine="http://www.w3.org/TR/2003/PR-owl-guide-20031209/wine#">
10
+ <owl:Ontology rdf:about="http://www.w3.org/TR/2003/PR-owl-guide-20031209/wine">
11
+ <rdfs:comment>An example OWL ontology</rdfs:comment>
12
+ <rdfs:comment>Derived from the DAML Wine ontology at
13
+ http://ontolingua.stanford.edu/doc/chimaera/ontologies/wines.daml
14
+ Substantially changed, in particular the Region based relations.
15
+ </rdfs:comment>
16
+ <rdfs:label>Wine Ontology</rdfs:label>
17
+ <owl:priorVersion rdf:resource="http://www.w3.org/TR/2003/CR-owl-guide-20030818/wine"/>
18
+ </owl:Ontology>
19
+
20
+
21
+
22
+ <!--
23
+ ///////////////////////////////////////////////////////////////////////////////////////
24
+ //
25
+ // Object Properties
26
+ //
27
+ ///////////////////////////////////////////////////////////////////////////////////////
28
+ -->
29
+
30
+
31
+
32
+
33
+ <!-- http://www.w3.org/TR/2003/PR-owl-guide-20031209/wine#hasBody -->
34
+
35
+ <owl:ObjectProperty rdf:about="http://www.w3.org/TR/2003/PR-owl-guide-20031209/wine#hasBody">
36
+ <rdfs:subPropertyOf rdf:resource="http://www.w3.org/TR/2003/PR-owl-guide-20031209/wine#hasWineDescriptor"/>
37
+ <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#FunctionalProperty"/>
38
+ <rdfs:range rdf:resource="http://www.w3.org/TR/2003/PR-owl-guide-20031209/wine#WineBody"/>
39
+ </owl:ObjectProperty>
40
+
41
+
42
+
43
+ <!-- http://www.w3.org/TR/2003/PR-owl-guide-20031209/wine#hasColor -->
44
+
45
+ <owl:ObjectProperty rdf:about="http://www.w3.org/TR/2003/PR-owl-guide-20031209/wine#hasColor">
46
+ <rdfs:subPropertyOf rdf:resource="http://www.w3.org/TR/2003/PR-owl-guide-20031209/wine#hasWineDescriptor"/>
47
+ <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#FunctionalProperty"/>
48
+ <rdfs:domain rdf:resource="http://www.w3.org/TR/2003/PR-owl-guide-20031209/wine#Wine"/>
49
+ <rdfs:range rdf:resource="http://www.w3.org/TR/2003/PR-owl-guide-20031209/wine#WineColor"/>
50
+ </owl:ObjectProperty>
51
+
52
+
53
+
54
+ <!-- http://www.w3.org/TR/2003/PR-owl-guide-20031209/wine#hasFlavor -->
55
+
56
+ <owl:ObjectProperty rdf:about="http://www.w3.org/TR/2003/PR-owl-guide-20031209/wine#hasFlavor">
57
+ <rdfs:subPropertyOf rdf:resource="http://www.w3.org/TR/2003/PR-owl-guide-20031209/wine#hasWineDescriptor"/>
58
+ <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#FunctionalProperty"/>
59
+ <rdfs:range rdf:resource="http://www.w3.org/TR/2003/PR-owl-guide-20031209/wine#WineFlavor"/>
60
+ </owl:ObjectProperty>
61
+
62
+
63
+
64
+ <!-- http://www.w3.org/TR/2003/PR-owl-guide-20031209/wine#hasSugar -->
65
+
66
+ <owl:ObjectProperty rdf:about="http://www.w3.org/TR/2003/PR-owl-guide-20031209/wine#hasSugar">
67
+ <rdfs:subPropertyOf rdf:resource="http://www.w3.org/TR/2003/PR-owl-guide-20031209/wine#hasWineDescriptor"/>
68
+ <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#FunctionalProperty"/>
69
+ <rdfs:range rdf:resource="http://www.w3.org/TR/2003/PR-owl-guide-20031209/wine#WineSugar"/>
70
+ </owl:ObjectProperty>
71
+
72
+
73
+
74
+ <!-- http://www.w3.org/TR/2003/PR-owl-guide-20031209/wine#hasVintageYear -->
75
+
76
+ <owl:ObjectProperty rdf:about="http://www.w3.org/TR/2003/PR-owl-guide-20031209/wine#hasVintageYear">
77
+ <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#FunctionalProperty"/>
78
+ <rdfs:domain rdf:resource="http://www.w3.org/TR/2003/PR-owl-guide-20031209/wine#Vintage"/>
79
+ <rdfs:range rdf:resource="http://www.w3.org/TR/2003/PR-owl-guide-20031209/wine#VintageYear"/>
80
+ </owl:ObjectProperty>
81
+
82
+
83
+
84
+ <!-- http://www.w3.org/TR/2003/PR-owl-guide-20031209/wine#hasWineDescriptor -->
85
+
86
+ <owl:ObjectProperty rdf:about="http://www.w3.org/TR/2003/PR-owl-guide-20031209/wine#hasWineDescriptor">
87
+ <rdfs:domain rdf:resource="http://www.w3.org/TR/2003/PR-owl-guide-20031209/wine#Wine"/>
88
+ <rdfs:range rdf:resource="http://www.w3.org/TR/2003/PR-owl-guide-20031209/wine#WineDescriptor"/>
89
+ </owl:ObjectProperty>
90
+
91
+
92
+
93
+ <!-- http://www.w3.org/TR/2003/PR-owl-guide-20031209/wine#locatedIn -->
94
+
95
+ <owl:ObjectProperty rdf:about="http://www.w3.org/TR/2003/PR-owl-guide-20031209/wine#locatedIn">
96
+ <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#TransitiveProperty"/>
97
+ <rdfs:domain rdf:resource="http://www.w3.org/2002/07/owl#Thing"/>
98
+ <rdfs:range rdf:resource="http://www.w3.org/TR/2003/PR-owl-guide-20031209/wine#Region"/>
99
+ </owl:ObjectProperty>
100
+
101
+
102
+
103
+ <!-- http://www.w3.org/TR/2003/PR-owl-guide-20031209/wine#madeFromGrape -->
104
+
105
+ <owl:ObjectProperty rdf:about="http://www.w3.org/TR/2003/PR-owl-guide-20031209/wine#madeFromGrape">
106
+ <rdfs:domain rdf:resource="http://www.w3.org/TR/2003/PR-owl-guide-20031209/wine#Wine"/>
107
+ <rdfs:range rdf:resource="http://www.w3.org/TR/2003/PR-owl-guide-20031209/wine#WineGrape"/>
108
+ </owl:ObjectProperty>
109
+
110
+
111
+
112
+ <!--
113
+ ///////////////////////////////////////////////////////////////////////////////////////
114
+ //
115
+ // Data properties
116
+ //
117
+ ///////////////////////////////////////////////////////////////////////////////////////
118
+ -->
119
+
120
+
121
+
122
+
123
+ <!-- http://www.w3.org/TR/2003/PR-owl-guide-20031209/wine#yearValue -->
124
+
125
+ <owl:DatatypeProperty rdf:about="http://www.w3.org/TR/2003/PR-owl-guide-20031209/wine#yearValue">
126
+ <rdfs:domain rdf:resource="http://www.w3.org/TR/2003/PR-owl-guide-20031209/wine#VintageYear"/>
127
+ <rdfs:range rdf:resource="http://www.w3.org/2001/XMLSchema#positiveInteger"/>
128
+ </owl:DatatypeProperty>
129
+
130
+
131
+
132
+ <!--
133
+ ///////////////////////////////////////////////////////////////////////////////////////
134
+ //
135
+ // Classes
136
+ //
137
+ ///////////////////////////////////////////////////////////////////////////////////////
138
+ -->
139
+
140
+
141
+
142
+
143
+ <!-- http://www.w3.org/TR/2003/PR-owl-guide-20031209/wine#Bordeaux -->
144
+
145
+ <owl:Class rdf:about="http://www.w3.org/TR/2003/PR-owl-guide-20031209/wine#Bordeaux">
146
+ <owl:equivalentClass>
147
+ <owl:Class>
148
+ <owl:intersectionOf rdf:parseType="Collection">
149
+ <rdf:Description rdf:about="http://www.w3.org/TR/2003/PR-owl-guide-20031209/wine#Wine"/>
150
+ <owl:Restriction>
151
+ <owl:onProperty rdf:resource="http://www.w3.org/TR/2003/PR-owl-guide-20031209/wine#locatedIn"/>
152
+ <owl:hasValue rdf:resource="http://www.w3.org/TR/2003/PR-owl-guide-20031209/wine#BordeauxRegion"/>
153
+ </owl:Restriction>
154
+ </owl:intersectionOf>
155
+ </owl:Class>
156
+ </owl:equivalentClass>
157
+ </owl:Class>
158
+
159
+
160
+
161
+ <!-- http://www.w3.org/TR/2003/PR-owl-guide-20031209/wine#RedBordeaux -->
162
+
163
+ <owl:Class rdf:about="http://www.w3.org/TR/2003/PR-owl-guide-20031209/wine#RedBordeaux">
164
+ <owl:equivalentClass>
165
+ <owl:Class>
166
+ <owl:intersectionOf rdf:parseType="Collection">
167
+ <rdf:Description rdf:about="http://www.w3.org/TR/2003/PR-owl-guide-20031209/wine#Bordeaux"/>
168
+ <rdf:Description rdf:about="http://www.w3.org/TR/2003/PR-owl-guide-20031209/wine#RedWine"/>
169
+ </owl:intersectionOf>
170
+ </owl:Class>
171
+ </owl:equivalentClass>
172
+ <rdfs:subClassOf>
173
+ <owl:Restriction>
174
+ <owl:onProperty rdf:resource="http://www.w3.org/TR/2003/PR-owl-guide-20031209/wine#madeFromGrape"/>
175
+ <owl:allValuesFrom>
176
+ <owl:Class>
177
+ <owl:oneOf rdf:parseType="Collection">
178
+ <rdf:Description rdf:about="http://www.w3.org/TR/2003/PR-owl-guide-20031209/wine#CabernetSauvignonGrape"/>
179
+ <rdf:Description rdf:about="http://www.w3.org/TR/2003/PR-owl-guide-20031209/wine#MerlotGrape"/>
180
+ </owl:oneOf>
181
+ </owl:Class>
182
+ </owl:allValuesFrom>
183
+ </owl:Restriction>
184
+ </rdfs:subClassOf>
185
+ </owl:Class>
186
+
187
+
188
+
189
+ <!-- http://www.w3.org/TR/2003/PR-owl-guide-20031209/wine#RedWine -->
190
+
191
+ <owl:Class rdf:about="http://www.w3.org/TR/2003/PR-owl-guide-20031209/wine#RedWine">
192
+ <owl:equivalentClass>
193
+ <owl:Class>
194
+ <owl:intersectionOf rdf:parseType="Collection">
195
+ <rdf:Description rdf:about="http://www.w3.org/TR/2003/PR-owl-guide-20031209/wine#Wine"/>
196
+ <owl:Restriction>
197
+ <owl:onProperty rdf:resource="http://www.w3.org/TR/2003/PR-owl-guide-20031209/wine#hasColor"/>
198
+ <owl:hasValue rdf:resource="http://www.w3.org/TR/2003/PR-owl-guide-20031209/wine#Red"/>
199
+ </owl:Restriction>
200
+ </owl:intersectionOf>
201
+ </owl:Class>
202
+ </owl:equivalentClass>
203
+ </owl:Class>
204
+
205
+
206
+
207
+ <!-- http://www.w3.org/TR/2003/PR-owl-guide-20031209/wine#Region -->
208
+
209
+ <owl:Class rdf:about="http://www.w3.org/TR/2003/PR-owl-guide-20031209/wine#Region"/>
210
+
211
+
212
+
213
+ <!-- http://www.w3.org/TR/2003/PR-owl-guide-20031209/wine#Vintage -->
214
+
215
+ <owl:Class rdf:about="http://www.w3.org/TR/2003/PR-owl-guide-20031209/wine#Vintage">
216
+ <rdfs:subClassOf>
217
+ <owl:Restriction>
218
+ <owl:onProperty rdf:resource="http://www.w3.org/TR/2003/PR-owl-guide-20031209/wine#hasVintageYear"/>
219
+ <owl:cardinality rdf:datatype="http://www.w3.org/2001/XMLSchema#nonNegativeInteger">1</owl:cardinality>
220
+ </owl:Restriction>
221
+ </rdfs:subClassOf>
222
+ </owl:Class>
223
+
224
+
225
+
226
+ <!-- http://www.w3.org/TR/2003/PR-owl-guide-20031209/wine#VintageYear -->
227
+
228
+ <owl:Class rdf:about="http://www.w3.org/TR/2003/PR-owl-guide-20031209/wine#VintageYear"/>
229
+
230
+
231
+
232
+ <!-- http://www.w3.org/TR/2003/PR-owl-guide-20031209/wine#WhiteBordeaux -->
233
+
234
+ <owl:Class rdf:about="http://www.w3.org/TR/2003/PR-owl-guide-20031209/wine#WhiteBordeaux">
235
+ <owl:equivalentClass>
236
+ <owl:Class>
237
+ <owl:intersectionOf rdf:parseType="Collection">
238
+ <rdf:Description rdf:about="http://www.w3.org/TR/2003/PR-owl-guide-20031209/wine#Bordeaux"/>
239
+ <rdf:Description rdf:about="http://www.w3.org/TR/2003/PR-owl-guide-20031209/wine#WhiteWine"/>
240
+ </owl:intersectionOf>
241
+ </owl:Class>
242
+ </owl:equivalentClass>
243
+ <rdfs:subClassOf>
244
+ <owl:Restriction>
245
+ <owl:onProperty rdf:resource="http://www.w3.org/TR/2003/PR-owl-guide-20031209/wine#madeFromGrape"/>
246
+ <owl:allValuesFrom>
247
+ <owl:Class>
248
+ <owl:oneOf rdf:parseType="Collection">
249
+ <rdf:Description rdf:about="http://www.w3.org/TR/2003/PR-owl-guide-20031209/wine#SauvignonBlancGrape"/>
250
+ <rdf:Description rdf:about="http://www.w3.org/TR/2003/PR-owl-guide-20031209/wine#SemillonGrape"/>
251
+ </owl:oneOf>
252
+ </owl:Class>
253
+ </owl:allValuesFrom>
254
+ </owl:Restriction>
255
+ </rdfs:subClassOf>
256
+ </owl:Class>
257
+
258
+
259
+
260
+ <!-- http://www.w3.org/TR/2003/PR-owl-guide-20031209/wine#WhiteWine -->
261
+
262
+ <owl:Class rdf:about="http://www.w3.org/TR/2003/PR-owl-guide-20031209/wine#WhiteWine">
263
+ <owl:equivalentClass>
264
+ <owl:Class>
265
+ <owl:intersectionOf rdf:parseType="Collection">
266
+ <rdf:Description rdf:about="http://www.w3.org/TR/2003/PR-owl-guide-20031209/wine#Wine"/>
267
+ <owl:Restriction>
268
+ <owl:onProperty rdf:resource="http://www.w3.org/TR/2003/PR-owl-guide-20031209/wine#hasColor"/>
269
+ <owl:hasValue rdf:resource="http://www.w3.org/TR/2003/PR-owl-guide-20031209/wine#White"/>
270
+ </owl:Restriction>
271
+ </owl:intersectionOf>
272
+ </owl:Class>
273
+ </owl:equivalentClass>
274
+ </owl:Class>
275
+
276
+
277
+
278
+ <!-- http://www.w3.org/TR/2003/PR-owl-guide-20031209/wine#Wine -->
279
+
280
+ <owl:Class rdf:about="http://www.w3.org/TR/2003/PR-owl-guide-20031209/wine#Wine">
281
+ <rdfs:subClassOf>
282
+ <owl:Restriction>
283
+ <owl:onProperty rdf:resource="http://www.w3.org/TR/2003/PR-owl-guide-20031209/wine#locatedIn"/>
284
+ <owl:someValuesFrom rdf:resource="http://www.w3.org/TR/2003/PR-owl-guide-20031209/wine#Region"/>
285
+ </owl:Restriction>
286
+ </rdfs:subClassOf>
287
+ <rdfs:subClassOf>
288
+ <owl:Restriction>
289
+ <owl:onProperty rdf:resource="http://www.w3.org/TR/2003/PR-owl-guide-20031209/wine#madeFromGrape"/>
290
+ <owl:minCardinality rdf:datatype="http://www.w3.org/2001/XMLSchema#nonNegativeInteger">1</owl:minCardinality>
291
+ </owl:Restriction>
292
+ </rdfs:subClassOf>
293
+ <rdfs:subClassOf>
294
+ <owl:Restriction>
295
+ <owl:onProperty rdf:resource="http://www.w3.org/TR/2003/PR-owl-guide-20031209/wine#hasBody"/>
296
+ <owl:cardinality rdf:datatype="http://www.w3.org/2001/XMLSchema#nonNegativeInteger">1</owl:cardinality>
297
+ </owl:Restriction>
298
+ </rdfs:subClassOf>
299
+ <rdfs:subClassOf>
300
+ <owl:Restriction>
301
+ <owl:onProperty rdf:resource="http://www.w3.org/TR/2003/PR-owl-guide-20031209/wine#hasColor"/>
302
+ <owl:cardinality rdf:datatype="http://www.w3.org/2001/XMLSchema#nonNegativeInteger">1</owl:cardinality>
303
+ </owl:Restriction>
304
+ </rdfs:subClassOf>
305
+ <rdfs:subClassOf>
306
+ <owl:Restriction>
307
+ <owl:onProperty rdf:resource="http://www.w3.org/TR/2003/PR-owl-guide-20031209/wine#hasFlavor"/>
308
+ <owl:cardinality rdf:datatype="http://www.w3.org/2001/XMLSchema#nonNegativeInteger">1</owl:cardinality>
309
+ </owl:Restriction>
310
+ </rdfs:subClassOf>
311
+ <rdfs:subClassOf>
312
+ <owl:Restriction>
313
+ <owl:onProperty rdf:resource="http://www.w3.org/TR/2003/PR-owl-guide-20031209/wine#hasSugar"/>
314
+ <owl:cardinality rdf:datatype="http://www.w3.org/2001/XMLSchema#nonNegativeInteger">1</owl:cardinality>
315
+ </owl:Restriction>
316
+ </rdfs:subClassOf>
317
+ <rdfs:label xml:lang="fr">vin</rdfs:label>
318
+ <rdfs:label xml:lang="en">wine</rdfs:label>
319
+ </owl:Class>
320
+
321
+
322
+
323
+ <!-- http://www.w3.org/TR/2003/PR-owl-guide-20031209/wine#WineBody -->
324
+
325
+ <owl:Class rdf:about="http://www.w3.org/TR/2003/PR-owl-guide-20031209/wine#WineBody">
326
+ <owl:equivalentClass>
327
+ <owl:Class>
328
+ <owl:oneOf rdf:parseType="Collection">
329
+ <rdf:Description rdf:about="http://www.w3.org/TR/2003/PR-owl-guide-20031209/wine#Full"/>
330
+ <rdf:Description rdf:about="http://www.w3.org/TR/2003/PR-owl-guide-20031209/wine#Light"/>
331
+ <rdf:Description rdf:about="http://www.w3.org/TR/2003/PR-owl-guide-20031209/wine#Medium"/>
332
+ </owl:oneOf>
333
+ </owl:Class>
334
+ </owl:equivalentClass>
335
+ <rdfs:subClassOf rdf:resource="http://www.w3.org/TR/2003/PR-owl-guide-20031209/wine#WineTaste"/>
336
+ </owl:Class>
337
+
338
+
339
+
340
+ <!-- http://www.w3.org/TR/2003/PR-owl-guide-20031209/wine#WineColor -->
341
+
342
+ <owl:Class rdf:about="http://www.w3.org/TR/2003/PR-owl-guide-20031209/wine#WineColor">
343
+ <owl:equivalentClass>
344
+ <owl:Class>
345
+ <owl:oneOf rdf:parseType="Collection">
346
+ <rdf:Description rdf:about="http://www.w3.org/TR/2003/PR-owl-guide-20031209/wine#Red"/>
347
+ <rdf:Description rdf:about="http://www.w3.org/TR/2003/PR-owl-guide-20031209/wine#Rose"/>
348
+ <rdf:Description rdf:about="http://www.w3.org/TR/2003/PR-owl-guide-20031209/wine#White"/>
349
+ </owl:oneOf>
350
+ </owl:Class>
351
+ </owl:equivalentClass>
352
+ <rdfs:subClassOf rdf:resource="http://www.w3.org/TR/2003/PR-owl-guide-20031209/wine#WineDescriptor"/>
353
+ </owl:Class>
354
+
355
+
356
+
357
+ <!-- http://www.w3.org/TR/2003/PR-owl-guide-20031209/wine#WineDescriptor -->
358
+
359
+ <owl:Class rdf:about="http://www.w3.org/TR/2003/PR-owl-guide-20031209/wine#WineDescriptor">
360
+ <owl:equivalentClass>
361
+ <owl:Class>
362
+ <owl:unionOf rdf:parseType="Collection">
363
+ <rdf:Description rdf:about="http://www.w3.org/TR/2003/PR-owl-guide-20031209/wine#WineColor"/>
364
+ <rdf:Description rdf:about="http://www.w3.org/TR/2003/PR-owl-guide-20031209/wine#WineTaste"/>
365
+ </owl:unionOf>
366
+ </owl:Class>
367
+ </owl:equivalentClass>
368
+ <rdfs:comment>Made WineDescriptor unionType of tastes and color</rdfs:comment>
369
+ </owl:Class>
370
+
371
+
372
+
373
+ <!-- http://www.w3.org/TR/2003/PR-owl-guide-20031209/wine#WineFlavor -->
374
+
375
+ <owl:Class rdf:about="http://www.w3.org/TR/2003/PR-owl-guide-20031209/wine#WineFlavor">
376
+ <owl:equivalentClass>
377
+ <owl:Class>
378
+ <owl:oneOf rdf:parseType="Collection">
379
+ <rdf:Description rdf:about="http://www.w3.org/TR/2003/PR-owl-guide-20031209/wine#Delicate"/>
380
+ <rdf:Description rdf:about="http://www.w3.org/TR/2003/PR-owl-guide-20031209/wine#Moderate"/>
381
+ <rdf:Description rdf:about="http://www.w3.org/TR/2003/PR-owl-guide-20031209/wine#Strong"/>
382
+ </owl:oneOf>
383
+ </owl:Class>
384
+ </owl:equivalentClass>
385
+ <rdfs:subClassOf rdf:resource="http://www.w3.org/TR/2003/PR-owl-guide-20031209/wine#WineTaste"/>
386
+ </owl:Class>
387
+
388
+
389
+
390
+ <!-- http://www.w3.org/TR/2003/PR-owl-guide-20031209/wine#WineGrape -->
391
+
392
+ <owl:Class rdf:about="http://www.w3.org/TR/2003/PR-owl-guide-20031209/wine#WineGrape"/>
393
+
394
+
395
+
396
+ <!-- http://www.w3.org/TR/2003/PR-owl-guide-20031209/wine#WineSugar -->
397
+
398
+ <owl:Class rdf:about="http://www.w3.org/TR/2003/PR-owl-guide-20031209/wine#WineSugar">
399
+ <owl:equivalentClass>
400
+ <owl:Class>
401
+ <owl:oneOf rdf:parseType="Collection">
402
+ <rdf:Description rdf:about="http://www.w3.org/TR/2003/PR-owl-guide-20031209/wine#Dry"/>
403
+ <rdf:Description rdf:about="http://www.w3.org/TR/2003/PR-owl-guide-20031209/wine#OffDry"/>
404
+ <rdf:Description rdf:about="http://www.w3.org/TR/2003/PR-owl-guide-20031209/wine#Sweet"/>
405
+ </owl:oneOf>
406
+ </owl:Class>
407
+ </owl:equivalentClass>
408
+ <rdfs:subClassOf rdf:resource="http://www.w3.org/TR/2003/PR-owl-guide-20031209/wine#WineTaste"/>
409
+ </owl:Class>
410
+
411
+
412
+
413
+ <!-- http://www.w3.org/TR/2003/PR-owl-guide-20031209/wine#WineTaste -->
414
+
415
+ <owl:Class rdf:about="http://www.w3.org/TR/2003/PR-owl-guide-20031209/wine#WineTaste">
416
+ <rdfs:subClassOf rdf:resource="http://www.w3.org/TR/2003/PR-owl-guide-20031209/wine#WineDescriptor"/>
417
+ </owl:Class>
418
+
419
+
420
+
421
+ <!-- http://www.w3.org/TR/2003/PR-owl-guide-20031209/wine#Zinfandel -->
422
+
423
+ <owl:Class rdf:about="http://www.w3.org/TR/2003/PR-owl-guide-20031209/wine#Zinfandel">
424
+ <owl:equivalentClass>
425
+ <owl:Class>
426
+ <owl:intersectionOf rdf:parseType="Collection">
427
+ <rdf:Description rdf:about="http://www.w3.org/TR/2003/PR-owl-guide-20031209/wine#Wine"/>
428
+ <owl:Restriction>
429
+ <owl:onProperty rdf:resource="http://www.w3.org/TR/2003/PR-owl-guide-20031209/wine#madeFromGrape"/>
430
+ <owl:hasValue rdf:resource="http://www.w3.org/TR/2003/PR-owl-guide-20031209/wine#ZinfandelGrape"/>
431
+ </owl:Restriction>
432
+ <owl:Restriction>
433
+ <owl:onProperty rdf:resource="http://www.w3.org/TR/2003/PR-owl-guide-20031209/wine#madeFromGrape"/>
434
+ <owl:maxCardinality rdf:datatype="http://www.w3.org/2001/XMLSchema#nonNegativeInteger">1</owl:maxCardinality>
435
+ </owl:Restriction>
436
+ </owl:intersectionOf>
437
+ </owl:Class>
438
+ </owl:equivalentClass>
439
+ <rdfs:subClassOf>
440
+ <owl:Restriction>
441
+ <owl:onProperty rdf:resource="http://www.w3.org/TR/2003/PR-owl-guide-20031209/wine#hasBody"/>
442
+ <owl:allValuesFrom>
443
+ <owl:Class>
444
+ <owl:oneOf rdf:parseType="Collection">
445
+ <rdf:Description rdf:about="http://www.w3.org/TR/2003/PR-owl-guide-20031209/wine#Full"/>
446
+ <rdf:Description rdf:about="http://www.w3.org/TR/2003/PR-owl-guide-20031209/wine#Medium"/>
447
+ </owl:oneOf>
448
+ </owl:Class>
449
+ </owl:allValuesFrom>
450
+ </owl:Restriction>
451
+ </rdfs:subClassOf>
452
+ <rdfs:subClassOf>
453
+ <owl:Restriction>
454
+ <owl:onProperty rdf:resource="http://www.w3.org/TR/2003/PR-owl-guide-20031209/wine#hasFlavor"/>
455
+ <owl:allValuesFrom>
456
+ <owl:Class>
457
+ <owl:oneOf rdf:parseType="Collection">
458
+ <rdf:Description rdf:about="http://www.w3.org/TR/2003/PR-owl-guide-20031209/wine#Moderate"/>
459
+ <rdf:Description rdf:about="http://www.w3.org/TR/2003/PR-owl-guide-20031209/wine#Strong"/>
460
+ </owl:oneOf>
461
+ </owl:Class>
462
+ </owl:allValuesFrom>
463
+ </owl:Restriction>
464
+ </rdfs:subClassOf>
465
+ <rdfs:subClassOf>
466
+ <owl:Restriction>
467
+ <owl:onProperty rdf:resource="http://www.w3.org/TR/2003/PR-owl-guide-20031209/wine#hasColor"/>
468
+ <owl:hasValue rdf:resource="http://www.w3.org/TR/2003/PR-owl-guide-20031209/wine#Red"/>
469
+ </owl:Restriction>
470
+ </rdfs:subClassOf>
471
+ <rdfs:subClassOf>
472
+ <owl:Restriction>
473
+ <owl:onProperty rdf:resource="http://www.w3.org/TR/2003/PR-owl-guide-20031209/wine#hasSugar"/>
474
+ <owl:hasValue rdf:resource="http://www.w3.org/TR/2003/PR-owl-guide-20031209/wine#Dry"/>
475
+ </owl:Restriction>
476
+ </rdfs:subClassOf>
477
+ </owl:Class>
478
+
479
+
480
+
481
+ <!--
482
+ ///////////////////////////////////////////////////////////////////////////////////////
483
+ //
484
+ // Individuals
485
+ //
486
+ ///////////////////////////////////////////////////////////////////////////////////////
487
+ -->
488
+
489
+
490
+
491
+
492
+ <!-- http://www.w3.org/TR/2003/PR-owl-guide-20031209/wine#AlsaceRegion -->
493
+
494
+ <owl:NamedIndividual rdf:about="http://www.w3.org/TR/2003/PR-owl-guide-20031209/wine#AlsaceRegion">
495
+ <rdf:type rdf:resource="http://www.w3.org/TR/2003/PR-owl-guide-20031209/wine#Region"/>
496
+ <locatedIn rdf:resource="http://www.w3.org/TR/2003/PR-owl-guide-20031209/wine#FrenchRegion"/>
497
+ </owl:NamedIndividual>
498
+
499
+
500
+
501
+ <!-- http://www.w3.org/TR/2003/PR-owl-guide-20031209/wine#AnjouRegion -->
502
+
503
+ <owl:NamedIndividual rdf:about="http://www.w3.org/TR/2003/PR-owl-guide-20031209/wine#AnjouRegion">
504
+ <rdf:type rdf:resource="http://www.w3.org/TR/2003/PR-owl-guide-20031209/wine#Region"/>
505
+ <locatedIn rdf:resource="http://www.w3.org/TR/2003/PR-owl-guide-20031209/wine#LoireRegion"/>
506
+ </owl:NamedIndividual>
507
+
508
+
509
+
510
+ <!-- http://www.w3.org/TR/2003/PR-owl-guide-20031209/wine#ArroyoGrandeRegion -->
511
+
512
+ <owl:NamedIndividual rdf:about="http://www.w3.org/TR/2003/PR-owl-guide-20031209/wine#ArroyoGrandeRegion">
513
+ <rdf:type rdf:resource="http://www.w3.org/TR/2003/PR-owl-guide-20031209/wine#Region"/>
514
+ <locatedIn rdf:resource="http://www.w3.org/TR/2003/PR-owl-guide-20031209/wine#CaliforniaRegion"/>
515
+ </owl:NamedIndividual>
516
+
517
+
518
+
519
+ <!-- http://www.w3.org/TR/2003/PR-owl-guide-20031209/wine#AustralianRegion -->
520
+
521
+ <owl:NamedIndividual rdf:about="http://www.w3.org/TR/2003/PR-owl-guide-20031209/wine#AustralianRegion">
522
+ <rdf:type rdf:resource="http://www.w3.org/TR/2003/PR-owl-guide-20031209/wine#Region"/>
523
+ </owl:NamedIndividual>
524
+
525
+
526
+
527
+ <!-- http://www.w3.org/TR/2003/PR-owl-guide-20031209/wine#Bancroft -->
528
+
529
+ <owl:NamedIndividual rdf:about="http://www.w3.org/TR/2003/PR-owl-guide-20031209/wine#Bancroft"/>
530
+
531
+
532
+
533
+ <!-- http://www.w3.org/TR/2003/PR-owl-guide-20031209/wine#BancroftChardonnay -->
534
+
535
+ <owl:NamedIndividual rdf:about="http://www.w3.org/TR/2003/PR-owl-guide-20031209/wine#BancroftChardonnay">
536
+ <hasBody rdf:resource="http://www.w3.org/TR/2003/PR-owl-guide-20031209/wine#Medium"/>
537
+ <hasFlavor rdf:resource="http://www.w3.org/TR/2003/PR-owl-guide-20031209/wine#Moderate"/>
538
+ <hasSugar rdf:resource="http://www.w3.org/TR/2003/PR-owl-guide-20031209/wine#Dry"/>
539
+ <locatedIn rdf:resource="http://www.w3.org/TR/2003/PR-owl-guide-20031209/wine#NapaRegion"/>
540
+ </owl:NamedIndividual>
541
+
542
+
543
+
544
+ <!-- http://www.w3.org/TR/2003/PR-owl-guide-20031209/wine#BeaujolaisRegion -->
545
+
546
+ <owl:NamedIndividual rdf:about="http://www.w3.org/TR/2003/PR-owl-guide-20031209/wine#BeaujolaisRegion">
547
+ <rdf:type rdf:resource="http://www.w3.org/TR/2003/PR-owl-guide-20031209/wine#Region"/>
548
+ <locatedIn rdf:resource="http://www.w3.org/TR/2003/PR-owl-guide-20031209/wine#FrenchRegion"/>
549
+ </owl:NamedIndividual>
550
+
551
+
552
+
553
+ <!-- http://www.w3.org/TR/2003/PR-owl-guide-20031209/wine#BordeauxRegion -->
554
+
555
+ <owl:NamedIndividual rdf:about="http://www.w3.org/TR/2003/PR-owl-guide-20031209/wine#BordeauxRegion">
556
+ <rdf:type rdf:resource="http://www.w3.org/TR/2003/PR-owl-guide-20031209/wine#Region"/>
557
+ <locatedIn rdf:resource="http://www.w3.org/TR/2003/PR-owl-guide-20031209/wine#FrenchRegion"/>
558
+ </owl:NamedIndividual>
559
+
560
+
561
+
562
+ <!-- http://www.w3.org/TR/2003/PR-owl-guide-20031209/wine#BourgogneRegion -->
563
+
564
+ <owl:NamedIndividual rdf:about="http://www.w3.org/TR/2003/PR-owl-guide-20031209/wine#BourgogneRegion">
565
+ <rdf:type rdf:resource="http://www.w3.org/TR/2003/PR-owl-guide-20031209/wine#Region"/>
566
+ <locatedIn rdf:resource="http://www.w3.org/TR/2003/PR-owl-guide-20031209/wine#FrenchRegion"/>
567
+ </owl:NamedIndividual>
568
+
569
+
570
+
571
+ <!-- http://www.w3.org/TR/2003/PR-owl-guide-20031209/wine#CabernetFrancGrape -->
572
+
573
+ <owl:Thing rdf:about="http://www.w3.org/TR/2003/PR-owl-guide-20031209/wine#CabernetFrancGrape">
574
+ <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#NamedIndividual"/>
575
+ <rdf:type rdf:resource="http://www.w3.org/TR/2003/PR-owl-guide-20031209/wine#WineGrape"/>
576
+ </owl:Thing>
577
+
578
+
579
+
580
+ <!-- http://www.w3.org/TR/2003/PR-owl-guide-20031209/wine#CabernetSauvignonGrape -->
581
+
582
+ <owl:Thing rdf:about="http://www.w3.org/TR/2003/PR-owl-guide-20031209/wine#CabernetSauvignonGrape">
583
+ <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#NamedIndividual"/>
584
+ <rdf:type rdf:resource="http://www.w3.org/TR/2003/PR-owl-guide-20031209/wine#WineGrape"/>
585
+ </owl:Thing>
586
+
587
+
588
+
589
+ <!-- http://www.w3.org/TR/2003/PR-owl-guide-20031209/wine#CaliforniaRegion -->
590
+
591
+ <owl:NamedIndividual rdf:about="http://www.w3.org/TR/2003/PR-owl-guide-20031209/wine#CaliforniaRegion">
592
+ <rdf:type rdf:resource="http://www.w3.org/TR/2003/PR-owl-guide-20031209/wine#Region"/>
593
+ <locatedIn rdf:resource="http://www.w3.org/TR/2003/PR-owl-guide-20031209/wine#USRegion"/>
594
+ </owl:NamedIndividual>
595
+
596
+
597
+
598
+ <!-- http://www.w3.org/TR/2003/PR-owl-guide-20031209/wine#CentralCoastRegion -->
599
+
600
+ <owl:NamedIndividual rdf:about="http://www.w3.org/TR/2003/PR-owl-guide-20031209/wine#CentralCoastRegion">
601
+ <rdf:type rdf:resource="http://www.w3.org/TR/2003/PR-owl-guide-20031209/wine#Region"/>
602
+ <locatedIn rdf:resource="http://www.w3.org/TR/2003/PR-owl-guide-20031209/wine#CaliforniaRegion"/>
603
+ </owl:NamedIndividual>
604
+
605
+
606
+
607
+ <!-- http://www.w3.org/TR/2003/PR-owl-guide-20031209/wine#CentralTexasRegion -->
608
+
609
+ <owl:NamedIndividual rdf:about="http://www.w3.org/TR/2003/PR-owl-guide-20031209/wine#CentralTexasRegion">
610
+ <rdf:type rdf:resource="http://www.w3.org/TR/2003/PR-owl-guide-20031209/wine#Region"/>
611
+ <locatedIn rdf:resource="http://www.w3.org/TR/2003/PR-owl-guide-20031209/wine#TexasRegion"/>
612
+ </owl:NamedIndividual>
613
+
614
+
615
+
616
+ <!-- http://www.w3.org/TR/2003/PR-owl-guide-20031209/wine#ChardonnayGrape -->
617
+
618
+ <owl:NamedIndividual rdf:about="http://www.w3.org/TR/2003/PR-owl-guide-20031209/wine#ChardonnayGrape">
619
+ <rdf:type rdf:resource="http://www.w3.org/TR/2003/PR-owl-guide-20031209/wine#WineGrape"/>
620
+ </owl:NamedIndividual>
621
+
622
+
623
+
624
+ <!-- http://www.w3.org/TR/2003/PR-owl-guide-20031209/wine#ChateauChevalBlanc -->
625
+
626
+ <owl:NamedIndividual rdf:about="http://www.w3.org/TR/2003/PR-owl-guide-20031209/wine#ChateauChevalBlanc"/>
627
+
628
+
629
+
630
+ <!-- http://www.w3.org/TR/2003/PR-owl-guide-20031209/wine#ChateauDYchem -->
631
+
632
+ <owl:NamedIndividual rdf:about="http://www.w3.org/TR/2003/PR-owl-guide-20031209/wine#ChateauDYchem"/>
633
+
634
+
635
+
636
+ <!-- http://www.w3.org/TR/2003/PR-owl-guide-20031209/wine#ChateauDYchemSauterne -->
637
+
638
+ <owl:NamedIndividual rdf:about="http://www.w3.org/TR/2003/PR-owl-guide-20031209/wine#ChateauDYchemSauterne">
639
+ <hasFlavor rdf:resource="http://www.w3.org/TR/2003/PR-owl-guide-20031209/wine#Strong"/>
640
+ <madeFromGrape rdf:resource="http://www.w3.org/TR/2003/PR-owl-guide-20031209/wine#SauvignonBlancGrape"/>
641
+ <madeFromGrape rdf:resource="http://www.w3.org/TR/2003/PR-owl-guide-20031209/wine#SemillonGrape"/>
642
+ </owl:NamedIndividual>
643
+
644
+
645
+
646
+ <!-- http://www.w3.org/TR/2003/PR-owl-guide-20031209/wine#ChateauDeMeursault -->
647
+
648
+ <owl:NamedIndividual rdf:about="http://www.w3.org/TR/2003/PR-owl-guide-20031209/wine#ChateauDeMeursault"/>
649
+
650
+
651
+
652
+ <!-- http://www.w3.org/TR/2003/PR-owl-guide-20031209/wine#ChateauDeMeursaultMeursault -->
653
+
654
+ <owl:NamedIndividual rdf:about="http://www.w3.org/TR/2003/PR-owl-guide-20031209/wine#ChateauDeMeursaultMeursault">
655
+ <hasFlavor rdf:resource="http://www.w3.org/TR/2003/PR-owl-guide-20031209/wine#Moderate"/>
656
+ </owl:NamedIndividual>
657
+
658
+
659
+
660
+ <!-- http://www.w3.org/TR/2003/PR-owl-guide-20031209/wine#ChateauLafiteRothschild -->
661
+
662
+ <owl:NamedIndividual rdf:about="http://www.w3.org/TR/2003/PR-owl-guide-20031209/wine#ChateauLafiteRothschild"/>
663
+
664
+
665
+
666
+ <!-- http://www.w3.org/TR/2003/PR-owl-guide-20031209/wine#ChateauMargauxWinery -->
667
+
668
+ <owl:NamedIndividual rdf:about="http://www.w3.org/TR/2003/PR-owl-guide-20031209/wine#ChateauMargauxWinery"/>
669
+
670
+
671
+
672
+ <!-- http://www.w3.org/TR/2003/PR-owl-guide-20031209/wine#ChateauMorgon -->
673
+
674
+ <owl:NamedIndividual rdf:about="http://www.w3.org/TR/2003/PR-owl-guide-20031209/wine#ChateauMorgon"/>
675
+
676
+
677
+
678
+ <!-- http://www.w3.org/TR/2003/PR-owl-guide-20031209/wine#CheninBlancGrape -->
679
+
680
+ <owl:Thing rdf:about="http://www.w3.org/TR/2003/PR-owl-guide-20031209/wine#CheninBlancGrape">
681
+ <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#NamedIndividual"/>
682
+ <rdf:type rdf:resource="http://www.w3.org/TR/2003/PR-owl-guide-20031209/wine#WineGrape"/>
683
+ </owl:Thing>
684
+
685
+
686
+
687
+ <!-- http://www.w3.org/TR/2003/PR-owl-guide-20031209/wine#ChiantiClassico -->
688
+
689
+ <owl:NamedIndividual rdf:about="http://www.w3.org/TR/2003/PR-owl-guide-20031209/wine#ChiantiClassico">
690
+ <hasBody rdf:resource="http://www.w3.org/TR/2003/PR-owl-guide-20031209/wine#Medium"/>
691
+ </owl:NamedIndividual>
692
+
693
+
694
+
695
+ <!-- http://www.w3.org/TR/2003/PR-owl-guide-20031209/wine#ChiantiRegion -->
696
+
697
+ <owl:NamedIndividual rdf:about="http://www.w3.org/TR/2003/PR-owl-guide-20031209/wine#ChiantiRegion">
698
+ <rdf:type rdf:resource="http://www.w3.org/TR/2003/PR-owl-guide-20031209/wine#Region"/>
699
+ <locatedIn rdf:resource="http://www.w3.org/TR/2003/PR-owl-guide-20031209/wine#ItalianRegion"/>
700
+ </owl:NamedIndividual>
701
+
702
+
703
+
704
+ <!-- http://www.w3.org/TR/2003/PR-owl-guide-20031209/wine#ClosDeLaPoussie -->
705
+
706
+ <owl:NamedIndividual rdf:about="http://www.w3.org/TR/2003/PR-owl-guide-20031209/wine#ClosDeLaPoussie"/>
707
+
708
+
709
+
710
+ <!-- http://www.w3.org/TR/2003/PR-owl-guide-20031209/wine#ClosDeVougeot -->
711
+
712
+ <owl:NamedIndividual rdf:about="http://www.w3.org/TR/2003/PR-owl-guide-20031209/wine#ClosDeVougeot"/>
713
+
714
+
715
+
716
+ <!-- http://www.w3.org/TR/2003/PR-owl-guide-20031209/wine#CongressSprings -->
717
+
718
+ <owl:NamedIndividual rdf:about="http://www.w3.org/TR/2003/PR-owl-guide-20031209/wine#CongressSprings"/>
719
+
720
+
721
+
722
+ <!-- http://www.w3.org/TR/2003/PR-owl-guide-20031209/wine#CongressSpringsSemillon -->
723
+
724
+ <owl:NamedIndividual rdf:about="http://www.w3.org/TR/2003/PR-owl-guide-20031209/wine#CongressSpringsSemillon">
725
+ <hasBody rdf:resource="http://www.w3.org/TR/2003/PR-owl-guide-20031209/wine#Medium"/>
726
+ <hasFlavor rdf:resource="http://www.w3.org/TR/2003/PR-owl-guide-20031209/wine#Moderate"/>
727
+ <hasSugar rdf:resource="http://www.w3.org/TR/2003/PR-owl-guide-20031209/wine#Dry"/>
728
+ </owl:NamedIndividual>
729
+
730
+
731
+
732
+ <!-- http://www.w3.org/TR/2003/PR-owl-guide-20031209/wine#Corbans -->
733
+
734
+ <owl:NamedIndividual rdf:about="http://www.w3.org/TR/2003/PR-owl-guide-20031209/wine#Corbans"/>
735
+
736
+
737
+
738
+ <!-- http://www.w3.org/TR/2003/PR-owl-guide-20031209/wine#CorbansDryWhiteRiesling -->
739
+
740
+ <owl:NamedIndividual rdf:about="http://www.w3.org/TR/2003/PR-owl-guide-20031209/wine#CorbansDryWhiteRiesling">
741
+ <hasBody rdf:resource="http://www.w3.org/TR/2003/PR-owl-guide-20031209/wine#Medium"/>
742
+ <hasFlavor rdf:resource="http://www.w3.org/TR/2003/PR-owl-guide-20031209/wine#Moderate"/>
743
+ <hasSugar rdf:resource="http://www.w3.org/TR/2003/PR-owl-guide-20031209/wine#OffDry"/>
744
+ <locatedIn rdf:resource="http://www.w3.org/TR/2003/PR-owl-guide-20031209/wine#NewZealandRegion"/>
745
+ </owl:NamedIndividual>
746
+
747
+
748
+
749
+ <!-- http://www.w3.org/TR/2003/PR-owl-guide-20031209/wine#CorbansPrivateBinSauvignonBlanc -->
750
+
751
+ <owl:NamedIndividual rdf:about="http://www.w3.org/TR/2003/PR-owl-guide-20031209/wine#CorbansPrivateBinSauvignonBlanc">
752
+ <hasBody rdf:resource="http://www.w3.org/TR/2003/PR-owl-guide-20031209/wine#Full"/>
753
+ <hasFlavor rdf:resource="http://www.w3.org/TR/2003/PR-owl-guide-20031209/wine#Strong"/>
754
+ <hasSugar rdf:resource="http://www.w3.org/TR/2003/PR-owl-guide-20031209/wine#Dry"/>
755
+ <locatedIn rdf:resource="http://www.w3.org/TR/2003/PR-owl-guide-20031209/wine#NewZealandRegion"/>
756
+ </owl:NamedIndividual>
757
+
758
+
759
+
760
+ <!-- http://www.w3.org/TR/2003/PR-owl-guide-20031209/wine#CorbansSauvignonBlanc -->
761
+
762
+ <owl:NamedIndividual rdf:about="http://www.w3.org/TR/2003/PR-owl-guide-20031209/wine#CorbansSauvignonBlanc">
763
+ <hasBody rdf:resource="http://www.w3.org/TR/2003/PR-owl-guide-20031209/wine#Medium"/>
764
+ <hasFlavor rdf:resource="http://www.w3.org/TR/2003/PR-owl-guide-20031209/wine#Strong"/>
765
+ <hasSugar rdf:resource="http://www.w3.org/TR/2003/PR-owl-guide-20031209/wine#Dry"/>
766
+ <locatedIn rdf:resource="http://www.w3.org/TR/2003/PR-owl-guide-20031209/wine#NewZealandRegion"/>
767
+ </owl:NamedIndividual>
768
+
769
+
770
+
771
+ <!-- http://www.w3.org/TR/2003/PR-owl-guide-20031209/wine#CortonMontrachet -->
772
+
773
+ <owl:NamedIndividual rdf:about="http://www.w3.org/TR/2003/PR-owl-guide-20031209/wine#CortonMontrachet"/>
774
+
775
+
776
+
777
+ <!-- http://www.w3.org/TR/2003/PR-owl-guide-20031209/wine#CortonMontrachetWhiteBurgundy -->
778
+
779
+ <owl:NamedIndividual rdf:about="http://www.w3.org/TR/2003/PR-owl-guide-20031209/wine#CortonMontrachetWhiteBurgundy">
780
+ <hasBody rdf:resource="http://www.w3.org/TR/2003/PR-owl-guide-20031209/wine#Full"/>
781
+ <hasFlavor rdf:resource="http://www.w3.org/TR/2003/PR-owl-guide-20031209/wine#Strong"/>
782
+ <hasSugar rdf:resource="http://www.w3.org/TR/2003/PR-owl-guide-20031209/wine#Dry"/>
783
+ </owl:NamedIndividual>
784
+
785
+
786
+
787
+ <!-- http://www.w3.org/TR/2003/PR-owl-guide-20031209/wine#CotesDOrRegion -->
788
+
789
+ <owl:NamedIndividual rdf:about="http://www.w3.org/TR/2003/PR-owl-guide-20031209/wine#CotesDOrRegion">
790
+ <rdf:type rdf:resource="http://www.w3.org/TR/2003/PR-owl-guide-20031209/wine#Region"/>
791
+ <locatedIn rdf:resource="http://www.w3.org/TR/2003/PR-owl-guide-20031209/wine#BourgogneRegion"/>
792
+ </owl:NamedIndividual>
793
+
794
+
795
+
796
+ <!-- http://www.w3.org/TR/2003/PR-owl-guide-20031209/wine#Cotturi -->
797
+
798
+ <owl:NamedIndividual rdf:about="http://www.w3.org/TR/2003/PR-owl-guide-20031209/wine#Cotturi"/>
799
+
800
+
801
+
802
+ <!-- http://www.w3.org/TR/2003/PR-owl-guide-20031209/wine#CotturiZinfandel -->
803
+
804
+ <owl:NamedIndividual rdf:about="http://www.w3.org/TR/2003/PR-owl-guide-20031209/wine#CotturiZinfandel">
805
+ <rdf:type rdf:resource="http://www.w3.org/TR/2003/PR-owl-guide-20031209/wine#Zinfandel"/>
806
+ <hasBody rdf:resource="http://www.w3.org/TR/2003/PR-owl-guide-20031209/wine#Full"/>
807
+ <hasFlavor rdf:resource="http://www.w3.org/TR/2003/PR-owl-guide-20031209/wine#Strong"/>
808
+ <hasSugar rdf:resource="http://www.w3.org/TR/2003/PR-owl-guide-20031209/wine#Dry"/>
809
+ <locatedIn rdf:resource="http://www.w3.org/TR/2003/PR-owl-guide-20031209/wine#SonomaRegion"/>
810
+ </owl:NamedIndividual>
811
+
812
+
813
+
814
+ <!-- http://www.w3.org/TR/2003/PR-owl-guide-20031209/wine#DAnjou -->
815
+
816
+ <owl:NamedIndividual rdf:about="http://www.w3.org/TR/2003/PR-owl-guide-20031209/wine#DAnjou"/>
817
+
818
+
819
+
820
+ <!-- http://www.w3.org/TR/2003/PR-owl-guide-20031209/wine#Delicate -->
821
+
822
+ <owl:Thing rdf:about="http://www.w3.org/TR/2003/PR-owl-guide-20031209/wine#Delicate">
823
+ <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#NamedIndividual"/>
824
+ <rdf:type rdf:resource="http://www.w3.org/TR/2003/PR-owl-guide-20031209/wine#WineFlavor"/>
825
+ </owl:Thing>
826
+
827
+
828
+
829
+ <!-- http://www.w3.org/TR/2003/PR-owl-guide-20031209/wine#Dry -->
830
+
831
+ <owl:Thing rdf:about="http://www.w3.org/TR/2003/PR-owl-guide-20031209/wine#Dry">
832
+ <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#NamedIndividual"/>
833
+ <rdf:type rdf:resource="http://www.w3.org/TR/2003/PR-owl-guide-20031209/wine#WineSugar"/>
834
+ </owl:Thing>
835
+
836
+
837
+
838
+ <!-- http://www.w3.org/TR/2003/PR-owl-guide-20031209/wine#EdnaValleyRegion -->
839
+
840
+ <owl:NamedIndividual rdf:about="http://www.w3.org/TR/2003/PR-owl-guide-20031209/wine#EdnaValleyRegion">
841
+ <rdf:type rdf:resource="http://www.w3.org/TR/2003/PR-owl-guide-20031209/wine#Region"/>
842
+ <locatedIn rdf:resource="http://www.w3.org/TR/2003/PR-owl-guide-20031209/wine#CaliforniaRegion"/>
843
+ </owl:NamedIndividual>
844
+
845
+
846
+
847
+ <!-- http://www.w3.org/TR/2003/PR-owl-guide-20031209/wine#Elyse -->
848
+
849
+ <owl:NamedIndividual rdf:about="http://www.w3.org/TR/2003/PR-owl-guide-20031209/wine#Elyse"/>
850
+
851
+
852
+
853
+ <!-- http://www.w3.org/TR/2003/PR-owl-guide-20031209/wine#ElyseZinfandel -->
854
+
855
+ <owl:NamedIndividual rdf:about="http://www.w3.org/TR/2003/PR-owl-guide-20031209/wine#ElyseZinfandel">
856
+ <rdf:type rdf:resource="http://www.w3.org/TR/2003/PR-owl-guide-20031209/wine#Zinfandel"/>
857
+ <hasBody rdf:resource="http://www.w3.org/TR/2003/PR-owl-guide-20031209/wine#Full"/>
858
+ <hasFlavor rdf:resource="http://www.w3.org/TR/2003/PR-owl-guide-20031209/wine#Moderate"/>
859
+ <hasSugar rdf:resource="http://www.w3.org/TR/2003/PR-owl-guide-20031209/wine#Dry"/>
860
+ <locatedIn rdf:resource="http://www.w3.org/TR/2003/PR-owl-guide-20031209/wine#NapaRegion"/>
861
+ </owl:NamedIndividual>
862
+
863
+
864
+
865
+ <!-- http://www.w3.org/TR/2003/PR-owl-guide-20031209/wine#Forman -->
866
+
867
+ <owl:NamedIndividual rdf:about="http://www.w3.org/TR/2003/PR-owl-guide-20031209/wine#Forman"/>
868
+
869
+
870
+
871
+ <!-- http://www.w3.org/TR/2003/PR-owl-guide-20031209/wine#FormanCabernetSauvignon -->
872
+
873
+ <owl:NamedIndividual rdf:about="http://www.w3.org/TR/2003/PR-owl-guide-20031209/wine#FormanCabernetSauvignon">
874
+ <hasBody rdf:resource="http://www.w3.org/TR/2003/PR-owl-guide-20031209/wine#Medium"/>
875
+ <hasFlavor rdf:resource="http://www.w3.org/TR/2003/PR-owl-guide-20031209/wine#Strong"/>
876
+ <hasSugar rdf:resource="http://www.w3.org/TR/2003/PR-owl-guide-20031209/wine#Dry"/>
877
+ <locatedIn rdf:resource="http://www.w3.org/TR/2003/PR-owl-guide-20031209/wine#NapaRegion"/>
878
+ </owl:NamedIndividual>
879
+
880
+
881
+
882
+ <!-- http://www.w3.org/TR/2003/PR-owl-guide-20031209/wine#FormanChardonnay -->
883
+
884
+ <owl:NamedIndividual rdf:about="http://www.w3.org/TR/2003/PR-owl-guide-20031209/wine#FormanChardonnay">
885
+ <hasBody rdf:resource="http://www.w3.org/TR/2003/PR-owl-guide-20031209/wine#Full"/>
886
+ <hasFlavor rdf:resource="http://www.w3.org/TR/2003/PR-owl-guide-20031209/wine#Moderate"/>
887
+ <hasSugar rdf:resource="http://www.w3.org/TR/2003/PR-owl-guide-20031209/wine#Dry"/>
888
+ <locatedIn rdf:resource="http://www.w3.org/TR/2003/PR-owl-guide-20031209/wine#NapaRegion"/>
889
+ </owl:NamedIndividual>
890
+
891
+
892
+
893
+ <!-- http://www.w3.org/TR/2003/PR-owl-guide-20031209/wine#Foxen -->
894
+
895
+ <owl:NamedIndividual rdf:about="http://www.w3.org/TR/2003/PR-owl-guide-20031209/wine#Foxen"/>
896
+
897
+
898
+
899
+ <!-- http://www.w3.org/TR/2003/PR-owl-guide-20031209/wine#FoxenCheninBlanc -->
900
+
901
+ <owl:NamedIndividual rdf:about="http://www.w3.org/TR/2003/PR-owl-guide-20031209/wine#FoxenCheninBlanc">
902
+ <hasBody rdf:resource="http://www.w3.org/TR/2003/PR-owl-guide-20031209/wine#Full"/>
903
+ <hasFlavor rdf:resource="http://www.w3.org/TR/2003/PR-owl-guide-20031209/wine#Moderate"/>
904
+ <hasSugar rdf:resource="http://www.w3.org/TR/2003/PR-owl-guide-20031209/wine#Dry"/>
905
+ <locatedIn rdf:resource="http://www.w3.org/TR/2003/PR-owl-guide-20031209/wine#SantaBarbaraRegion"/>
906
+ </owl:NamedIndividual>
907
+
908
+
909
+
910
+ <!-- http://www.w3.org/TR/2003/PR-owl-guide-20031209/wine#FrenchRegion -->
911
+
912
+ <owl:NamedIndividual rdf:about="http://www.w3.org/TR/2003/PR-owl-guide-20031209/wine#FrenchRegion">
913
+ <rdf:type rdf:resource="http://www.w3.org/TR/2003/PR-owl-guide-20031209/wine#Region"/>
914
+ </owl:NamedIndividual>
915
+
916
+
917
+
918
+ <!-- http://www.w3.org/TR/2003/PR-owl-guide-20031209/wine#Full -->
919
+
920
+ <owl:Thing rdf:about="http://www.w3.org/TR/2003/PR-owl-guide-20031209/wine#Full">
921
+ <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#NamedIndividual"/>
922
+ <rdf:type rdf:resource="http://www.w3.org/TR/2003/PR-owl-guide-20031209/wine#WineBody"/>
923
+ </owl:Thing>
924
+
925
+
926
+
927
+ <!-- http://www.w3.org/TR/2003/PR-owl-guide-20031209/wine#GamayGrape -->
928
+
929
+ <owl:NamedIndividual rdf:about="http://www.w3.org/TR/2003/PR-owl-guide-20031209/wine#GamayGrape">
930
+ <rdf:type rdf:resource="http://www.w3.org/TR/2003/PR-owl-guide-20031209/wine#WineGrape"/>
931
+ </owl:NamedIndividual>
932
+
933
+
934
+
935
+ <!-- http://www.w3.org/TR/2003/PR-owl-guide-20031209/wine#GaryFarrell -->
936
+
937
+ <owl:NamedIndividual rdf:about="http://www.w3.org/TR/2003/PR-owl-guide-20031209/wine#GaryFarrell"/>
938
+
939
+
940
+
941
+ <!-- http://www.w3.org/TR/2003/PR-owl-guide-20031209/wine#GaryFarrellMerlot -->
942
+
943
+ <owl:NamedIndividual rdf:about="http://www.w3.org/TR/2003/PR-owl-guide-20031209/wine#GaryFarrellMerlot">
944
+ <hasBody rdf:resource="http://www.w3.org/TR/2003/PR-owl-guide-20031209/wine#Medium"/>
945
+ <hasFlavor rdf:resource="http://www.w3.org/TR/2003/PR-owl-guide-20031209/wine#Moderate"/>
946
+ <hasSugar rdf:resource="http://www.w3.org/TR/2003/PR-owl-guide-20031209/wine#Dry"/>
947
+ <locatedIn rdf:resource="http://www.w3.org/TR/2003/PR-owl-guide-20031209/wine#SonomaRegion"/>
948
+ </owl:NamedIndividual>
949
+
950
+
951
+
952
+ <!-- http://www.w3.org/TR/2003/PR-owl-guide-20031209/wine#GermanyRegion -->
953
+
954
+ <owl:NamedIndividual rdf:about="http://www.w3.org/TR/2003/PR-owl-guide-20031209/wine#GermanyRegion">
955
+ <rdf:type rdf:resource="http://www.w3.org/TR/2003/PR-owl-guide-20031209/wine#Region"/>
956
+ </owl:NamedIndividual>
957
+
958
+
959
+
960
+ <!-- http://www.w3.org/TR/2003/PR-owl-guide-20031209/wine#ItalianRegion -->
961
+
962
+ <owl:NamedIndividual rdf:about="http://www.w3.org/TR/2003/PR-owl-guide-20031209/wine#ItalianRegion">
963
+ <rdf:type rdf:resource="http://www.w3.org/TR/2003/PR-owl-guide-20031209/wine#Region"/>
964
+ </owl:NamedIndividual>
965
+
966
+
967
+
968
+ <!-- http://www.w3.org/TR/2003/PR-owl-guide-20031209/wine#KalinCellars -->
969
+
970
+ <owl:NamedIndividual rdf:about="http://www.w3.org/TR/2003/PR-owl-guide-20031209/wine#KalinCellars"/>
971
+
972
+
973
+
974
+ <!-- http://www.w3.org/TR/2003/PR-owl-guide-20031209/wine#KalinCellarsSemillon -->
975
+
976
+ <owl:NamedIndividual rdf:about="http://www.w3.org/TR/2003/PR-owl-guide-20031209/wine#KalinCellarsSemillon">
977
+ <hasBody rdf:resource="http://www.w3.org/TR/2003/PR-owl-guide-20031209/wine#Full"/>
978
+ <hasFlavor rdf:resource="http://www.w3.org/TR/2003/PR-owl-guide-20031209/wine#Strong"/>
979
+ <hasSugar rdf:resource="http://www.w3.org/TR/2003/PR-owl-guide-20031209/wine#Dry"/>
980
+ </owl:NamedIndividual>
981
+
982
+
983
+
984
+ <!-- http://www.w3.org/TR/2003/PR-owl-guide-20031209/wine#KathrynKennedy -->
985
+
986
+ <owl:NamedIndividual rdf:about="http://www.w3.org/TR/2003/PR-owl-guide-20031209/wine#KathrynKennedy"/>
987
+
988
+
989
+
990
+ <!-- http://www.w3.org/TR/2003/PR-owl-guide-20031209/wine#KathrynKennedyLateral -->
991
+
992
+ <owl:NamedIndividual rdf:about="http://www.w3.org/TR/2003/PR-owl-guide-20031209/wine#KathrynKennedyLateral">
993
+ <hasBody rdf:resource="http://www.w3.org/TR/2003/PR-owl-guide-20031209/wine#Medium"/>
994
+ <hasFlavor rdf:resource="http://www.w3.org/TR/2003/PR-owl-guide-20031209/wine#Delicate"/>
995
+ <hasSugar rdf:resource="http://www.w3.org/TR/2003/PR-owl-guide-20031209/wine#Dry"/>
996
+ </owl:NamedIndividual>
997
+
998
+
999
+
1000
+ <!-- http://www.w3.org/TR/2003/PR-owl-guide-20031209/wine#LaneTanner -->
1001
+
1002
+ <owl:NamedIndividual rdf:about="http://www.w3.org/TR/2003/PR-owl-guide-20031209/wine#LaneTanner"/>
1003
+
1004
+
1005
+
1006
+ <!-- http://www.w3.org/TR/2003/PR-owl-guide-20031209/wine#LaneTannerPinotNoir -->
1007
+
1008
+ <owl:NamedIndividual rdf:about="http://www.w3.org/TR/2003/PR-owl-guide-20031209/wine#LaneTannerPinotNoir">
1009
+ <hasBody rdf:resource="http://www.w3.org/TR/2003/PR-owl-guide-20031209/wine#Light"/>
1010
+ <hasFlavor rdf:resource="http://www.w3.org/TR/2003/PR-owl-guide-20031209/wine#Delicate"/>
1011
+ <hasSugar rdf:resource="http://www.w3.org/TR/2003/PR-owl-guide-20031209/wine#Dry"/>
1012
+ <locatedIn rdf:resource="http://www.w3.org/TR/2003/PR-owl-guide-20031209/wine#SantaBarbaraRegion"/>
1013
+ </owl:NamedIndividual>
1014
+
1015
+
1016
+
1017
+ <!-- http://www.w3.org/TR/2003/PR-owl-guide-20031209/wine#Light -->
1018
+
1019
+ <owl:Thing rdf:about="http://www.w3.org/TR/2003/PR-owl-guide-20031209/wine#Light">
1020
+ <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#NamedIndividual"/>
1021
+ <rdf:type rdf:resource="http://www.w3.org/TR/2003/PR-owl-guide-20031209/wine#WineBody"/>
1022
+ </owl:Thing>
1023
+
1024
+
1025
+
1026
+ <!-- http://www.w3.org/TR/2003/PR-owl-guide-20031209/wine#LoireRegion -->
1027
+
1028
+ <owl:NamedIndividual rdf:about="http://www.w3.org/TR/2003/PR-owl-guide-20031209/wine#LoireRegion">
1029
+ <rdf:type rdf:resource="http://www.w3.org/TR/2003/PR-owl-guide-20031209/wine#Region"/>
1030
+ <locatedIn rdf:resource="http://www.w3.org/TR/2003/PR-owl-guide-20031209/wine#FrenchRegion"/>
1031
+ </owl:NamedIndividual>
1032
+
1033
+
1034
+
1035
+ <!-- http://www.w3.org/TR/2003/PR-owl-guide-20031209/wine#Longridge -->
1036
+
1037
+ <owl:NamedIndividual rdf:about="http://www.w3.org/TR/2003/PR-owl-guide-20031209/wine#Longridge"/>
1038
+
1039
+
1040
+
1041
+ <!-- http://www.w3.org/TR/2003/PR-owl-guide-20031209/wine#LongridgeMerlot -->
1042
+
1043
+ <owl:NamedIndividual rdf:about="http://www.w3.org/TR/2003/PR-owl-guide-20031209/wine#LongridgeMerlot">
1044
+ <hasBody rdf:resource="http://www.w3.org/TR/2003/PR-owl-guide-20031209/wine#Light"/>
1045
+ <hasFlavor rdf:resource="http://www.w3.org/TR/2003/PR-owl-guide-20031209/wine#Moderate"/>
1046
+ <hasSugar rdf:resource="http://www.w3.org/TR/2003/PR-owl-guide-20031209/wine#Dry"/>
1047
+ <locatedIn rdf:resource="http://www.w3.org/TR/2003/PR-owl-guide-20031209/wine#NewZealandRegion"/>
1048
+ </owl:NamedIndividual>
1049
+
1050
+
1051
+
1052
+ <!-- http://www.w3.org/TR/2003/PR-owl-guide-20031209/wine#MalbecGrape -->
1053
+
1054
+ <owl:Thing rdf:about="http://www.w3.org/TR/2003/PR-owl-guide-20031209/wine#MalbecGrape">
1055
+ <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#NamedIndividual"/>
1056
+ <rdf:type rdf:resource="http://www.w3.org/TR/2003/PR-owl-guide-20031209/wine#WineGrape"/>
1057
+ </owl:Thing>
1058
+
1059
+
1060
+
1061
+ <!-- http://www.w3.org/TR/2003/PR-owl-guide-20031209/wine#MargauxRegion -->
1062
+
1063
+ <owl:NamedIndividual rdf:about="http://www.w3.org/TR/2003/PR-owl-guide-20031209/wine#MargauxRegion">
1064
+ <rdf:type rdf:resource="http://www.w3.org/TR/2003/PR-owl-guide-20031209/wine#Region"/>
1065
+ <locatedIn rdf:resource="http://www.w3.org/TR/2003/PR-owl-guide-20031209/wine#MedocRegion"/>
1066
+ </owl:NamedIndividual>
1067
+
1068
+
1069
+
1070
+ <!-- http://www.w3.org/TR/2003/PR-owl-guide-20031209/wine#Marietta -->
1071
+
1072
+ <owl:NamedIndividual rdf:about="http://www.w3.org/TR/2003/PR-owl-guide-20031209/wine#Marietta"/>
1073
+
1074
+
1075
+
1076
+ <!-- http://www.w3.org/TR/2003/PR-owl-guide-20031209/wine#MariettaCabernetSauvignon -->
1077
+
1078
+ <owl:NamedIndividual rdf:about="http://www.w3.org/TR/2003/PR-owl-guide-20031209/wine#MariettaCabernetSauvignon">
1079
+ <hasBody rdf:resource="http://www.w3.org/TR/2003/PR-owl-guide-20031209/wine#Medium"/>
1080
+ <hasFlavor rdf:resource="http://www.w3.org/TR/2003/PR-owl-guide-20031209/wine#Moderate"/>
1081
+ <hasSugar rdf:resource="http://www.w3.org/TR/2003/PR-owl-guide-20031209/wine#Dry"/>
1082
+ <locatedIn rdf:resource="http://www.w3.org/TR/2003/PR-owl-guide-20031209/wine#SonomaRegion"/>
1083
+ </owl:NamedIndividual>
1084
+
1085
+
1086
+
1087
+ <!-- http://www.w3.org/TR/2003/PR-owl-guide-20031209/wine#MariettaOldVinesRed -->
1088
+
1089
+ <owl:NamedIndividual rdf:about="http://www.w3.org/TR/2003/PR-owl-guide-20031209/wine#MariettaOldVinesRed">
1090
+ <hasBody rdf:resource="http://www.w3.org/TR/2003/PR-owl-guide-20031209/wine#Medium"/>
1091
+ <hasFlavor rdf:resource="http://www.w3.org/TR/2003/PR-owl-guide-20031209/wine#Moderate"/>
1092
+ <hasSugar rdf:resource="http://www.w3.org/TR/2003/PR-owl-guide-20031209/wine#Dry"/>
1093
+ <locatedIn rdf:resource="http://www.w3.org/TR/2003/PR-owl-guide-20031209/wine#SonomaRegion"/>
1094
+ </owl:NamedIndividual>
1095
+
1096
+
1097
+
1098
+ <!-- http://www.w3.org/TR/2003/PR-owl-guide-20031209/wine#MariettaPetiteSyrah -->
1099
+
1100
+ <owl:NamedIndividual rdf:about="http://www.w3.org/TR/2003/PR-owl-guide-20031209/wine#MariettaPetiteSyrah">
1101
+ <hasBody rdf:resource="http://www.w3.org/TR/2003/PR-owl-guide-20031209/wine#Medium"/>
1102
+ <hasFlavor rdf:resource="http://www.w3.org/TR/2003/PR-owl-guide-20031209/wine#Moderate"/>
1103
+ <hasSugar rdf:resource="http://www.w3.org/TR/2003/PR-owl-guide-20031209/wine#Dry"/>
1104
+ <locatedIn rdf:resource="http://www.w3.org/TR/2003/PR-owl-guide-20031209/wine#SonomaRegion"/>
1105
+ </owl:NamedIndividual>
1106
+
1107
+
1108
+
1109
+ <!-- http://www.w3.org/TR/2003/PR-owl-guide-20031209/wine#MariettaZinfandel -->
1110
+
1111
+ <owl:NamedIndividual rdf:about="http://www.w3.org/TR/2003/PR-owl-guide-20031209/wine#MariettaZinfandel">
1112
+ <rdf:type rdf:resource="http://www.w3.org/TR/2003/PR-owl-guide-20031209/wine#Zinfandel"/>
1113
+ <hasBody rdf:resource="http://www.w3.org/TR/2003/PR-owl-guide-20031209/wine#Medium"/>
1114
+ <hasFlavor rdf:resource="http://www.w3.org/TR/2003/PR-owl-guide-20031209/wine#Moderate"/>
1115
+ <hasSugar rdf:resource="http://www.w3.org/TR/2003/PR-owl-guide-20031209/wine#Dry"/>
1116
+ <locatedIn rdf:resource="http://www.w3.org/TR/2003/PR-owl-guide-20031209/wine#SonomaRegion"/>
1117
+ </owl:NamedIndividual>
1118
+
1119
+
1120
+
1121
+ <!-- http://www.w3.org/TR/2003/PR-owl-guide-20031209/wine#McGuinnesso -->
1122
+
1123
+ <owl:NamedIndividual rdf:about="http://www.w3.org/TR/2003/PR-owl-guide-20031209/wine#McGuinnesso"/>
1124
+
1125
+
1126
+
1127
+ <!-- http://www.w3.org/TR/2003/PR-owl-guide-20031209/wine#Medium -->
1128
+
1129
+ <owl:Thing rdf:about="http://www.w3.org/TR/2003/PR-owl-guide-20031209/wine#Medium">
1130
+ <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#NamedIndividual"/>
1131
+ <rdf:type rdf:resource="http://www.w3.org/TR/2003/PR-owl-guide-20031209/wine#WineBody"/>
1132
+ </owl:Thing>
1133
+
1134
+
1135
+
1136
+ <!-- http://www.w3.org/TR/2003/PR-owl-guide-20031209/wine#MedocRegion -->
1137
+
1138
+ <owl:NamedIndividual rdf:about="http://www.w3.org/TR/2003/PR-owl-guide-20031209/wine#MedocRegion">
1139
+ <rdf:type rdf:resource="http://www.w3.org/TR/2003/PR-owl-guide-20031209/wine#Region"/>
1140
+ <locatedIn rdf:resource="http://www.w3.org/TR/2003/PR-owl-guide-20031209/wine#BordeauxRegion"/>
1141
+ </owl:NamedIndividual>
1142
+
1143
+
1144
+
1145
+ <!-- http://www.w3.org/TR/2003/PR-owl-guide-20031209/wine#MendocinoRegion -->
1146
+
1147
+ <owl:NamedIndividual rdf:about="http://www.w3.org/TR/2003/PR-owl-guide-20031209/wine#MendocinoRegion">
1148
+ <rdf:type rdf:resource="http://www.w3.org/TR/2003/PR-owl-guide-20031209/wine#Region"/>
1149
+ <locatedIn rdf:resource="http://www.w3.org/TR/2003/PR-owl-guide-20031209/wine#CaliforniaRegion"/>
1150
+ </owl:NamedIndividual>
1151
+
1152
+
1153
+
1154
+ <!-- http://www.w3.org/TR/2003/PR-owl-guide-20031209/wine#MerlotGrape -->
1155
+
1156
+ <owl:Thing rdf:about="http://www.w3.org/TR/2003/PR-owl-guide-20031209/wine#MerlotGrape">
1157
+ <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#NamedIndividual"/>
1158
+ <rdf:type rdf:resource="http://www.w3.org/TR/2003/PR-owl-guide-20031209/wine#WineGrape"/>
1159
+ </owl:Thing>
1160
+
1161
+
1162
+
1163
+ <!-- http://www.w3.org/TR/2003/PR-owl-guide-20031209/wine#MeursaultRegion -->
1164
+
1165
+ <owl:NamedIndividual rdf:about="http://www.w3.org/TR/2003/PR-owl-guide-20031209/wine#MeursaultRegion">
1166
+ <rdf:type rdf:resource="http://www.w3.org/TR/2003/PR-owl-guide-20031209/wine#Region"/>
1167
+ <locatedIn rdf:resource="http://www.w3.org/TR/2003/PR-owl-guide-20031209/wine#BourgogneRegion"/>
1168
+ </owl:NamedIndividual>
1169
+
1170
+
1171
+
1172
+ <!-- http://www.w3.org/TR/2003/PR-owl-guide-20031209/wine#Moderate -->
1173
+
1174
+ <owl:Thing rdf:about="http://www.w3.org/TR/2003/PR-owl-guide-20031209/wine#Moderate">
1175
+ <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#NamedIndividual"/>
1176
+ <rdf:type rdf:resource="http://www.w3.org/TR/2003/PR-owl-guide-20031209/wine#WineFlavor"/>
1177
+ </owl:Thing>
1178
+
1179
+
1180
+
1181
+ <!-- http://www.w3.org/TR/2003/PR-owl-guide-20031209/wine#MountEdenVineyard -->
1182
+
1183
+ <owl:NamedIndividual rdf:about="http://www.w3.org/TR/2003/PR-owl-guide-20031209/wine#MountEdenVineyard"/>
1184
+
1185
+
1186
+
1187
+ <!-- http://www.w3.org/TR/2003/PR-owl-guide-20031209/wine#MountEdenVineyardEdnaValleyChardonnay -->
1188
+
1189
+ <owl:NamedIndividual rdf:about="http://www.w3.org/TR/2003/PR-owl-guide-20031209/wine#MountEdenVineyardEdnaValleyChardonnay">
1190
+ <hasBody rdf:resource="http://www.w3.org/TR/2003/PR-owl-guide-20031209/wine#Medium"/>
1191
+ <hasFlavor rdf:resource="http://www.w3.org/TR/2003/PR-owl-guide-20031209/wine#Moderate"/>
1192
+ <hasSugar rdf:resource="http://www.w3.org/TR/2003/PR-owl-guide-20031209/wine#Dry"/>
1193
+ <locatedIn rdf:resource="http://www.w3.org/TR/2003/PR-owl-guide-20031209/wine#EdnaValleyRegion"/>
1194
+ </owl:NamedIndividual>
1195
+
1196
+
1197
+
1198
+ <!-- http://www.w3.org/TR/2003/PR-owl-guide-20031209/wine#MountEdenVineyardEstatePinotNoir -->
1199
+
1200
+ <owl:NamedIndividual rdf:about="http://www.w3.org/TR/2003/PR-owl-guide-20031209/wine#MountEdenVineyardEstatePinotNoir">
1201
+ <hasBody rdf:resource="http://www.w3.org/TR/2003/PR-owl-guide-20031209/wine#Full"/>
1202
+ <hasFlavor rdf:resource="http://www.w3.org/TR/2003/PR-owl-guide-20031209/wine#Strong"/>
1203
+ <hasSugar rdf:resource="http://www.w3.org/TR/2003/PR-owl-guide-20031209/wine#Dry"/>
1204
+ <locatedIn rdf:resource="http://www.w3.org/TR/2003/PR-owl-guide-20031209/wine#EdnaValleyRegion"/>
1205
+ </owl:NamedIndividual>
1206
+
1207
+
1208
+
1209
+ <!-- http://www.w3.org/TR/2003/PR-owl-guide-20031209/wine#Mountadam -->
1210
+
1211
+ <owl:NamedIndividual rdf:about="http://www.w3.org/TR/2003/PR-owl-guide-20031209/wine#Mountadam"/>
1212
+
1213
+
1214
+
1215
+ <!-- http://www.w3.org/TR/2003/PR-owl-guide-20031209/wine#MountadamChardonnay -->
1216
+
1217
+ <owl:NamedIndividual rdf:about="http://www.w3.org/TR/2003/PR-owl-guide-20031209/wine#MountadamChardonnay">
1218
+ <hasBody rdf:resource="http://www.w3.org/TR/2003/PR-owl-guide-20031209/wine#Full"/>
1219
+ <hasFlavor rdf:resource="http://www.w3.org/TR/2003/PR-owl-guide-20031209/wine#Strong"/>
1220
+ <hasSugar rdf:resource="http://www.w3.org/TR/2003/PR-owl-guide-20031209/wine#Dry"/>
1221
+ <locatedIn rdf:resource="http://www.w3.org/TR/2003/PR-owl-guide-20031209/wine#SouthAustraliaRegion"/>
1222
+ </owl:NamedIndividual>
1223
+
1224
+
1225
+
1226
+ <!-- http://www.w3.org/TR/2003/PR-owl-guide-20031209/wine#MountadamPinotNoir -->
1227
+
1228
+ <owl:NamedIndividual rdf:about="http://www.w3.org/TR/2003/PR-owl-guide-20031209/wine#MountadamPinotNoir">
1229
+ <hasBody rdf:resource="http://www.w3.org/TR/2003/PR-owl-guide-20031209/wine#Medium"/>
1230
+ <hasFlavor rdf:resource="http://www.w3.org/TR/2003/PR-owl-guide-20031209/wine#Moderate"/>
1231
+ <hasSugar rdf:resource="http://www.w3.org/TR/2003/PR-owl-guide-20031209/wine#Dry"/>
1232
+ <locatedIn rdf:resource="http://www.w3.org/TR/2003/PR-owl-guide-20031209/wine#SouthAustraliaRegion"/>
1233
+ </owl:NamedIndividual>
1234
+
1235
+
1236
+
1237
+ <!-- http://www.w3.org/TR/2003/PR-owl-guide-20031209/wine#MountadamRiesling -->
1238
+
1239
+ <owl:NamedIndividual rdf:about="http://www.w3.org/TR/2003/PR-owl-guide-20031209/wine#MountadamRiesling">
1240
+ <hasBody rdf:resource="http://www.w3.org/TR/2003/PR-owl-guide-20031209/wine#Medium"/>
1241
+ <hasFlavor rdf:resource="http://www.w3.org/TR/2003/PR-owl-guide-20031209/wine#Delicate"/>
1242
+ <hasSugar rdf:resource="http://www.w3.org/TR/2003/PR-owl-guide-20031209/wine#Dry"/>
1243
+ <locatedIn rdf:resource="http://www.w3.org/TR/2003/PR-owl-guide-20031209/wine#SouthAustraliaRegion"/>
1244
+ </owl:NamedIndividual>
1245
+
1246
+
1247
+
1248
+ <!-- http://www.w3.org/TR/2003/PR-owl-guide-20031209/wine#MuscadetRegion -->
1249
+
1250
+ <owl:NamedIndividual rdf:about="http://www.w3.org/TR/2003/PR-owl-guide-20031209/wine#MuscadetRegion">
1251
+ <rdf:type rdf:resource="http://www.w3.org/TR/2003/PR-owl-guide-20031209/wine#Region"/>
1252
+ <locatedIn rdf:resource="http://www.w3.org/TR/2003/PR-owl-guide-20031209/wine#LoireRegion"/>
1253
+ </owl:NamedIndividual>
1254
+
1255
+
1256
+
1257
+ <!-- http://www.w3.org/TR/2003/PR-owl-guide-20031209/wine#NapaRegion -->
1258
+
1259
+ <owl:NamedIndividual rdf:about="http://www.w3.org/TR/2003/PR-owl-guide-20031209/wine#NapaRegion">
1260
+ <rdf:type rdf:resource="http://www.w3.org/TR/2003/PR-owl-guide-20031209/wine#Region"/>
1261
+ <locatedIn rdf:resource="http://www.w3.org/TR/2003/PR-owl-guide-20031209/wine#CaliforniaRegion"/>
1262
+ </owl:NamedIndividual>
1263
+
1264
+
1265
+
1266
+ <!-- http://www.w3.org/TR/2003/PR-owl-guide-20031209/wine#NewZealandRegion -->
1267
+
1268
+ <owl:NamedIndividual rdf:about="http://www.w3.org/TR/2003/PR-owl-guide-20031209/wine#NewZealandRegion">
1269
+ <rdf:type rdf:resource="http://www.w3.org/TR/2003/PR-owl-guide-20031209/wine#Region"/>
1270
+ </owl:NamedIndividual>
1271
+
1272
+
1273
+
1274
+ <!-- http://www.w3.org/TR/2003/PR-owl-guide-20031209/wine#OffDry -->
1275
+
1276
+ <owl:Thing rdf:about="http://www.w3.org/TR/2003/PR-owl-guide-20031209/wine#OffDry">
1277
+ <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#NamedIndividual"/>
1278
+ <rdf:type rdf:resource="http://www.w3.org/TR/2003/PR-owl-guide-20031209/wine#WineSugar"/>
1279
+ </owl:Thing>
1280
+
1281
+
1282
+
1283
+ <!-- http://www.w3.org/TR/2003/PR-owl-guide-20031209/wine#PageMillWinery -->
1284
+
1285
+ <owl:NamedIndividual rdf:about="http://www.w3.org/TR/2003/PR-owl-guide-20031209/wine#PageMillWinery"/>
1286
+
1287
+
1288
+
1289
+ <!-- http://www.w3.org/TR/2003/PR-owl-guide-20031209/wine#PageMillWineryCabernetSauvignon -->
1290
+
1291
+ <owl:NamedIndividual rdf:about="http://www.w3.org/TR/2003/PR-owl-guide-20031209/wine#PageMillWineryCabernetSauvignon">
1292
+ <hasBody rdf:resource="http://www.w3.org/TR/2003/PR-owl-guide-20031209/wine#Medium"/>
1293
+ <hasFlavor rdf:resource="http://www.w3.org/TR/2003/PR-owl-guide-20031209/wine#Moderate"/>
1294
+ <hasSugar rdf:resource="http://www.w3.org/TR/2003/PR-owl-guide-20031209/wine#Dry"/>
1295
+ <locatedIn rdf:resource="http://www.w3.org/TR/2003/PR-owl-guide-20031209/wine#NapaRegion"/>
1296
+ </owl:NamedIndividual>
1297
+
1298
+
1299
+
1300
+ <!-- http://www.w3.org/TR/2003/PR-owl-guide-20031209/wine#PauillacRegion -->
1301
+
1302
+ <owl:NamedIndividual rdf:about="http://www.w3.org/TR/2003/PR-owl-guide-20031209/wine#PauillacRegion">
1303
+ <rdf:type rdf:resource="http://www.w3.org/TR/2003/PR-owl-guide-20031209/wine#Region"/>
1304
+ <locatedIn rdf:resource="http://www.w3.org/TR/2003/PR-owl-guide-20031209/wine#MedocRegion"/>
1305
+ </owl:NamedIndividual>
1306
+
1307
+
1308
+
1309
+ <!-- http://www.w3.org/TR/2003/PR-owl-guide-20031209/wine#PeterMccoy -->
1310
+
1311
+ <owl:NamedIndividual rdf:about="http://www.w3.org/TR/2003/PR-owl-guide-20031209/wine#PeterMccoy"/>
1312
+
1313
+
1314
+
1315
+ <!-- http://www.w3.org/TR/2003/PR-owl-guide-20031209/wine#PeterMccoyChardonnay -->
1316
+
1317
+ <owl:NamedIndividual rdf:about="http://www.w3.org/TR/2003/PR-owl-guide-20031209/wine#PeterMccoyChardonnay">
1318
+ <hasBody rdf:resource="http://www.w3.org/TR/2003/PR-owl-guide-20031209/wine#Medium"/>
1319
+ <hasFlavor rdf:resource="http://www.w3.org/TR/2003/PR-owl-guide-20031209/wine#Moderate"/>
1320
+ <hasSugar rdf:resource="http://www.w3.org/TR/2003/PR-owl-guide-20031209/wine#Dry"/>
1321
+ <locatedIn rdf:resource="http://www.w3.org/TR/2003/PR-owl-guide-20031209/wine#SonomaRegion"/>
1322
+ </owl:NamedIndividual>
1323
+
1324
+
1325
+
1326
+ <!-- http://www.w3.org/TR/2003/PR-owl-guide-20031209/wine#PetiteSyrahGrape -->
1327
+
1328
+ <owl:NamedIndividual rdf:about="http://www.w3.org/TR/2003/PR-owl-guide-20031209/wine#PetiteSyrahGrape">
1329
+ <rdf:type rdf:resource="http://www.w3.org/TR/2003/PR-owl-guide-20031209/wine#WineGrape"/>
1330
+ </owl:NamedIndividual>
1331
+
1332
+
1333
+
1334
+ <!-- http://www.w3.org/TR/2003/PR-owl-guide-20031209/wine#PetiteVerdotGrape -->
1335
+
1336
+ <owl:Thing rdf:about="http://www.w3.org/TR/2003/PR-owl-guide-20031209/wine#PetiteVerdotGrape">
1337
+ <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#NamedIndividual"/>
1338
+ <rdf:type rdf:resource="http://www.w3.org/TR/2003/PR-owl-guide-20031209/wine#WineGrape"/>
1339
+ </owl:Thing>
1340
+
1341
+
1342
+
1343
+ <!-- http://www.w3.org/TR/2003/PR-owl-guide-20031209/wine#PinotBlancGrape -->
1344
+
1345
+ <owl:Thing rdf:about="http://www.w3.org/TR/2003/PR-owl-guide-20031209/wine#PinotBlancGrape">
1346
+ <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#NamedIndividual"/>
1347
+ <rdf:type rdf:resource="http://www.w3.org/TR/2003/PR-owl-guide-20031209/wine#WineGrape"/>
1348
+ </owl:Thing>
1349
+
1350
+
1351
+
1352
+ <!-- http://www.w3.org/TR/2003/PR-owl-guide-20031209/wine#PinotNoirGrape -->
1353
+
1354
+ <owl:NamedIndividual rdf:about="http://www.w3.org/TR/2003/PR-owl-guide-20031209/wine#PinotNoirGrape">
1355
+ <rdf:type rdf:resource="http://www.w3.org/TR/2003/PR-owl-guide-20031209/wine#WineGrape"/>
1356
+ </owl:NamedIndividual>
1357
+
1358
+
1359
+
1360
+ <!-- http://www.w3.org/TR/2003/PR-owl-guide-20031209/wine#PortugalRegion -->
1361
+
1362
+ <owl:NamedIndividual rdf:about="http://www.w3.org/TR/2003/PR-owl-guide-20031209/wine#PortugalRegion">
1363
+ <rdf:type rdf:resource="http://www.w3.org/TR/2003/PR-owl-guide-20031209/wine#Region"/>
1364
+ </owl:NamedIndividual>
1365
+
1366
+
1367
+
1368
+ <!-- http://www.w3.org/TR/2003/PR-owl-guide-20031209/wine#PulignyMontrachet -->
1369
+
1370
+ <owl:NamedIndividual rdf:about="http://www.w3.org/TR/2003/PR-owl-guide-20031209/wine#PulignyMontrachet"/>
1371
+
1372
+
1373
+
1374
+ <!-- http://www.w3.org/TR/2003/PR-owl-guide-20031209/wine#PulignyMontrachetWhiteBurgundy -->
1375
+
1376
+ <owl:NamedIndividual rdf:about="http://www.w3.org/TR/2003/PR-owl-guide-20031209/wine#PulignyMontrachetWhiteBurgundy">
1377
+ <hasBody rdf:resource="http://www.w3.org/TR/2003/PR-owl-guide-20031209/wine#Medium"/>
1378
+ <hasFlavor rdf:resource="http://www.w3.org/TR/2003/PR-owl-guide-20031209/wine#Moderate"/>
1379
+ <hasSugar rdf:resource="http://www.w3.org/TR/2003/PR-owl-guide-20031209/wine#Dry"/>
1380
+ </owl:NamedIndividual>
1381
+
1382
+
1383
+
1384
+ <!-- http://www.w3.org/TR/2003/PR-owl-guide-20031209/wine#Red -->
1385
+
1386
+ <owl:Thing rdf:about="http://www.w3.org/TR/2003/PR-owl-guide-20031209/wine#Red">
1387
+ <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#NamedIndividual"/>
1388
+ <rdf:type rdf:resource="http://www.w3.org/TR/2003/PR-owl-guide-20031209/wine#WineColor"/>
1389
+ </owl:Thing>
1390
+
1391
+
1392
+
1393
+ <!-- http://www.w3.org/TR/2003/PR-owl-guide-20031209/wine#RieslingGrape -->
1394
+
1395
+ <owl:NamedIndividual rdf:about="http://www.w3.org/TR/2003/PR-owl-guide-20031209/wine#RieslingGrape">
1396
+ <rdf:type rdf:resource="http://www.w3.org/TR/2003/PR-owl-guide-20031209/wine#WineGrape"/>
1397
+ </owl:NamedIndividual>
1398
+
1399
+
1400
+
1401
+ <!-- http://www.w3.org/TR/2003/PR-owl-guide-20031209/wine#Rose -->
1402
+
1403
+ <owl:Thing rdf:about="http://www.w3.org/TR/2003/PR-owl-guide-20031209/wine#Rose">
1404
+ <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#NamedIndividual"/>
1405
+ <rdf:type rdf:resource="http://www.w3.org/TR/2003/PR-owl-guide-20031209/wine#WineColor"/>
1406
+ </owl:Thing>
1407
+
1408
+
1409
+
1410
+ <!-- http://www.w3.org/TR/2003/PR-owl-guide-20031209/wine#SancerreRegion -->
1411
+
1412
+ <owl:NamedIndividual rdf:about="http://www.w3.org/TR/2003/PR-owl-guide-20031209/wine#SancerreRegion">
1413
+ <rdf:type rdf:resource="http://www.w3.org/TR/2003/PR-owl-guide-20031209/wine#Region"/>
1414
+ <locatedIn rdf:resource="http://www.w3.org/TR/2003/PR-owl-guide-20031209/wine#LoireRegion"/>
1415
+ </owl:NamedIndividual>
1416
+
1417
+
1418
+
1419
+ <!-- http://www.w3.org/TR/2003/PR-owl-guide-20031209/wine#SangioveseGrape -->
1420
+
1421
+ <owl:NamedIndividual rdf:about="http://www.w3.org/TR/2003/PR-owl-guide-20031209/wine#SangioveseGrape">
1422
+ <rdf:type rdf:resource="http://www.w3.org/TR/2003/PR-owl-guide-20031209/wine#WineGrape"/>
1423
+ </owl:NamedIndividual>
1424
+
1425
+
1426
+
1427
+ <!-- http://www.w3.org/TR/2003/PR-owl-guide-20031209/wine#SantaBarbaraRegion -->
1428
+
1429
+ <owl:NamedIndividual rdf:about="http://www.w3.org/TR/2003/PR-owl-guide-20031209/wine#SantaBarbaraRegion">
1430
+ <rdf:type rdf:resource="http://www.w3.org/TR/2003/PR-owl-guide-20031209/wine#Region"/>
1431
+ <locatedIn rdf:resource="http://www.w3.org/TR/2003/PR-owl-guide-20031209/wine#CaliforniaRegion"/>
1432
+ </owl:NamedIndividual>
1433
+
1434
+
1435
+
1436
+ <!-- http://www.w3.org/TR/2003/PR-owl-guide-20031209/wine#SantaCruzMountainVineyard -->
1437
+
1438
+ <owl:NamedIndividual rdf:about="http://www.w3.org/TR/2003/PR-owl-guide-20031209/wine#SantaCruzMountainVineyard"/>
1439
+
1440
+
1441
+
1442
+ <!-- http://www.w3.org/TR/2003/PR-owl-guide-20031209/wine#SantaCruzMountainVineyardCabernetSauvignon -->
1443
+
1444
+ <owl:NamedIndividual rdf:about="http://www.w3.org/TR/2003/PR-owl-guide-20031209/wine#SantaCruzMountainVineyardCabernetSauvignon">
1445
+ <hasBody rdf:resource="http://www.w3.org/TR/2003/PR-owl-guide-20031209/wine#Full"/>
1446
+ <hasFlavor rdf:resource="http://www.w3.org/TR/2003/PR-owl-guide-20031209/wine#Strong"/>
1447
+ <hasSugar rdf:resource="http://www.w3.org/TR/2003/PR-owl-guide-20031209/wine#Dry"/>
1448
+ <locatedIn rdf:resource="http://www.w3.org/TR/2003/PR-owl-guide-20031209/wine#SantaCruzMountainsRegion"/>
1449
+ </owl:NamedIndividual>
1450
+
1451
+
1452
+
1453
+ <!-- http://www.w3.org/TR/2003/PR-owl-guide-20031209/wine#SantaCruzMountainsRegion -->
1454
+
1455
+ <owl:NamedIndividual rdf:about="http://www.w3.org/TR/2003/PR-owl-guide-20031209/wine#SantaCruzMountainsRegion">
1456
+ <rdf:type rdf:resource="http://www.w3.org/TR/2003/PR-owl-guide-20031209/wine#Region"/>
1457
+ <locatedIn rdf:resource="http://www.w3.org/TR/2003/PR-owl-guide-20031209/wine#CaliforniaRegion"/>
1458
+ </owl:NamedIndividual>
1459
+
1460
+
1461
+
1462
+ <!-- http://www.w3.org/TR/2003/PR-owl-guide-20031209/wine#SaucelitoCanyon -->
1463
+
1464
+ <owl:NamedIndividual rdf:about="http://www.w3.org/TR/2003/PR-owl-guide-20031209/wine#SaucelitoCanyon"/>
1465
+
1466
+
1467
+
1468
+ <!-- http://www.w3.org/TR/2003/PR-owl-guide-20031209/wine#SaucelitoCanyonZinfandel -->
1469
+
1470
+ <owl:NamedIndividual rdf:about="http://www.w3.org/TR/2003/PR-owl-guide-20031209/wine#SaucelitoCanyonZinfandel">
1471
+ <rdf:type rdf:resource="http://www.w3.org/TR/2003/PR-owl-guide-20031209/wine#Zinfandel"/>
1472
+ <hasBody rdf:resource="http://www.w3.org/TR/2003/PR-owl-guide-20031209/wine#Medium"/>
1473
+ <hasFlavor rdf:resource="http://www.w3.org/TR/2003/PR-owl-guide-20031209/wine#Moderate"/>
1474
+ <hasSugar rdf:resource="http://www.w3.org/TR/2003/PR-owl-guide-20031209/wine#Dry"/>
1475
+ <locatedIn rdf:resource="http://www.w3.org/TR/2003/PR-owl-guide-20031209/wine#ArroyoGrandeRegion"/>
1476
+ </owl:NamedIndividual>
1477
+
1478
+
1479
+
1480
+ <!-- http://www.w3.org/TR/2003/PR-owl-guide-20031209/wine#SaucelitoCanyonZinfandel1998 -->
1481
+
1482
+ <owl:NamedIndividual rdf:about="http://www.w3.org/TR/2003/PR-owl-guide-20031209/wine#SaucelitoCanyonZinfandel1998">
1483
+ <rdf:type rdf:resource="http://www.w3.org/TR/2003/PR-owl-guide-20031209/wine#Zinfandel"/>
1484
+ <hasBody rdf:resource="http://www.w3.org/TR/2003/PR-owl-guide-20031209/wine#Medium"/>
1485
+ <hasFlavor rdf:resource="http://www.w3.org/TR/2003/PR-owl-guide-20031209/wine#Moderate"/>
1486
+ <hasSugar rdf:resource="http://www.w3.org/TR/2003/PR-owl-guide-20031209/wine#Dry"/>
1487
+ <hasVintageYear rdf:resource="http://www.w3.org/TR/2003/PR-owl-guide-20031209/wine#Year1998"/>
1488
+ <locatedIn rdf:resource="http://www.w3.org/TR/2003/PR-owl-guide-20031209/wine#ArroyoGrandeRegion"/>
1489
+ </owl:NamedIndividual>
1490
+
1491
+
1492
+
1493
+ <!-- http://www.w3.org/TR/2003/PR-owl-guide-20031209/wine#SauterneRegion -->
1494
+
1495
+ <owl:NamedIndividual rdf:about="http://www.w3.org/TR/2003/PR-owl-guide-20031209/wine#SauterneRegion">
1496
+ <rdf:type rdf:resource="http://www.w3.org/TR/2003/PR-owl-guide-20031209/wine#Region"/>
1497
+ <locatedIn rdf:resource="http://www.w3.org/TR/2003/PR-owl-guide-20031209/wine#BordeauxRegion"/>
1498
+ </owl:NamedIndividual>
1499
+
1500
+
1501
+
1502
+ <!-- http://www.w3.org/TR/2003/PR-owl-guide-20031209/wine#SauvignonBlancGrape -->
1503
+
1504
+ <owl:Thing rdf:about="http://www.w3.org/TR/2003/PR-owl-guide-20031209/wine#SauvignonBlancGrape">
1505
+ <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#NamedIndividual"/>
1506
+ <rdf:type rdf:resource="http://www.w3.org/TR/2003/PR-owl-guide-20031209/wine#WineGrape"/>
1507
+ </owl:Thing>
1508
+
1509
+
1510
+
1511
+ <!-- http://www.w3.org/TR/2003/PR-owl-guide-20031209/wine#SchlossRothermel -->
1512
+
1513
+ <owl:NamedIndividual rdf:about="http://www.w3.org/TR/2003/PR-owl-guide-20031209/wine#SchlossRothermel"/>
1514
+
1515
+
1516
+
1517
+ <!-- http://www.w3.org/TR/2003/PR-owl-guide-20031209/wine#SchlossRothermelTrochenbierenausleseRiesling -->
1518
+
1519
+ <owl:NamedIndividual rdf:about="http://www.w3.org/TR/2003/PR-owl-guide-20031209/wine#SchlossRothermelTrochenbierenausleseRiesling">
1520
+ <hasBody rdf:resource="http://www.w3.org/TR/2003/PR-owl-guide-20031209/wine#Full"/>
1521
+ <hasFlavor rdf:resource="http://www.w3.org/TR/2003/PR-owl-guide-20031209/wine#Strong"/>
1522
+ <hasSugar rdf:resource="http://www.w3.org/TR/2003/PR-owl-guide-20031209/wine#Sweet"/>
1523
+ <locatedIn rdf:resource="http://www.w3.org/TR/2003/PR-owl-guide-20031209/wine#GermanyRegion"/>
1524
+ </owl:NamedIndividual>
1525
+
1526
+
1527
+
1528
+ <!-- http://www.w3.org/TR/2003/PR-owl-guide-20031209/wine#SchlossVolrad -->
1529
+
1530
+ <owl:NamedIndividual rdf:about="http://www.w3.org/TR/2003/PR-owl-guide-20031209/wine#SchlossVolrad"/>
1531
+
1532
+
1533
+
1534
+ <!-- http://www.w3.org/TR/2003/PR-owl-guide-20031209/wine#SchlossVolradTrochenbierenausleseRiesling -->
1535
+
1536
+ <owl:NamedIndividual rdf:about="http://www.w3.org/TR/2003/PR-owl-guide-20031209/wine#SchlossVolradTrochenbierenausleseRiesling">
1537
+ <hasBody rdf:resource="http://www.w3.org/TR/2003/PR-owl-guide-20031209/wine#Full"/>
1538
+ <hasFlavor rdf:resource="http://www.w3.org/TR/2003/PR-owl-guide-20031209/wine#Moderate"/>
1539
+ <hasSugar rdf:resource="http://www.w3.org/TR/2003/PR-owl-guide-20031209/wine#Sweet"/>
1540
+ <locatedIn rdf:resource="http://www.w3.org/TR/2003/PR-owl-guide-20031209/wine#GermanyRegion"/>
1541
+ </owl:NamedIndividual>
1542
+
1543
+
1544
+
1545
+ <!-- http://www.w3.org/TR/2003/PR-owl-guide-20031209/wine#SeanThackrey -->
1546
+
1547
+ <owl:NamedIndividual rdf:about="http://www.w3.org/TR/2003/PR-owl-guide-20031209/wine#SeanThackrey"/>
1548
+
1549
+
1550
+
1551
+ <!-- http://www.w3.org/TR/2003/PR-owl-guide-20031209/wine#SeanThackreySiriusPetiteSyrah -->
1552
+
1553
+ <owl:NamedIndividual rdf:about="http://www.w3.org/TR/2003/PR-owl-guide-20031209/wine#SeanThackreySiriusPetiteSyrah">
1554
+ <hasBody rdf:resource="http://www.w3.org/TR/2003/PR-owl-guide-20031209/wine#Full"/>
1555
+ <hasFlavor rdf:resource="http://www.w3.org/TR/2003/PR-owl-guide-20031209/wine#Strong"/>
1556
+ <hasSugar rdf:resource="http://www.w3.org/TR/2003/PR-owl-guide-20031209/wine#Dry"/>
1557
+ <locatedIn rdf:resource="http://www.w3.org/TR/2003/PR-owl-guide-20031209/wine#NapaRegion"/>
1558
+ </owl:NamedIndividual>
1559
+
1560
+
1561
+
1562
+ <!-- http://www.w3.org/TR/2003/PR-owl-guide-20031209/wine#Selaks -->
1563
+
1564
+ <owl:NamedIndividual rdf:about="http://www.w3.org/TR/2003/PR-owl-guide-20031209/wine#Selaks"/>
1565
+
1566
+
1567
+
1568
+ <!-- http://www.w3.org/TR/2003/PR-owl-guide-20031209/wine#SelaksIceWine -->
1569
+
1570
+ <owl:NamedIndividual rdf:about="http://www.w3.org/TR/2003/PR-owl-guide-20031209/wine#SelaksIceWine">
1571
+ <hasBody rdf:resource="http://www.w3.org/TR/2003/PR-owl-guide-20031209/wine#Medium"/>
1572
+ <hasColor rdf:resource="http://www.w3.org/TR/2003/PR-owl-guide-20031209/wine#White"/>
1573
+ <hasFlavor rdf:resource="http://www.w3.org/TR/2003/PR-owl-guide-20031209/wine#Moderate"/>
1574
+ <locatedIn rdf:resource="http://www.w3.org/TR/2003/PR-owl-guide-20031209/wine#NewZealandRegion"/>
1575
+ </owl:NamedIndividual>
1576
+
1577
+
1578
+
1579
+ <!-- http://www.w3.org/TR/2003/PR-owl-guide-20031209/wine#SelaksSauvignonBlanc -->
1580
+
1581
+ <owl:NamedIndividual rdf:about="http://www.w3.org/TR/2003/PR-owl-guide-20031209/wine#SelaksSauvignonBlanc">
1582
+ <hasBody rdf:resource="http://www.w3.org/TR/2003/PR-owl-guide-20031209/wine#Medium"/>
1583
+ <hasFlavor rdf:resource="http://www.w3.org/TR/2003/PR-owl-guide-20031209/wine#Moderate"/>
1584
+ <hasSugar rdf:resource="http://www.w3.org/TR/2003/PR-owl-guide-20031209/wine#Dry"/>
1585
+ <locatedIn rdf:resource="http://www.w3.org/TR/2003/PR-owl-guide-20031209/wine#NewZealandRegion"/>
1586
+ </owl:NamedIndividual>
1587
+
1588
+
1589
+
1590
+ <!-- http://www.w3.org/TR/2003/PR-owl-guide-20031209/wine#SemillonGrape -->
1591
+
1592
+ <owl:Thing rdf:about="http://www.w3.org/TR/2003/PR-owl-guide-20031209/wine#SemillonGrape">
1593
+ <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#NamedIndividual"/>
1594
+ <rdf:type rdf:resource="http://www.w3.org/TR/2003/PR-owl-guide-20031209/wine#WineGrape"/>
1595
+ </owl:Thing>
1596
+
1597
+
1598
+
1599
+ <!-- http://www.w3.org/TR/2003/PR-owl-guide-20031209/wine#SevreEtMaine -->
1600
+
1601
+ <owl:NamedIndividual rdf:about="http://www.w3.org/TR/2003/PR-owl-guide-20031209/wine#SevreEtMaine"/>
1602
+
1603
+
1604
+
1605
+ <!-- http://www.w3.org/TR/2003/PR-owl-guide-20031209/wine#SonomaRegion -->
1606
+
1607
+ <owl:NamedIndividual rdf:about="http://www.w3.org/TR/2003/PR-owl-guide-20031209/wine#SonomaRegion">
1608
+ <rdf:type rdf:resource="http://www.w3.org/TR/2003/PR-owl-guide-20031209/wine#Region"/>
1609
+ <locatedIn rdf:resource="http://www.w3.org/TR/2003/PR-owl-guide-20031209/wine#CaliforniaRegion"/>
1610
+ </owl:NamedIndividual>
1611
+
1612
+
1613
+
1614
+ <!-- http://www.w3.org/TR/2003/PR-owl-guide-20031209/wine#SouthAustraliaRegion -->
1615
+
1616
+ <owl:NamedIndividual rdf:about="http://www.w3.org/TR/2003/PR-owl-guide-20031209/wine#SouthAustraliaRegion">
1617
+ <rdf:type rdf:resource="http://www.w3.org/TR/2003/PR-owl-guide-20031209/wine#Region"/>
1618
+ <locatedIn rdf:resource="http://www.w3.org/TR/2003/PR-owl-guide-20031209/wine#AustralianRegion"/>
1619
+ </owl:NamedIndividual>
1620
+
1621
+
1622
+
1623
+ <!-- http://www.w3.org/TR/2003/PR-owl-guide-20031209/wine#StEmilionRegion -->
1624
+
1625
+ <owl:NamedIndividual rdf:about="http://www.w3.org/TR/2003/PR-owl-guide-20031209/wine#StEmilionRegion">
1626
+ <rdf:type rdf:resource="http://www.w3.org/TR/2003/PR-owl-guide-20031209/wine#Region"/>
1627
+ <locatedIn rdf:resource="http://www.w3.org/TR/2003/PR-owl-guide-20031209/wine#BordeauxRegion"/>
1628
+ </owl:NamedIndividual>
1629
+
1630
+
1631
+
1632
+ <!-- http://www.w3.org/TR/2003/PR-owl-guide-20031209/wine#StGenevieve -->
1633
+
1634
+ <owl:NamedIndividual rdf:about="http://www.w3.org/TR/2003/PR-owl-guide-20031209/wine#StGenevieve"/>
1635
+
1636
+
1637
+
1638
+ <!-- http://www.w3.org/TR/2003/PR-owl-guide-20031209/wine#StGenevieveTexasWhite -->
1639
+
1640
+ <owl:NamedIndividual rdf:about="http://www.w3.org/TR/2003/PR-owl-guide-20031209/wine#StGenevieveTexasWhite">
1641
+ <rdf:type rdf:resource="http://www.w3.org/TR/2003/PR-owl-guide-20031209/wine#WhiteWine"/>
1642
+ <hasFlavor rdf:resource="http://www.w3.org/TR/2003/PR-owl-guide-20031209/wine#Moderate"/>
1643
+ <hasSugar rdf:resource="http://www.w3.org/TR/2003/PR-owl-guide-20031209/wine#Dry"/>
1644
+ <locatedIn rdf:resource="http://www.w3.org/TR/2003/PR-owl-guide-20031209/wine#CentralTexasRegion"/>
1645
+ </owl:NamedIndividual>
1646
+
1647
+
1648
+
1649
+ <!-- http://www.w3.org/TR/2003/PR-owl-guide-20031209/wine#Stonleigh -->
1650
+
1651
+ <owl:NamedIndividual rdf:about="http://www.w3.org/TR/2003/PR-owl-guide-20031209/wine#Stonleigh"/>
1652
+
1653
+
1654
+
1655
+ <!-- http://www.w3.org/TR/2003/PR-owl-guide-20031209/wine#StonleighSauvignonBlanc -->
1656
+
1657
+ <owl:NamedIndividual rdf:about="http://www.w3.org/TR/2003/PR-owl-guide-20031209/wine#StonleighSauvignonBlanc">
1658
+ <hasBody rdf:resource="http://www.w3.org/TR/2003/PR-owl-guide-20031209/wine#Medium"/>
1659
+ <hasFlavor rdf:resource="http://www.w3.org/TR/2003/PR-owl-guide-20031209/wine#Delicate"/>
1660
+ <hasSugar rdf:resource="http://www.w3.org/TR/2003/PR-owl-guide-20031209/wine#Dry"/>
1661
+ <locatedIn rdf:resource="http://www.w3.org/TR/2003/PR-owl-guide-20031209/wine#NewZealandRegion"/>
1662
+ </owl:NamedIndividual>
1663
+
1664
+
1665
+
1666
+ <!-- http://www.w3.org/TR/2003/PR-owl-guide-20031209/wine#Strong -->
1667
+
1668
+ <owl:Thing rdf:about="http://www.w3.org/TR/2003/PR-owl-guide-20031209/wine#Strong">
1669
+ <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#NamedIndividual"/>
1670
+ <rdf:type rdf:resource="http://www.w3.org/TR/2003/PR-owl-guide-20031209/wine#WineFlavor"/>
1671
+ </owl:Thing>
1672
+
1673
+
1674
+
1675
+ <!-- http://www.w3.org/TR/2003/PR-owl-guide-20031209/wine#Sweet -->
1676
+
1677
+ <owl:Thing rdf:about="http://www.w3.org/TR/2003/PR-owl-guide-20031209/wine#Sweet">
1678
+ <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#NamedIndividual"/>
1679
+ <rdf:type rdf:resource="http://www.w3.org/TR/2003/PR-owl-guide-20031209/wine#WineSugar"/>
1680
+ </owl:Thing>
1681
+
1682
+
1683
+
1684
+ <!-- http://www.w3.org/TR/2003/PR-owl-guide-20031209/wine#Taylor -->
1685
+
1686
+ <owl:NamedIndividual rdf:about="http://www.w3.org/TR/2003/PR-owl-guide-20031209/wine#Taylor"/>
1687
+
1688
+
1689
+
1690
+ <!-- http://www.w3.org/TR/2003/PR-owl-guide-20031209/wine#TexasRegion -->
1691
+
1692
+ <owl:NamedIndividual rdf:about="http://www.w3.org/TR/2003/PR-owl-guide-20031209/wine#TexasRegion">
1693
+ <rdf:type rdf:resource="http://www.w3.org/TR/2003/PR-owl-guide-20031209/wine#Region"/>
1694
+ <locatedIn rdf:resource="http://www.w3.org/TR/2003/PR-owl-guide-20031209/wine#USRegion"/>
1695
+ </owl:NamedIndividual>
1696
+
1697
+
1698
+
1699
+ <!-- http://www.w3.org/TR/2003/PR-owl-guide-20031209/wine#ToursRegion -->
1700
+
1701
+ <owl:NamedIndividual rdf:about="http://www.w3.org/TR/2003/PR-owl-guide-20031209/wine#ToursRegion">
1702
+ <rdf:type rdf:resource="http://www.w3.org/TR/2003/PR-owl-guide-20031209/wine#Region"/>
1703
+ <locatedIn rdf:resource="http://www.w3.org/TR/2003/PR-owl-guide-20031209/wine#LoireRegion"/>
1704
+ </owl:NamedIndividual>
1705
+
1706
+
1707
+
1708
+ <!-- http://www.w3.org/TR/2003/PR-owl-guide-20031209/wine#USRegion -->
1709
+
1710
+ <owl:NamedIndividual rdf:about="http://www.w3.org/TR/2003/PR-owl-guide-20031209/wine#USRegion">
1711
+ <rdf:type rdf:resource="http://www.w3.org/TR/2003/PR-owl-guide-20031209/wine#Region"/>
1712
+ </owl:NamedIndividual>
1713
+
1714
+
1715
+
1716
+ <!-- http://www.w3.org/TR/2003/PR-owl-guide-20031209/wine#Ventana -->
1717
+
1718
+ <owl:NamedIndividual rdf:about="http://www.w3.org/TR/2003/PR-owl-guide-20031209/wine#Ventana"/>
1719
+
1720
+
1721
+
1722
+ <!-- http://www.w3.org/TR/2003/PR-owl-guide-20031209/wine#VentanaCheninBlanc -->
1723
+
1724
+ <owl:NamedIndividual rdf:about="http://www.w3.org/TR/2003/PR-owl-guide-20031209/wine#VentanaCheninBlanc">
1725
+ <hasBody rdf:resource="http://www.w3.org/TR/2003/PR-owl-guide-20031209/wine#Medium"/>
1726
+ <hasFlavor rdf:resource="http://www.w3.org/TR/2003/PR-owl-guide-20031209/wine#Moderate"/>
1727
+ <hasSugar rdf:resource="http://www.w3.org/TR/2003/PR-owl-guide-20031209/wine#OffDry"/>
1728
+ <locatedIn rdf:resource="http://www.w3.org/TR/2003/PR-owl-guide-20031209/wine#CentralCoastRegion"/>
1729
+ </owl:NamedIndividual>
1730
+
1731
+
1732
+
1733
+ <!-- http://www.w3.org/TR/2003/PR-owl-guide-20031209/wine#White -->
1734
+
1735
+ <owl:Thing rdf:about="http://www.w3.org/TR/2003/PR-owl-guide-20031209/wine#White">
1736
+ <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#NamedIndividual"/>
1737
+ <rdf:type rdf:resource="http://www.w3.org/TR/2003/PR-owl-guide-20031209/wine#WineColor"/>
1738
+ </owl:Thing>
1739
+
1740
+
1741
+
1742
+ <!-- http://www.w3.org/TR/2003/PR-owl-guide-20031209/wine#WhitehallLane -->
1743
+
1744
+ <owl:NamedIndividual rdf:about="http://www.w3.org/TR/2003/PR-owl-guide-20031209/wine#WhitehallLane"/>
1745
+
1746
+
1747
+
1748
+ <!-- http://www.w3.org/TR/2003/PR-owl-guide-20031209/wine#WhitehallLaneCabernetFranc -->
1749
+
1750
+ <owl:NamedIndividual rdf:about="http://www.w3.org/TR/2003/PR-owl-guide-20031209/wine#WhitehallLaneCabernetFranc">
1751
+ <hasBody rdf:resource="http://www.w3.org/TR/2003/PR-owl-guide-20031209/wine#Medium"/>
1752
+ <hasFlavor rdf:resource="http://www.w3.org/TR/2003/PR-owl-guide-20031209/wine#Moderate"/>
1753
+ <hasSugar rdf:resource="http://www.w3.org/TR/2003/PR-owl-guide-20031209/wine#Dry"/>
1754
+ <locatedIn rdf:resource="http://www.w3.org/TR/2003/PR-owl-guide-20031209/wine#NapaRegion"/>
1755
+ </owl:NamedIndividual>
1756
+
1757
+
1758
+
1759
+ <!-- http://www.w3.org/TR/2003/PR-owl-guide-20031209/wine#WhitehallLanePrimavera -->
1760
+
1761
+ <owl:NamedIndividual rdf:about="http://www.w3.org/TR/2003/PR-owl-guide-20031209/wine#WhitehallLanePrimavera">
1762
+ <hasBody rdf:resource="http://www.w3.org/TR/2003/PR-owl-guide-20031209/wine#Light"/>
1763
+ <hasFlavor rdf:resource="http://www.w3.org/TR/2003/PR-owl-guide-20031209/wine#Delicate"/>
1764
+ <hasSugar rdf:resource="http://www.w3.org/TR/2003/PR-owl-guide-20031209/wine#Sweet"/>
1765
+ <locatedIn rdf:resource="http://www.w3.org/TR/2003/PR-owl-guide-20031209/wine#NapaRegion"/>
1766
+ </owl:NamedIndividual>
1767
+
1768
+
1769
+
1770
+ <!-- http://www.w3.org/TR/2003/PR-owl-guide-20031209/wine#Year1998 -->
1771
+
1772
+ <owl:NamedIndividual rdf:about="http://www.w3.org/TR/2003/PR-owl-guide-20031209/wine#Year1998">
1773
+ <rdf:type rdf:resource="http://www.w3.org/TR/2003/PR-owl-guide-20031209/wine#VintageYear"/>
1774
+ <yearValue rdf:datatype="http://www.w3.org/2001/XMLSchema#positiveInteger">1998</yearValue>
1775
+ </owl:NamedIndividual>
1776
+
1777
+
1778
+
1779
+ <!-- http://www.w3.org/TR/2003/PR-owl-guide-20031209/wine#ZinfandelGrape -->
1780
+
1781
+ <owl:NamedIndividual rdf:about="http://www.w3.org/TR/2003/PR-owl-guide-20031209/wine#ZinfandelGrape">
1782
+ <rdf:type rdf:resource="http://www.w3.org/TR/2003/PR-owl-guide-20031209/wine#WineGrape"/>
1783
+ </owl:NamedIndividual>
1784
+
1785
+
1786
+
1787
+ <!--
1788
+ ///////////////////////////////////////////////////////////////////////////////////////
1789
+ //
1790
+ // General axioms
1791
+ //
1792
+ ///////////////////////////////////////////////////////////////////////////////////////
1793
+ -->
1794
+
1795
+ <rdf:Description>
1796
+ <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#AllDifferent"/>
1797
+ <owl:distinctMembers rdf:parseType="Collection">
1798
+ <rdf:Description rdf:about="http://www.w3.org/TR/2003/PR-owl-guide-20031209/wine#Bancroft"/>
1799
+ <rdf:Description rdf:about="http://www.w3.org/TR/2003/PR-owl-guide-20031209/wine#ChateauChevalBlanc"/>
1800
+ <rdf:Description rdf:about="http://www.w3.org/TR/2003/PR-owl-guide-20031209/wine#ChateauDYchem"/>
1801
+ <rdf:Description rdf:about="http://www.w3.org/TR/2003/PR-owl-guide-20031209/wine#ChateauDeMeursault"/>
1802
+ <rdf:Description rdf:about="http://www.w3.org/TR/2003/PR-owl-guide-20031209/wine#ChateauLafiteRothschild"/>
1803
+ <rdf:Description rdf:about="http://www.w3.org/TR/2003/PR-owl-guide-20031209/wine#ChateauMargauxWinery"/>
1804
+ <rdf:Description rdf:about="http://www.w3.org/TR/2003/PR-owl-guide-20031209/wine#ChateauMorgon"/>
1805
+ <rdf:Description rdf:about="http://www.w3.org/TR/2003/PR-owl-guide-20031209/wine#ClosDeLaPoussie"/>
1806
+ <rdf:Description rdf:about="http://www.w3.org/TR/2003/PR-owl-guide-20031209/wine#ClosDeVougeot"/>
1807
+ <rdf:Description rdf:about="http://www.w3.org/TR/2003/PR-owl-guide-20031209/wine#CongressSprings"/>
1808
+ <rdf:Description rdf:about="http://www.w3.org/TR/2003/PR-owl-guide-20031209/wine#Corbans"/>
1809
+ <rdf:Description rdf:about="http://www.w3.org/TR/2003/PR-owl-guide-20031209/wine#CortonMontrachet"/>
1810
+ <rdf:Description rdf:about="http://www.w3.org/TR/2003/PR-owl-guide-20031209/wine#Cotturi"/>
1811
+ <rdf:Description rdf:about="http://www.w3.org/TR/2003/PR-owl-guide-20031209/wine#DAnjou"/>
1812
+ <rdf:Description rdf:about="http://www.w3.org/TR/2003/PR-owl-guide-20031209/wine#Elyse"/>
1813
+ <rdf:Description rdf:about="http://www.w3.org/TR/2003/PR-owl-guide-20031209/wine#Forman"/>
1814
+ <rdf:Description rdf:about="http://www.w3.org/TR/2003/PR-owl-guide-20031209/wine#Foxen"/>
1815
+ <rdf:Description rdf:about="http://www.w3.org/TR/2003/PR-owl-guide-20031209/wine#GaryFarrell"/>
1816
+ <rdf:Description rdf:about="http://www.w3.org/TR/2003/PR-owl-guide-20031209/wine#KalinCellars"/>
1817
+ <rdf:Description rdf:about="http://www.w3.org/TR/2003/PR-owl-guide-20031209/wine#KathrynKennedy"/>
1818
+ <rdf:Description rdf:about="http://www.w3.org/TR/2003/PR-owl-guide-20031209/wine#LaneTanner"/>
1819
+ <rdf:Description rdf:about="http://www.w3.org/TR/2003/PR-owl-guide-20031209/wine#Longridge"/>
1820
+ <rdf:Description rdf:about="http://www.w3.org/TR/2003/PR-owl-guide-20031209/wine#Marietta"/>
1821
+ <rdf:Description rdf:about="http://www.w3.org/TR/2003/PR-owl-guide-20031209/wine#McGuinnesso"/>
1822
+ <rdf:Description rdf:about="http://www.w3.org/TR/2003/PR-owl-guide-20031209/wine#MountEdenVineyard"/>
1823
+ <rdf:Description rdf:about="http://www.w3.org/TR/2003/PR-owl-guide-20031209/wine#Mountadam"/>
1824
+ <rdf:Description rdf:about="http://www.w3.org/TR/2003/PR-owl-guide-20031209/wine#PageMillWinery"/>
1825
+ <rdf:Description rdf:about="http://www.w3.org/TR/2003/PR-owl-guide-20031209/wine#PeterMccoy"/>
1826
+ <rdf:Description rdf:about="http://www.w3.org/TR/2003/PR-owl-guide-20031209/wine#PulignyMontrachet"/>
1827
+ <rdf:Description rdf:about="http://www.w3.org/TR/2003/PR-owl-guide-20031209/wine#SantaCruzMountainVineyard"/>
1828
+ <rdf:Description rdf:about="http://www.w3.org/TR/2003/PR-owl-guide-20031209/wine#SaucelitoCanyon"/>
1829
+ <rdf:Description rdf:about="http://www.w3.org/TR/2003/PR-owl-guide-20031209/wine#SchlossRothermel"/>
1830
+ <rdf:Description rdf:about="http://www.w3.org/TR/2003/PR-owl-guide-20031209/wine#SchlossVolrad"/>
1831
+ <rdf:Description rdf:about="http://www.w3.org/TR/2003/PR-owl-guide-20031209/wine#SeanThackrey"/>
1832
+ <rdf:Description rdf:about="http://www.w3.org/TR/2003/PR-owl-guide-20031209/wine#Selaks"/>
1833
+ <rdf:Description rdf:about="http://www.w3.org/TR/2003/PR-owl-guide-20031209/wine#SevreEtMaine"/>
1834
+ <rdf:Description rdf:about="http://www.w3.org/TR/2003/PR-owl-guide-20031209/wine#StGenevieve"/>
1835
+ <rdf:Description rdf:about="http://www.w3.org/TR/2003/PR-owl-guide-20031209/wine#Stonleigh"/>
1836
+ <rdf:Description rdf:about="http://www.w3.org/TR/2003/PR-owl-guide-20031209/wine#Taylor"/>
1837
+ <rdf:Description rdf:about="http://www.w3.org/TR/2003/PR-owl-guide-20031209/wine#Ventana"/>
1838
+ <rdf:Description rdf:about="http://www.w3.org/TR/2003/PR-owl-guide-20031209/wine#WhitehallLane"/>
1839
+ </owl:distinctMembers>
1840
+ </rdf:Description>
1841
+ <rdf:Description>
1842
+ <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#AllDifferent"/>
1843
+ <owl:distinctMembers rdf:parseType="Collection">
1844
+ <rdf:Description rdf:about="http://www.w3.org/TR/2003/PR-owl-guide-20031209/wine#Delicate"/>
1845
+ <rdf:Description rdf:about="http://www.w3.org/TR/2003/PR-owl-guide-20031209/wine#Moderate"/>
1846
+ <rdf:Description rdf:about="http://www.w3.org/TR/2003/PR-owl-guide-20031209/wine#Strong"/>
1847
+ </owl:distinctMembers>
1848
+ </rdf:Description>
1849
+ <rdf:Description>
1850
+ <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#AllDifferent"/>
1851
+ <owl:distinctMembers rdf:parseType="Collection">
1852
+ <rdf:Description rdf:about="http://www.w3.org/TR/2003/PR-owl-guide-20031209/wine#Dry"/>
1853
+ <rdf:Description rdf:about="http://www.w3.org/TR/2003/PR-owl-guide-20031209/wine#OffDry"/>
1854
+ </owl:distinctMembers>
1855
+ </rdf:Description>
1856
+ <rdf:Description>
1857
+ <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#AllDifferent"/>
1858
+ <owl:distinctMembers rdf:parseType="Collection">
1859
+ <rdf:Description rdf:about="http://www.w3.org/TR/2003/PR-owl-guide-20031209/wine#Dry"/>
1860
+ <rdf:Description rdf:about="http://www.w3.org/TR/2003/PR-owl-guide-20031209/wine#OffDry"/>
1861
+ <rdf:Description rdf:about="http://www.w3.org/TR/2003/PR-owl-guide-20031209/wine#Sweet"/>
1862
+ </owl:distinctMembers>
1863
+ </rdf:Description>
1864
+ <rdf:Description>
1865
+ <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#AllDifferent"/>
1866
+ <owl:distinctMembers rdf:parseType="Collection">
1867
+ <rdf:Description rdf:about="http://www.w3.org/TR/2003/PR-owl-guide-20031209/wine#Dry"/>
1868
+ <rdf:Description rdf:about="http://www.w3.org/TR/2003/PR-owl-guide-20031209/wine#Sweet"/>
1869
+ </owl:distinctMembers>
1870
+ </rdf:Description>
1871
+ <rdf:Description>
1872
+ <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#AllDifferent"/>
1873
+ <owl:distinctMembers rdf:parseType="Collection">
1874
+ <rdf:Description rdf:about="http://www.w3.org/TR/2003/PR-owl-guide-20031209/wine#Full"/>
1875
+ <rdf:Description rdf:about="http://www.w3.org/TR/2003/PR-owl-guide-20031209/wine#Light"/>
1876
+ <rdf:Description rdf:about="http://www.w3.org/TR/2003/PR-owl-guide-20031209/wine#Medium"/>
1877
+ </owl:distinctMembers>
1878
+ </rdf:Description>
1879
+ <rdf:Description>
1880
+ <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#AllDifferent"/>
1881
+ <owl:distinctMembers rdf:parseType="Collection">
1882
+ <rdf:Description rdf:about="http://www.w3.org/TR/2003/PR-owl-guide-20031209/wine#OffDry"/>
1883
+ <rdf:Description rdf:about="http://www.w3.org/TR/2003/PR-owl-guide-20031209/wine#Sweet"/>
1884
+ </owl:distinctMembers>
1885
+ </rdf:Description>
1886
+ <rdf:Description>
1887
+ <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#AllDifferent"/>
1888
+ <owl:distinctMembers rdf:parseType="Collection">
1889
+ <rdf:Description rdf:about="http://www.w3.org/TR/2003/PR-owl-guide-20031209/wine#Red"/>
1890
+ <rdf:Description rdf:about="http://www.w3.org/TR/2003/PR-owl-guide-20031209/wine#Rose"/>
1891
+ <rdf:Description rdf:about="http://www.w3.org/TR/2003/PR-owl-guide-20031209/wine#White"/>
1892
+ </owl:distinctMembers>
1893
+ </rdf:Description>
1894
+ </rdf:RDF>
1895
+
1896
+
1897
+
1898
+ <!-- Generated by the OWL API (version 4.5.13) https://github.com/owlcs/owlapi -->
1899
+