-
Notifications
You must be signed in to change notification settings - Fork 0
/
sfl_mappings.ttl
244 lines (105 loc) · 8.73 KB
/
sfl_mappings.ttl
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
@prefix : <http://www.w3.org/2002/07/owl#> .
@prefix owl: <http://www.w3.org/2002/07/owl#> .
@prefix rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> .
@prefix sfl: <http://www.sodlod15.org/ontologies/socialfoodlabelling> .
@prefix xml: <http://www.w3.org/XML/1998/namespace> .
@prefix xsd: <http://www.w3.org/2001/XMLSchema#> .
@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
@prefix dc: <http://purl.org/dc/elements/1.1/> .
@base <http://www.sodlod15.org/ontologies/sfl_mappings> .
<http://www.sodlod15.org/ontologies/sfl_mappings> rdf:type :Ontology ;
:imports <http://topbraid.org/schema/> ,
<http://www.sodlod15.org/ontologies/socialfoodlabelling> .
#################################################################
#
# Annotation properties
#
#################################################################
### http://data.lirmm.fr/ontologies/food#quantity
<http://data.lirmm.fr/ontologies/food#quantity> rdf:type :AnnotationProperty .
### http://data.lirmm.fr/ontologies/food#rank
<http://data.lirmm.fr/ontologies/food#rank> rdf:type :AnnotationProperty .
### http://purl.org/dc/elements/1.1/contributor
<http://purl.org/dc/elements/1.1/contributor> rdf:type :AnnotationProperty .
### http://purl.org/dc/elements/1.1/creator
<http://purl.org/dc/elements/1.1/creator> rdf:type :AnnotationProperty .
### http://purl.org/dc/elements/1.1/description
<http://purl.org/dc/elements/1.1/description> rdf:type :AnnotationProperty .
### http://purl.org/dc/elements/1.1/title
<http://purl.org/dc/elements/1.1/title> rdf:type :AnnotationProperty .
### http://purl.org/dc/terms/modified
<http://purl.org/dc/terms/modified> rdf:type :AnnotationProperty .
### http://schema.org/position
<http://schema.org/position> rdf:type :AnnotationProperty .
### http://schema.org/value
<http://schema.org/value> rdf:type :AnnotationProperty .
### http://www.w3.org/2003/06/sw-vocab-status/ns#term_status
<http://www.w3.org/2003/06/sw-vocab-status/ns#term_status> rdf:type :AnnotationProperty .
### http://www.w3.org/2004/02/skos/core#definition
<http://www.w3.org/2004/02/skos/core#definition> rdf:type :AnnotationProperty .
### http://www.w3.org/2004/02/skos/core#example
<http://www.w3.org/2004/02/skos/core#example> rdf:type :AnnotationProperty .
### http://www.w3.org/2004/02/skos/core#prefLabel
<http://www.w3.org/2004/02/skos/core#prefLabel> rdf:type :AnnotationProperty .
#################################################################
#
# Object Properties
#
#################################################################
### http://data.lirmm.fr/ontologies/food#quantity
<http://data.lirmm.fr/ontologies/food#quantity> rdf:type :ObjectProperty ;
rdfs:subPropertyOf <http://schema.org/value> .
### http://data.lirmm.fr/ontologies/food#rank
<http://data.lirmm.fr/ontologies/food#rank> rdf:type :ObjectProperty ;
rdfs:subPropertyOf <http://schema.org/position> .
#################################################################
#
# Classes
#
#################################################################
### http://data.lirmm.fr/ontologies/food#Food
<http://data.lirmm.fr/ontologies/food#Food> <http://www.w3.org/2004/02/skos/core#example> """[SFL] The Dolmeo Pizza. Milk. Lasagne. Vegetable Dishes. Main Courses.
These would all be OWL individuals in SFL ontology, since we don't currently model real instances, eg, the pizza you've eaten today. We are only interested in the pizza as a product, of which you've eaten an instance today.
Moreover, 'Dolmeo Pizza' is modelled as an instance in SFL, due to practical reasons: we intend to reuse existing SKOS-based vocabularies (namely AGROVOC) and it's often easier to work with OWL individuals with applications like CMSes or Wikis.""" ;
<http://www.w3.org/2004/02/skos/core#prefLabel> "Food" ;
<http://www.w3.org/2004/02/skos/core#definition> "Anything that can be eaten, from raw material such as salt, to elaborated recipes and commercial product (usually types, not individual instances) manufactured by companies." .
### http://data.lirmm.fr/ontologies/food#FoodProduct
<http://data.lirmm.fr/ontologies/food#FoodProduct> rdf:type :Class ;
:equivalentClass <http://purl.org/foodontology#Food> ;
rdfs:subClassOf <http://data.lirmm.fr/ontologies/food#Food> ;
<http://www.w3.org/2004/02/skos/core#definition> "Denotes a food produced by some company, organisation, or other entity. This is different than a generic food or food dish." ;
rdfs:comment "[SFL] As every other classes in the SFL project, usually FoodProduct is used to represent only food procut types, eg, the 'Dolmeo Margherita Pizza Barcode 123', not the instance of such product you bought in the street supermarket today." ;
<http://www.w3.org/2004/02/skos/core#example> "'Dolmeo Pizza', or 'the pudding cake usually produced by a given person', not just 'pizza', or 'pudding cake' (you should use FoodType for the latter)." ;
<http://www.w3.org/2004/02/skos/core#prefLabel> "Food Product" .
### http://data.lirmm.fr/ontologies/food#Ingredient
<http://data.lirmm.fr/ontologies/food#Ingredient> rdf:type :Class ;
:equivalentClass <http://purl.org/foodontology#Ingredient> ;
rdfs:subClassOf <http://data.lirmm.fr/ontologies/food#Food> ;
<http://www.w3.org/2004/02/skos/core#example> "beef meat as first ingredient of the FoodProduct 'CFK Burger'. 10g of salt as 3rd ingredient of 'Kattle Chips'. Note that ingredient instances are often intended to be specific to FoodProduct instances (see its definition), so that further qualifiers, which are specific to this relationship, can be attached to it. dc:type (a FoodType) can be used to qualify the food type." ;
<http://www.w3.org/2004/02/skos/core#prefLabel> "Ingredient" ;
<http://www.w3.org/2004/02/skos/core#definition> "A food that plays the role of being part of another food." .
### http://purl.org/foodontology#Food
<http://purl.org/foodontology#Food> rdf:type :Class .
### http://purl.org/foodontology#FoodAdditive
<http://purl.org/foodontology#FoodAdditive> rdf:type :Class ;
rdfs:subClassOf <http://data.lirmm.fr/ontologies/food#Ingredient> ;
<http://www.w3.org/2004/02/skos/core#example> "E45, sorbic acid, aspartame." ;
<http://www.w3.org/2004/02/skos/core#prefLabel> "Food Additive" ;
<http://www.w3.org/2004/02/skos/core#definition> "Substance added to food to preserve flavor or enhance its taste and appearance." .
### http://purl.org/foodontology#Ingredient
<http://purl.org/foodontology#Ingredient> rdf:type :Class .
#################################################################
#
# Annotations
#
#################################################################
<http://data.lirmm.fr/ontologies/food#quantity> <http://www.w3.org/2004/02/skos/core#prefLabel> "ingredient quantity" .
<http://www.w3.org/2004/02/skos/extensions> <http://purl.org/dc/elements/1.1/description> "@@TODO" ;
<http://purl.org/dc/terms/modified> "2004-08-27" ;
<http://purl.org/dc/elements/1.1/creator> "Alistair Miles" ;
<http://purl.org/dc/elements/1.1/title> "SKOS Extensions RDF Vocabulary" ;
<http://purl.org/dc/elements/1.1/contributor> "Members of the [email protected] mailing list." .
<http://data.lirmm.fr/ontologies/food#containsIngredient> <http://www.w3.org/2004/02/skos/core#definition> "links a food item to one of the ingredients it contains." ;
<http://www.w3.org/2004/02/skos/core#prefLabel> "has ingredient" ;
rdfs:comment "TODO: sub-property of (food-has-part sub-prop has-part)." .
### Generated by the OWL API (version 3.5.1) http://owlapi.sourceforge.net