rdf-vocab 3.1.2 → 3.1.8
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/LICENSE +1 -1
- data/README.md +69 -45
- data/VERSION +1 -1
- data/lib/rdf/vocab.rb +60 -40
- data/lib/rdf/vocab/acl.rb +104 -61
- data/lib/rdf/vocab/as.rb +556 -91
- data/lib/rdf/vocab/bf2.rb +1791 -475
- data/lib/rdf/vocab/bibframe.rb +1 -2
- data/lib/rdf/vocab/bibo.rb +616 -124
- data/lib/rdf/vocab/cc.rb +125 -48
- data/lib/rdf/vocab/cert.rb +68 -1
- data/lib/rdf/vocab/cnt.rb +79 -1
- data/lib/rdf/vocab/crm.rb +1543 -776
- data/lib/rdf/vocab/datacite.rb +1 -1
- data/lib/rdf/vocab/dbo.rb +10463 -1
- data/lib/rdf/vocab/dc.rb +485 -99
- data/lib/rdf/vocab/dc11.rb +93 -31
- data/lib/rdf/vocab/dcat.rb +236 -88
- data/lib/rdf/vocab/dcmitype.rb +63 -13
- data/lib/rdf/vocab/disco.rb +286 -59
- data/lib/rdf/vocab/doap.rb +175 -1
- data/lib/rdf/vocab/dwc.rb +941 -189
- data/lib/rdf/vocab/earl.rb +324 -0
- data/lib/rdf/vocab/ebucore.rb +7255 -2184
- data/lib/rdf/vocab/edm.rb +202 -76
- data/lib/rdf/vocab/exif.rb +650 -1
- data/lib/rdf/vocab/extensions.rb +257 -203
- data/lib/rdf/vocab/fcrepo4.rb +398 -22
- data/lib/rdf/vocab/foaf.rb +380 -76
- data/lib/rdf/vocab/geo.rb +47 -110
- data/lib/rdf/vocab/geojson.rb +82 -17
- data/lib/rdf/vocab/geonames.rb +1508 -1351
- data/lib/rdf/vocab/gr.rb +861 -565
- data/lib/rdf/vocab/gs1.rb +1597 -1
- data/lib/rdf/vocab/ht.rb +204 -41
- data/lib/rdf/vocab/hydra.rb +335 -60
- data/lib/rdf/vocab/iana.rb +301 -114
- data/lib/rdf/vocab/ical.rb +534 -121
- data/lib/rdf/vocab/identifiers.rb +459 -499
- data/lib/rdf/vocab/iiif.rb +161 -26
- data/lib/rdf/vocab/jsonld.rb +179 -53
- data/lib/rdf/vocab/ldp.rb +130 -1
- data/lib/rdf/vocab/lrmi.rb +85 -17
- data/lib/rdf/vocab/ma.rb +460 -80
- data/lib/rdf/vocab/mads.rb +610 -22
- data/lib/rdf/vocab/{marc_relators.rb → marcrelators.rb} +813 -4
- data/lib/rdf/vocab/mo.rb +1115 -540
- data/lib/rdf/vocab/mods.rb +635 -124
- data/lib/rdf/vocab/nfo.rb +1 -1
- data/lib/rdf/vocab/oa.rb +343 -73
- data/lib/rdf/vocab/og.rb +100 -1
- data/lib/rdf/vocab/ogc.rb +42 -9
- data/lib/rdf/vocab/ore.rb +69 -14
- data/lib/rdf/vocab/org.rb +235 -47
- data/lib/rdf/vocab/pcdm.rb +58 -34
- data/lib/rdf/vocab/pplan.rb +21 -136
- data/lib/rdf/vocab/premis.rb +1171 -779
- data/lib/rdf/vocab/{premis_event_type.rb → premiseventtype.rb} +156 -2
- data/lib/rdf/vocab/prov.rb +700 -107
- data/lib/rdf/vocab/ptr.rb +172 -37
- data/lib/rdf/vocab/rightsstatements.rb +17 -13
- data/lib/rdf/vocab/rsa.rb +30 -1
- data/lib/rdf/vocab/rss.rb +52 -11
- data/lib/rdf/vocab/schema.rb +14970 -3993
- data/lib/rdf/vocab/schemas.rb +27066 -0
- data/lib/rdf/vocab/sd.rb +372 -0
- data/lib/rdf/vocab/sh.rb +919 -184
- data/lib/rdf/vocab/sioc.rb +498 -98
- data/lib/rdf/vocab/{sioc_services.rb → siocservices.rb} +46 -9
- data/lib/rdf/vocab/sioctypes.rb +434 -0
- data/lib/rdf/vocab/skos.rb +160 -44
- data/lib/rdf/vocab/skosxl.rb +40 -11
- data/lib/rdf/vocab/v.rb +323 -37
- data/lib/rdf/vocab/vcard.rb +625 -119
- data/lib/rdf/vocab/vmd.rb +323 -37
- data/lib/rdf/vocab/void.rb +147 -27
- data/lib/rdf/vocab/vs.rb +23 -5
- data/lib/rdf/vocab/wdrs.rb +112 -23
- data/lib/rdf/vocab/wot.rb +96 -19
- data/lib/rdf/vocab/xhtml.rb +2 -1
- data/lib/rdf/vocab/xhv.rb +422 -201
- data/lib/rdf/vocab/xkos.rb +156 -7
- data/spec/extensions_spec.rb +68 -0
- data/spec/vocab_spec.rb +10 -0
- metadata +20 -11
- data/lib/rdf/vocab/sioct.rb +0 -277
data/lib/rdf/vocab/vmd.rb
CHANGED
@@ -5,58 +5,346 @@ require 'rdf'
|
|
5
5
|
module RDF::Vocab
|
6
6
|
# @!parse
|
7
7
|
# # Vocabulary for <http://data-vocabulary.org/>
|
8
|
+
# #
|
8
9
|
# class VMD < RDF::StrictVocabulary
|
10
|
+
# # Postal address for a Person or Organization.
|
11
|
+
# # @return [RDF::Vocabulary::Term]
|
12
|
+
# attr_reader :Address
|
13
|
+
#
|
14
|
+
# # Represents a single Breadcrumb in a Breadcrumb trail.
|
15
|
+
# # @return [RDF::Vocabulary::Term]
|
16
|
+
# attr_reader :Breadcrumb
|
17
|
+
#
|
18
|
+
# # Represents the steps to make a dish.
|
19
|
+
# # @return [RDF::Vocabulary::Term]
|
20
|
+
# attr_reader :Instructions
|
21
|
+
#
|
22
|
+
# # Represents the nutrition information about a recipe.
|
23
|
+
# # @return [RDF::Vocabulary::Term]
|
24
|
+
# attr_reader :Nutrition
|
25
|
+
#
|
26
|
+
# # Represents an offer to sell a product.
|
27
|
+
# # @return [RDF::Vocabulary::Term]
|
28
|
+
# attr_reader :Offer
|
29
|
+
#
|
30
|
+
# # Represents a collection of offers to sell a product.
|
31
|
+
# # @return [RDF::Vocabulary::Term]
|
32
|
+
# attr_reader :OfferAggregate
|
33
|
+
#
|
34
|
+
# # An Organization is a business, agency, school, etc.
|
35
|
+
# # @return [RDF::Vocabulary::Term]
|
36
|
+
# attr_reader :Organization
|
37
|
+
#
|
38
|
+
# # Represents a Person, living/dead/fictional.
|
39
|
+
# # @return [RDF::Vocabulary::Term]
|
40
|
+
# attr_reader :Person
|
41
|
+
#
|
42
|
+
# # Represents a product or service in a Review or Review-aggregate.
|
43
|
+
# # @return [RDF::Vocabulary::Term]
|
44
|
+
# attr_reader :Product
|
45
|
+
#
|
46
|
+
# # Represents a rating in a Review or Review-aggregate.
|
47
|
+
# # @return [RDF::Vocabulary::Term]
|
48
|
+
# attr_reader :Rating
|
49
|
+
#
|
50
|
+
# # A single instance of a Recipe.
|
51
|
+
# # @return [RDF::Vocabulary::Term]
|
52
|
+
# attr_reader :Recipe
|
53
|
+
#
|
54
|
+
# # Represents ingredients used in a recipe.
|
55
|
+
# # @return [RDF::Vocabulary::Term]
|
56
|
+
# attr_reader :RecipeIngredient
|
57
|
+
#
|
58
|
+
# # A single instance of a Review.
|
59
|
+
# # @return [RDF::Vocabulary::Term]
|
60
|
+
# attr_reader :Review
|
61
|
+
#
|
62
|
+
# # Represents the length of time it takes to prepare a recipe.
|
63
|
+
# # @return [RDF::Vocabulary::Term]
|
64
|
+
# attr_reader :TimeRange
|
65
|
+
#
|
66
|
+
# # @return [RDF::Vocabulary::Term]
|
67
|
+
# attr_reader :acquaintance
|
68
|
+
#
|
69
|
+
# # @return [RDF::Vocabulary::Term]
|
70
|
+
# attr_reader :address
|
71
|
+
#
|
72
|
+
# # An affiliation can be specified by a string literal or an Organization instance.
|
73
|
+
# # @return [RDF::Vocabulary::Term]
|
74
|
+
# attr_reader :affiliation
|
75
|
+
#
|
76
|
+
# # @return [RDF::Vocabulary::Term]
|
77
|
+
# attr_reader :amount
|
78
|
+
#
|
79
|
+
# # An author of the recipe can be specified by a string literal or a Person instance.
|
80
|
+
# # @return [RDF::Vocabulary::Term]
|
81
|
+
# attr_reader :author
|
82
|
+
#
|
83
|
+
# # @return [RDF::Vocabulary::Term]
|
84
|
+
# attr_reader :availability
|
85
|
+
#
|
86
|
+
# # The average of an aggregate value.
|
87
|
+
# # @return [RDF::Vocabulary::Term]
|
88
|
+
# attr_reader :average
|
89
|
+
#
|
90
|
+
# # The best value of a rating scale (default 5).
|
91
|
+
# # @return [RDF::Vocabulary::Term]
|
92
|
+
# attr_reader :best
|
93
|
+
#
|
94
|
+
# # @return [RDF::Vocabulary::Term]
|
95
|
+
# attr_reader :brand
|
96
|
+
#
|
97
|
+
# # @return [RDF::Vocabulary::Term]
|
98
|
+
# attr_reader :calories
|
99
|
+
#
|
100
|
+
# # @return [RDF::Vocabulary::Term]
|
101
|
+
# attr_reader :carbohydrates
|
102
|
+
#
|
103
|
+
# # @return [RDF::Vocabulary::Term]
|
104
|
+
# attr_reader :category
|
105
|
+
#
|
106
|
+
# # @return [RDF::Vocabulary::Term]
|
107
|
+
# attr_reader :child
|
108
|
+
#
|
109
|
+
# # @return [RDF::Vocabulary::Term]
|
110
|
+
# attr_reader :cholesterol
|
111
|
+
#
|
112
|
+
# # @return [RDF::Vocabulary::Term]
|
113
|
+
# attr_reader :colleague
|
114
|
+
#
|
115
|
+
# # @return [RDF::Vocabulary::Term]
|
116
|
+
# attr_reader :condition
|
117
|
+
#
|
118
|
+
# # @return [RDF::Vocabulary::Term]
|
119
|
+
# attr_reader :contact
|
120
|
+
#
|
121
|
+
# # @return [RDF::Vocabulary::Term]
|
122
|
+
# attr_reader :cookTime
|
123
|
+
#
|
124
|
+
# # The total number of items used in an aggregate (e.g., number of reviews).
|
125
|
+
# # @return [RDF::Vocabulary::Term]
|
126
|
+
# attr_reader :count
|
127
|
+
#
|
128
|
+
# # @return [RDF::Vocabulary::Term]
|
129
|
+
# attr_reader :currency
|
130
|
+
#
|
131
|
+
# # @return [RDF::Vocabulary::Term]
|
132
|
+
# attr_reader :description
|
133
|
+
#
|
134
|
+
# # The date of the review.
|
135
|
+
# # @return [RDF::Vocabulary::Term]
|
136
|
+
# attr_reader :dtreviewed
|
137
|
+
#
|
138
|
+
# # @return [RDF::Vocabulary::Term]
|
139
|
+
# attr_reader :duration
|
140
|
+
#
|
141
|
+
# # @return [RDF::Vocabulary::Term]
|
142
|
+
# attr_reader :fat
|
143
|
+
#
|
144
|
+
# # @return [RDF::Vocabulary::Term]
|
145
|
+
# attr_reader :fiber
|
146
|
+
#
|
147
|
+
# # @return [RDF::Vocabulary::Term]
|
148
|
+
# attr_reader :friend
|
149
|
+
#
|
150
|
+
# # @return [RDF::Vocabulary::Term]
|
151
|
+
# attr_reader :highprice
|
152
|
+
#
|
153
|
+
# # @return [RDF::Vocabulary::Term]
|
154
|
+
# attr_reader :identifier
|
155
|
+
#
|
156
|
+
# # @return [RDF::Vocabulary::Term]
|
157
|
+
# attr_reader :image
|
158
|
+
#
|
159
|
+
# # Represents ingredients used in a recipe.
|
160
|
+
# # @return [RDF::Vocabulary::Term]
|
161
|
+
# attr_reader :ingredient
|
162
|
+
#
|
163
|
+
# # @return [RDF::Vocabulary::Term]
|
164
|
+
# attr_reader :instruction
|
165
|
+
#
|
166
|
+
# # Represents the steps to make a dish.
|
167
|
+
# # @return [RDF::Vocabulary::Term]
|
168
|
+
# attr_reader :instructions
|
169
|
+
#
|
170
|
+
# # @return [RDF::Vocabulary::Term]
|
171
|
+
# attr_reader :itemoffered
|
172
|
+
#
|
173
|
+
# # @return [RDF::Vocabulary::Term]
|
174
|
+
# attr_reader :itemreviewed
|
175
|
+
#
|
176
|
+
# # @return [RDF::Vocabulary::Term]
|
177
|
+
# attr_reader :locality
|
178
|
+
#
|
179
|
+
# # @return [RDF::Vocabulary::Term]
|
180
|
+
# attr_reader :lowprice
|
181
|
+
#
|
182
|
+
# # The maximum value of an aggregated Rating.
|
183
|
+
# # @return [RDF::Vocabulary::Term]
|
184
|
+
# attr_reader :max
|
185
|
+
#
|
186
|
+
# # The minimum value of an aggregated Rating.
|
187
|
+
# # @return [RDF::Vocabulary::Term]
|
188
|
+
# attr_reader :min
|
189
|
+
#
|
190
|
+
# # @return [RDF::Vocabulary::Term]
|
191
|
+
# attr_reader :name
|
192
|
+
#
|
193
|
+
# # @return [RDF::Vocabulary::Term]
|
194
|
+
# attr_reader :nickname
|
195
|
+
#
|
196
|
+
# # Represents the nutrition information about a recipe.
|
197
|
+
# # @return [RDF::Vocabulary::Term]
|
198
|
+
# attr_reader :nutrition
|
199
|
+
#
|
200
|
+
# # @return [RDF::Vocabulary::Term]
|
201
|
+
# attr_reader :offercount
|
202
|
+
#
|
203
|
+
# # @return [RDF::Vocabulary::Term]
|
204
|
+
# attr_reader :offerdetails
|
205
|
+
#
|
206
|
+
# # @return [RDF::Vocabulary::Term]
|
207
|
+
# attr_reader :offerurl
|
208
|
+
#
|
209
|
+
# # @return [RDF::Vocabulary::Term]
|
210
|
+
# attr_reader :photo
|
211
|
+
#
|
212
|
+
# # @return [RDF::Vocabulary::Term]
|
213
|
+
# attr_reader :prepTime
|
214
|
+
#
|
215
|
+
# # @return [RDF::Vocabulary::Term]
|
216
|
+
# attr_reader :price
|
217
|
+
#
|
218
|
+
# # The price range of products and services offered by a restaurant, business or other organization.
|
219
|
+
# # @return [RDF::Vocabulary::Term]
|
220
|
+
# attr_reader :pricerange
|
221
|
+
#
|
222
|
+
# # @return [RDF::Vocabulary::Term]
|
223
|
+
# attr_reader :pricevaliduntil
|
224
|
+
#
|
225
|
+
# # @return [RDF::Vocabulary::Term]
|
226
|
+
# attr_reader :protein
|
227
|
+
#
|
228
|
+
# # @return [RDF::Vocabulary::Term]
|
229
|
+
# attr_reader :published
|
230
|
+
#
|
231
|
+
# # @return [RDF::Vocabulary::Term]
|
232
|
+
# attr_reader :quantity
|
233
|
+
#
|
234
|
+
# # A rating can be specified by a string literal or a Rating instance.
|
235
|
+
# # @return [RDF::Vocabulary::Term]
|
236
|
+
# attr_reader :rating
|
237
|
+
#
|
238
|
+
# # @return [RDF::Vocabulary::Term]
|
239
|
+
# attr_reader :recipeType
|
240
|
+
#
|
241
|
+
# # @return [RDF::Vocabulary::Term]
|
242
|
+
# attr_reader :region
|
243
|
+
#
|
244
|
+
# # A reviewer can be specified by a string literal or a Person instance.
|
245
|
+
# # @return [RDF::Vocabulary::Term]
|
246
|
+
# attr_reader :reviewer
|
247
|
+
#
|
248
|
+
# # @return [RDF::Vocabulary::Term]
|
249
|
+
# attr_reader :role
|
250
|
+
#
|
251
|
+
# # @return [RDF::Vocabulary::Term]
|
252
|
+
# attr_reader :saturatedFat
|
253
|
+
#
|
254
|
+
# # @return [RDF::Vocabulary::Term]
|
255
|
+
# attr_reader :seller
|
256
|
+
#
|
257
|
+
# # @return [RDF::Vocabulary::Term]
|
258
|
+
# attr_reader :servingSize
|
259
|
+
#
|
260
|
+
# # @return [RDF::Vocabulary::Term]
|
261
|
+
# attr_reader :sugar
|
262
|
+
#
|
263
|
+
# # @return [RDF::Vocabulary::Term]
|
264
|
+
# attr_reader :summary
|
265
|
+
#
|
266
|
+
# # @return [RDF::Vocabulary::Term]
|
267
|
+
# attr_reader :tag
|
268
|
+
#
|
269
|
+
# # @return [RDF::Vocabulary::Term]
|
270
|
+
# attr_reader :tel
|
271
|
+
#
|
272
|
+
# # Represents the length of time it takes to prepare a recipe.
|
273
|
+
# # @return [RDF::Vocabulary::Term]
|
274
|
+
# attr_reader :timeRange
|
275
|
+
#
|
276
|
+
# # @return [RDF::Vocabulary::Term]
|
277
|
+
# attr_reader :title
|
278
|
+
#
|
279
|
+
# # @return [RDF::Vocabulary::Term]
|
280
|
+
# attr_reader :totalTime
|
281
|
+
#
|
282
|
+
# # @return [RDF::Vocabulary::Term]
|
283
|
+
# attr_reader :unsaturatedFat
|
284
|
+
#
|
285
|
+
# # @return [RDF::Vocabulary::Term]
|
286
|
+
# attr_reader :url
|
287
|
+
#
|
288
|
+
# # The value of a single Rating.
|
289
|
+
# # @return [RDF::Vocabulary::Term]
|
290
|
+
# attr_reader :value
|
291
|
+
#
|
292
|
+
# # The poorest value of a rating scale (default 1).
|
293
|
+
# # @return [RDF::Vocabulary::Term]
|
294
|
+
# attr_reader :worst
|
295
|
+
#
|
296
|
+
# # @return [RDF::Vocabulary::Term]
|
297
|
+
# attr_reader :yield
|
298
|
+
#
|
9
299
|
# end
|
10
|
-
|
300
|
+
VMD = Class.new(RDF::StrictVocabulary("http://data-vocabulary.org/")) do
|
11
301
|
|
12
302
|
# Class definitions
|
13
303
|
term :Address,
|
14
|
-
comment:
|
304
|
+
comment: "Postal address for a Person or Organization.".freeze,
|
15
305
|
type: "rdfs:Class".freeze
|
16
306
|
term :Breadcrumb,
|
17
|
-
comment:
|
307
|
+
comment: "Represents a single Breadcrumb in a Breadcrumb trail.".freeze,
|
18
308
|
type: ["owl:Class".freeze, "rdfs:Class".freeze]
|
19
309
|
term :Instructions,
|
20
|
-
comment:
|
310
|
+
comment: "Represents the steps to make a dish.".freeze,
|
21
311
|
type: "rdfs:Class".freeze
|
22
312
|
term :Nutrition,
|
23
|
-
comment:
|
313
|
+
comment: "Represents the nutrition information about a recipe.".freeze,
|
24
314
|
type: "rdfs:Class".freeze
|
25
315
|
term :Offer,
|
26
|
-
comment:
|
316
|
+
comment: "Represents an offer to sell a product.".freeze,
|
27
317
|
type: ["owl:Class".freeze, "rdfs:Class".freeze]
|
28
318
|
term :OfferAggregate,
|
29
|
-
comment:
|
319
|
+
comment: "Represents a collection of offers to sell a product.".freeze,
|
30
320
|
type: ["owl:Class".freeze, "rdfs:Class".freeze]
|
31
321
|
term :Organization,
|
32
|
-
comment:
|
322
|
+
comment: "An Organization is a business, agency, school, etc.".freeze,
|
33
323
|
type: ["owl:Class".freeze, "rdfs:Class".freeze]
|
34
324
|
term :Person,
|
35
|
-
comment:
|
325
|
+
comment: "Represents a Person, living/dead/fictional.".freeze,
|
36
326
|
type: ["owl:Class".freeze, "rdfs:Class".freeze]
|
37
327
|
term :Product,
|
38
|
-
comment:
|
328
|
+
comment: "Represents a product or service in a Review or Review-aggregate.".freeze,
|
39
329
|
type: ["owl:Class".freeze, "rdfs:Class".freeze]
|
40
330
|
term :Rating,
|
41
|
-
comment:
|
331
|
+
comment: "Represents a rating in a Review or Review-aggregate.".freeze,
|
42
332
|
type: ["owl:Class".freeze, "rdfs:Class".freeze]
|
43
333
|
term :Recipe,
|
44
|
-
comment:
|
334
|
+
comment: "A single instance of a Recipe.".freeze,
|
45
335
|
type: ["owl:Class".freeze, "rdfs:Class".freeze]
|
46
336
|
term :RecipeIngredient,
|
47
|
-
comment:
|
337
|
+
comment: "Represents ingredients used in a recipe.".freeze,
|
48
338
|
type: "rdfs:Class".freeze
|
49
339
|
term :Review,
|
50
|
-
comment:
|
340
|
+
comment: "A single instance of a Review.".freeze,
|
51
341
|
type: ["owl:Class".freeze, "rdfs:Class".freeze]
|
52
342
|
term :"Review-aggregate",
|
53
|
-
comment:
|
54
|
-
Can be used whether or not there is instance-level Review data on the page.
|
55
|
-
).freeze,
|
343
|
+
comment: "Represents data from a collection of reviews.\n Can be used whether or not there is instance-level Review data on the page.\n ".freeze,
|
56
344
|
subClassOf: "vmd:Review".freeze,
|
57
345
|
type: "rdfs:Class".freeze
|
58
346
|
term :TimeRange,
|
59
|
-
comment:
|
347
|
+
comment: "Represents the length of time it takes to prepare a recipe.".freeze,
|
60
348
|
type: ["owl:Class".freeze, "rdfs:Class".freeze]
|
61
349
|
|
62
350
|
# Property definitions
|
@@ -71,7 +359,7 @@ module RDF::Vocab
|
|
71
359
|
range: "vmd:Address".freeze,
|
72
360
|
type: "rdf:Property".freeze
|
73
361
|
property :affiliation,
|
74
|
-
comment:
|
362
|
+
comment: "An affiliation can be specified by a string literal or an Organization instance.".freeze,
|
75
363
|
domain: "vmd:Person".freeze,
|
76
364
|
range: term(
|
77
365
|
type: "owl:Class".freeze,
|
@@ -82,7 +370,7 @@ module RDF::Vocab
|
|
82
370
|
domain: "vmd:RecipeIngredient".freeze,
|
83
371
|
type: "rdf:Property".freeze
|
84
372
|
property :author,
|
85
|
-
comment:
|
373
|
+
comment: "An author of the recipe can be specified by a string literal or a Person instance.".freeze,
|
86
374
|
domain: "vmd:Recipe".freeze,
|
87
375
|
range: term(
|
88
376
|
type: "owl:Class".freeze,
|
@@ -93,11 +381,11 @@ module RDF::Vocab
|
|
93
381
|
domain: "vmd:Offer".freeze,
|
94
382
|
type: "rdf:Property".freeze
|
95
383
|
property :average,
|
96
|
-
comment:
|
384
|
+
comment: "The average of an aggregate value.".freeze,
|
97
385
|
domain: "vmd:Rating".freeze,
|
98
386
|
type: "rdf:Property".freeze
|
99
387
|
property :best,
|
100
|
-
comment:
|
388
|
+
comment: "The best value of a rating scale (default 5).".freeze,
|
101
389
|
domain: "vmd:Rating".freeze,
|
102
390
|
type: "rdf:Property".freeze
|
103
391
|
property :brand,
|
@@ -141,7 +429,7 @@ module RDF::Vocab
|
|
141
429
|
),
|
142
430
|
type: "rdf:Property".freeze
|
143
431
|
property :count,
|
144
|
-
comment:
|
432
|
+
comment: "The total number of items used in an aggregate (e.g., number of reviews).".freeze,
|
145
433
|
domain: "vmd:Review-aggregate".freeze,
|
146
434
|
type: "rdf:Property".freeze
|
147
435
|
property :"country-name",
|
@@ -160,7 +448,7 @@ module RDF::Vocab
|
|
160
448
|
),
|
161
449
|
type: "rdf:Property".freeze
|
162
450
|
property :dtreviewed,
|
163
|
-
comment:
|
451
|
+
comment: "The date of the review.".freeze,
|
164
452
|
domain: "vmd:Review".freeze,
|
165
453
|
type: "rdf:Property".freeze
|
166
454
|
property :duration,
|
@@ -192,7 +480,7 @@ module RDF::Vocab
|
|
192
480
|
domain: "vmd:Product".freeze,
|
193
481
|
type: "rdf:Property".freeze
|
194
482
|
property :ingredient,
|
195
|
-
comment:
|
483
|
+
comment: "Represents ingredients used in a recipe.".freeze,
|
196
484
|
domain: "vmd:Recipe".freeze,
|
197
485
|
range: "vmd:RecipeIngredient".freeze,
|
198
486
|
type: "rdf:Property".freeze
|
@@ -200,7 +488,7 @@ module RDF::Vocab
|
|
200
488
|
domain: "vmd:Instructions".freeze,
|
201
489
|
type: "rdf:Property".freeze
|
202
490
|
property :instructions,
|
203
|
-
comment:
|
491
|
+
comment: "Represents the steps to make a dish.".freeze,
|
204
492
|
domain: "vmd:Recipe".freeze,
|
205
493
|
range: "vmd:Instructions".freeze,
|
206
494
|
type: "rdf:Property".freeze
|
@@ -220,14 +508,14 @@ module RDF::Vocab
|
|
220
508
|
domain: "vmd:OfferAggregate".freeze,
|
221
509
|
type: "rdf:Property".freeze
|
222
510
|
property :max,
|
223
|
-
comment:
|
511
|
+
comment: "The maximum value of an aggregated Rating.".freeze,
|
224
512
|
domain: term(
|
225
513
|
type: "owl:Class".freeze,
|
226
514
|
unionOf: list("vmd:Rating".freeze, "vmd:TimeRange".freeze)
|
227
515
|
),
|
228
516
|
type: "rdf:Property".freeze
|
229
517
|
property :min,
|
230
|
-
comment:
|
518
|
+
comment: "The minimum value of an aggregated Rating.".freeze,
|
231
519
|
domain: term(
|
232
520
|
type: "owl:Class".freeze,
|
233
521
|
unionOf: list("vmd:Rating".freeze, "vmd:TimeRange".freeze)
|
@@ -239,7 +527,7 @@ module RDF::Vocab
|
|
239
527
|
domain: "vmd:Person".freeze,
|
240
528
|
type: "rdf:Property".freeze
|
241
529
|
property :nutrition,
|
242
|
-
comment:
|
530
|
+
comment: "Represents the nutrition information about a recipe.".freeze,
|
243
531
|
domain: "vmd:Recipe".freeze,
|
244
532
|
range: "vmd:Nutrition".freeze,
|
245
533
|
type: "rdf:Property".freeze
|
@@ -271,9 +559,7 @@ module RDF::Vocab
|
|
271
559
|
domain: "vmd:Offer".freeze,
|
272
560
|
type: "rdf:Property".freeze
|
273
561
|
property :pricerange,
|
274
|
-
comment:
|
275
|
-
by a restaurant, business or other organization.
|
276
|
-
).freeze,
|
562
|
+
comment: "The price range of products and services offered\n by a restaurant, business or other organization.\n ".freeze,
|
277
563
|
domain: "vmd:Organization".freeze,
|
278
564
|
type: "rdf:Property".freeze
|
279
565
|
property :pricevaliduntil,
|
@@ -289,7 +575,7 @@ module RDF::Vocab
|
|
289
575
|
domain: "vmd:Offer".freeze,
|
290
576
|
type: "rdf:Property".freeze
|
291
577
|
property :rating,
|
292
|
-
comment:
|
578
|
+
comment: "A rating can be specified by a string literal or a Rating instance.".freeze,
|
293
579
|
domain: "vmd:Review".freeze,
|
294
580
|
range: term(
|
295
581
|
type: "owl:Class".freeze,
|
@@ -303,7 +589,7 @@ module RDF::Vocab
|
|
303
589
|
domain: "vmd:Address".freeze,
|
304
590
|
type: "rdf:Property".freeze
|
305
591
|
property :reviewer,
|
306
|
-
comment:
|
592
|
+
comment: "A reviewer can be specified by a string literal or a Person instance.".freeze,
|
307
593
|
domain: "vmd:Review".freeze,
|
308
594
|
range: term(
|
309
595
|
type: "owl:Class".freeze,
|
@@ -344,7 +630,7 @@ module RDF::Vocab
|
|
344
630
|
),
|
345
631
|
type: "rdf:Property".freeze
|
346
632
|
property :timeRange,
|
347
|
-
comment:
|
633
|
+
comment: "Represents the length of time it takes to prepare a recipe.".freeze,
|
348
634
|
domain: "vmd:Recipe".freeze,
|
349
635
|
range: "vmd:TimeRange".freeze,
|
350
636
|
type: "rdf:Property".freeze
|
@@ -371,11 +657,11 @@ module RDF::Vocab
|
|
371
657
|
),
|
372
658
|
type: "rdf:Property".freeze
|
373
659
|
property :value,
|
374
|
-
comment:
|
660
|
+
comment: "The value of a single Rating.".freeze,
|
375
661
|
domain: "vmd:Rating".freeze,
|
376
662
|
type: "rdf:Property".freeze
|
377
663
|
property :worst,
|
378
|
-
comment:
|
664
|
+
comment: "The poorest value of a rating scale (default 1).".freeze,
|
379
665
|
domain: "vmd:Rating".freeze,
|
380
666
|
type: "rdf:Property".freeze
|
381
667
|
property :yield,
|