rdf-vocab 0.8.8 → 2.0.0.beta1

Sign up to get free protection for your applications and to get access to all the features.
Files changed (71) hide show
  1. checksums.yaml +4 -4
  2. data/lib/rdf/vocab.rb +160 -61
  3. data/lib/rdf/vocab/acl.rb +6 -1
  4. data/lib/rdf/vocab/bibframe.rb +83 -78
  5. data/lib/rdf/vocab/bibo.rb +255 -248
  6. data/lib/rdf/vocab/cc.rb +132 -0
  7. data/lib/rdf/vocab/cert.rb +249 -0
  8. data/lib/rdf/vocab/cnt.rb +23 -18
  9. data/lib/rdf/vocab/crm.rb +12 -7
  10. data/lib/rdf/vocab/datacite.rb +88 -83
  11. data/lib/rdf/vocab/dc.rb +952 -0
  12. data/lib/rdf/vocab/dc11.rb +171 -0
  13. data/lib/rdf/vocab/dcat.rb +218 -0
  14. data/lib/rdf/vocab/dcmitype.rb +80 -75
  15. data/lib/rdf/vocab/doap.rb +341 -0
  16. data/lib/rdf/vocab/dwc.rb +1651 -1646
  17. data/lib/rdf/vocab/ebucore.rb +122 -117
  18. data/lib/rdf/vocab/edm.rb +102 -97
  19. data/lib/rdf/vocab/exif.rb +945 -0
  20. data/lib/rdf/vocab/extensions.rb +1 -0
  21. data/lib/rdf/vocab/fcrepo4.rb +62 -57
  22. data/lib/rdf/vocab/foaf.rb +618 -0
  23. data/lib/rdf/vocab/geo.rb +161 -0
  24. data/lib/rdf/vocab/geonames.rb +2742 -2737
  25. data/lib/rdf/vocab/gr.rb +1505 -0
  26. data/lib/rdf/vocab/ht.rb +240 -0
  27. data/lib/rdf/vocab/hydra.rb +96 -91
  28. data/lib/rdf/vocab/iana.rb +5 -0
  29. data/lib/rdf/vocab/ical.rb +532 -0
  30. data/lib/rdf/vocab/identifiers.rb +203 -182
  31. data/lib/rdf/vocab/iiif.rb +51 -26
  32. data/lib/rdf/vocab/jsonld.rb +15 -10
  33. data/lib/rdf/vocab/ldp.rb +66 -61
  34. data/lib/rdf/vocab/lrmi.rb +68 -63
  35. data/lib/rdf/vocab/ma.rb +517 -0
  36. data/lib/rdf/vocab/mads.rb +448 -206
  37. data/lib/rdf/vocab/marc_relators.rb +1240 -1235
  38. data/lib/rdf/vocab/mo.rb +2416 -0
  39. data/lib/rdf/vocab/mods.rb +17 -12
  40. data/lib/rdf/vocab/nfo.rb +65 -60
  41. data/lib/rdf/vocab/oa.rb +91 -86
  42. data/lib/rdf/vocab/og.rb +226 -0
  43. data/lib/rdf/vocab/ogc.rb +62 -0
  44. data/lib/rdf/vocab/ore.rb +24 -19
  45. data/lib/rdf/vocab/org.rb +83 -78
  46. data/lib/rdf/vocab/pplan.rb +54 -49
  47. data/lib/rdf/vocab/premis.rb +470 -465
  48. data/lib/rdf/vocab/premis_event_type.rb +85 -80
  49. data/lib/rdf/vocab/prov.rb +1554 -0
  50. data/lib/rdf/vocab/ptr.rb +5 -0
  51. data/lib/rdf/vocab/rsa.rb +76 -0
  52. data/lib/rdf/vocab/rss.rb +70 -0
  53. data/lib/rdf/vocab/schema.rb +10765 -0
  54. data/lib/rdf/vocab/sioc.rb +673 -0
  55. data/lib/rdf/vocab/sioc_services.rb +27 -22
  56. data/lib/rdf/vocab/skos.rb +242 -0
  57. data/lib/rdf/vocab/skosxl.rb +61 -0
  58. data/lib/rdf/vocab/v.rb +387 -0
  59. data/lib/rdf/vocab/vcard.rb +845 -0
  60. data/lib/rdf/vocab/version.rb +1 -0
  61. data/lib/rdf/vocab/vmd.rb +387 -0
  62. data/lib/rdf/vocab/void.rb +190 -0
  63. data/lib/rdf/vocab/vs.rb +32 -0
  64. data/lib/rdf/vocab/wdrs.rb +138 -0
  65. data/lib/rdf/vocab/wot.rb +171 -0
  66. data/lib/rdf/vocab/xhtml.rb +12 -0
  67. data/lib/rdf/vocab/xhv.rb +509 -0
  68. data/spec/spec_helper.rb +1 -0
  69. data/spec/vocab_spec.rb +1 -0
  70. metadata +76 -33
  71. data/lib/rdf/vocab/disco.rb +0 -369
@@ -1,4 +1,5 @@
1
1
  module RDF::Vocab::VERSION
2
+ # frozen_string_literal: true
2
3
  VERSION_FILE = File.join(File.expand_path(File.dirname(__FILE__)), "..", "..", "..", "VERSION")
3
4
  MAJOR, MINOR, TINY, EXTRA = File.read(VERSION_FILE).chop.split(".")
4
5
 
@@ -0,0 +1,387 @@
1
+ # -*- encoding: utf-8 -*-
2
+ # frozen_string_literal: true
3
+ # This file generated automatically using vocab-fetch from etc/data-vocab.ttl
4
+ require 'rdf'
5
+ module RDF::Vocab
6
+ # @!parse
7
+ # # Vocabulary for <http://data-vocabulary.org/>
8
+ # class VMD < RDF::StrictVocabulary
9
+ # end
10
+ class VMD < RDF::StrictVocabulary("http://data-vocabulary.org/")
11
+
12
+ # Class definitions
13
+ term :Address,
14
+ comment: %(Postal address for a Person or Organization.).freeze,
15
+ label: "Address".freeze,
16
+ type: "rdfs:Class".freeze
17
+ term :Breadcrumb,
18
+ comment: %(Represents a single Breadcrumb in a Breadcrumb trail.).freeze,
19
+ label: "Breadcrumb".freeze,
20
+ type: ["owl:Class".freeze, "rdfs:Class".freeze]
21
+ term :Instructions,
22
+ comment: %(Represents the steps to make a dish.).freeze,
23
+ label: "Instructions".freeze,
24
+ type: "rdfs:Class".freeze
25
+ term :Nutrition,
26
+ comment: %(Represents the nutrition information about a recipe.).freeze,
27
+ label: "Nutrition".freeze,
28
+ type: "rdfs:Class".freeze
29
+ term :Offer,
30
+ comment: %(Represents an offer to sell a product.).freeze,
31
+ label: "Offer".freeze,
32
+ type: ["owl:Class".freeze, "rdfs:Class".freeze]
33
+ term :OfferAggregate,
34
+ comment: %(Represents a collection of offers to sell a product.).freeze,
35
+ label: "OfferAggregate".freeze,
36
+ type: ["owl:Class".freeze, "rdfs:Class".freeze]
37
+ term :Organization,
38
+ comment: %(An Organization is a business, agency, school, etc.).freeze,
39
+ label: "Organization".freeze,
40
+ type: ["owl:Class".freeze, "rdfs:Class".freeze]
41
+ term :Person,
42
+ comment: %(Represents a Person, living/dead/fictional.).freeze,
43
+ label: "Person".freeze,
44
+ type: ["owl:Class".freeze, "rdfs:Class".freeze]
45
+ term :Product,
46
+ comment: %(Represents a product or service in a Review or Review-aggregate.).freeze,
47
+ label: "Product".freeze,
48
+ type: ["owl:Class".freeze, "rdfs:Class".freeze]
49
+ term :Rating,
50
+ comment: %(Represents a rating in a Review or Review-aggregate.).freeze,
51
+ label: "Rating".freeze,
52
+ type: ["owl:Class".freeze, "rdfs:Class".freeze]
53
+ term :Recipe,
54
+ comment: %(A single instance of a Recipe.).freeze,
55
+ label: "Recipe".freeze,
56
+ type: ["owl:Class".freeze, "rdfs:Class".freeze]
57
+ term :RecipeIngredient,
58
+ comment: %(Represents ingredients used in a recipe.).freeze,
59
+ label: "RecipeIngredient".freeze,
60
+ type: "rdfs:Class".freeze
61
+ term :Review,
62
+ comment: %(A single instance of a Review.).freeze,
63
+ label: "Review".freeze,
64
+ type: ["owl:Class".freeze, "rdfs:Class".freeze]
65
+ term :"Review-aggregate",
66
+ comment: %(Represents data from a collection of reviews.
67
+ Can be used whether or not there is instance-level Review data on the page.
68
+ ).freeze,
69
+ label: "Review-aggregate".freeze,
70
+ subClassOf: "vmd:Review".freeze,
71
+ type: "rdfs:Class".freeze
72
+ term :TimeRange,
73
+ comment: %(Represents the length of time it takes to prepare a recipe.).freeze,
74
+ label: "TimeRange".freeze,
75
+ type: ["owl:Class".freeze, "rdfs:Class".freeze]
76
+
77
+ # Property definitions
78
+ property :acquaintance,
79
+ domain: "vmd:Person".freeze,
80
+ label: "acquaintance".freeze,
81
+ type: "rdf:Property".freeze
82
+ property :address,
83
+ label: "address".freeze,
84
+ range: "vmd:Address".freeze,
85
+ type: "rdf:Property".freeze
86
+ property :affiliation,
87
+ comment: %(An affiliation can be specified by a string literal or an Organization instance.).freeze,
88
+ domain: "vmd:Person".freeze,
89
+ label: "affiliation".freeze,
90
+ type: "rdf:Property".freeze
91
+ property :amount,
92
+ domain: "vmd:RecipeIngredient".freeze,
93
+ label: "amount".freeze,
94
+ type: "rdf:Property".freeze
95
+ property :author,
96
+ comment: %(An author of the recipe can be specified by a string literal or a Person instance.).freeze,
97
+ domain: "vmd:Recipe".freeze,
98
+ label: "author".freeze,
99
+ type: "rdf:Property".freeze
100
+ property :availability,
101
+ domain: "vmd:Offer".freeze,
102
+ label: "availability".freeze,
103
+ type: "rdf:Property".freeze
104
+ property :average,
105
+ comment: %(The average of an aggregate value.).freeze,
106
+ domain: "vmd:Rating".freeze,
107
+ label: "average".freeze,
108
+ type: "rdf:Property".freeze
109
+ property :best,
110
+ comment: %(The best value of a rating scale \(default 5\).).freeze,
111
+ domain: "vmd:Rating".freeze,
112
+ label: "best".freeze,
113
+ type: "rdf:Property".freeze
114
+ property :brand,
115
+ domain: "vmd:Product".freeze,
116
+ label: "brand".freeze,
117
+ type: "rdf:Property".freeze
118
+ property :calories,
119
+ domain: "vmd:Nutrition".freeze,
120
+ label: "calories".freeze,
121
+ type: "rdf:Property".freeze
122
+ property :carbohydrates,
123
+ domain: "vmd:Nutrition".freeze,
124
+ label: "carbohydrates".freeze,
125
+ type: "rdf:Property".freeze
126
+ property :category,
127
+ label: "category".freeze,
128
+ type: "rdf:Property".freeze
129
+ property :child,
130
+ domain: "vmd:Breadcrumb".freeze,
131
+ label: "child".freeze,
132
+ type: "rdf:Property".freeze
133
+ property :cholesterol,
134
+ domain: "vmd:Nutrition".freeze,
135
+ label: "cholesterol".freeze,
136
+ type: "rdf:Property".freeze
137
+ property :colleague,
138
+ domain: "vmd:Person".freeze,
139
+ label: "colleague".freeze,
140
+ type: "rdf:Property".freeze
141
+ property :condition,
142
+ label: "condition".freeze,
143
+ type: "rdf:Property".freeze
144
+ property :contact,
145
+ domain: "vmd:Person".freeze,
146
+ label: "contact".freeze,
147
+ type: "rdf:Property".freeze
148
+ property :cookTime,
149
+ domain: "vmd:Recipe".freeze,
150
+ label: "cookTime".freeze,
151
+ type: "rdf:Property".freeze
152
+ property :count,
153
+ comment: %(The total number of items used in an aggregate \(e.g., number of reviews\).).freeze,
154
+ domain: "vmd:Review-aggregate".freeze,
155
+ label: "count".freeze,
156
+ type: "rdf:Property".freeze
157
+ property :"country-name",
158
+ domain: "vmd:Address".freeze,
159
+ label: "country-name".freeze,
160
+ type: "rdf:Property".freeze
161
+ property :currency,
162
+ label: "currency".freeze,
163
+ type: "rdf:Property".freeze
164
+ property :description,
165
+ label: "description".freeze,
166
+ type: "rdf:Property".freeze
167
+ property :dtreviewed,
168
+ comment: %(The date of the review.).freeze,
169
+ domain: "vmd:Review".freeze,
170
+ label: "dtreviewed".freeze,
171
+ type: "rdf:Property".freeze
172
+ property :duration,
173
+ domain: "vmd:Recipe".freeze,
174
+ label: "duration".freeze,
175
+ type: "rdf:Property".freeze
176
+ property :fat,
177
+ domain: "vmd:Nutrition".freeze,
178
+ label: "fat".freeze,
179
+ type: "rdf:Property".freeze
180
+ property :fiber,
181
+ domain: "vmd:Nutrition".freeze,
182
+ label: "fiber".freeze,
183
+ type: "rdf:Property".freeze
184
+ property :friend,
185
+ domain: "vmd:Person".freeze,
186
+ label: "friend".freeze,
187
+ type: "rdf:Property".freeze
188
+ property :highprice,
189
+ domain: "vmd:OfferAggregate".freeze,
190
+ label: "highprice".freeze,
191
+ type: "rdf:Property".freeze
192
+ property :identifier,
193
+ label: "identifier".freeze,
194
+ type: "rdf:Property".freeze
195
+ property :image,
196
+ domain: "vmd:Product".freeze,
197
+ label: "image".freeze,
198
+ type: "rdf:Property".freeze
199
+ property :ingredient,
200
+ comment: %(Represents ingredients used in a recipe.).freeze,
201
+ domain: "vmd:Recipe".freeze,
202
+ label: "ingredient".freeze,
203
+ range: "vmd:RecipeIngredient".freeze,
204
+ type: "rdf:Property".freeze
205
+ property :instruction,
206
+ domain: "vmd:Instructions".freeze,
207
+ label: "instruction".freeze,
208
+ type: "rdf:Property".freeze
209
+ property :instructions,
210
+ comment: %(Represents the steps to make a dish.).freeze,
211
+ domain: "vmd:Recipe".freeze,
212
+ label: "instructions".freeze,
213
+ range: "vmd:Instructions".freeze,
214
+ type: "rdf:Property".freeze
215
+ property :itemoffered,
216
+ label: "itemoffered".freeze,
217
+ type: "rdf:Property".freeze
218
+ property :itemreviewed,
219
+ domain: "vmd:Review".freeze,
220
+ label: "itemreviewed".freeze,
221
+ type: "rdf:Property".freeze
222
+ property :locality,
223
+ domain: "vmd:Address".freeze,
224
+ label: "locality".freeze,
225
+ type: "rdf:Property".freeze
226
+ property :lowprice,
227
+ domain: "vmd:OfferAggregate".freeze,
228
+ label: "lowprice".freeze,
229
+ type: "rdf:Property".freeze
230
+ property :max,
231
+ comment: %(The maximum value of an aggregated Rating.).freeze,
232
+ label: "max".freeze,
233
+ type: "rdf:Property".freeze
234
+ property :min,
235
+ comment: %(The minimum value of an aggregated Rating.).freeze,
236
+ label: "min".freeze,
237
+ type: "rdf:Property".freeze
238
+ property :name,
239
+ label: "name".freeze,
240
+ type: "rdf:Property".freeze
241
+ property :nickname,
242
+ domain: "vmd:Person".freeze,
243
+ label: "nickname".freeze,
244
+ type: "rdf:Property".freeze
245
+ property :nutrition,
246
+ comment: %(Represents the nutrition information about a recipe.).freeze,
247
+ domain: "vmd:Recipe".freeze,
248
+ label: "nutrition".freeze,
249
+ range: "vmd:Nutrition".freeze,
250
+ type: "rdf:Property".freeze
251
+ property :offercount,
252
+ domain: "vmd:OfferAggregate".freeze,
253
+ label: "offercount".freeze,
254
+ type: "rdf:Property".freeze
255
+ property :offerdetails,
256
+ domain: "vmd:Product".freeze,
257
+ label: "offerdetails".freeze,
258
+ type: "rdf:Property".freeze
259
+ property :offerurl,
260
+ label: "offerurl".freeze,
261
+ type: "rdf:Property".freeze
262
+ property :photo,
263
+ label: "photo".freeze,
264
+ type: "rdf:Property".freeze
265
+ property :"postal-code",
266
+ domain: "vmd:Address".freeze,
267
+ label: "postal-code".freeze,
268
+ type: "rdf:Property".freeze
269
+ property :prepTime,
270
+ domain: "vmd:Recipe".freeze,
271
+ label: "prepTime".freeze,
272
+ type: "rdf:Property".freeze
273
+ property :price,
274
+ domain: "vmd:Offer".freeze,
275
+ label: "price".freeze,
276
+ type: "rdf:Property".freeze
277
+ property :pricerange,
278
+ comment: %(The price range of products and services offered
279
+ by a restaurant, business or other organization.
280
+ ).freeze,
281
+ domain: "vmd:Organization".freeze,
282
+ label: "pricerange".freeze,
283
+ type: "rdf:Property".freeze
284
+ property :pricevaliduntil,
285
+ domain: "vmd:Offer".freeze,
286
+ label: "pricevaliduntil".freeze,
287
+ type: "rdf:Property".freeze
288
+ property :protein,
289
+ domain: "vmd:Nutrition".freeze,
290
+ label: "protein".freeze,
291
+ type: "rdf:Property".freeze
292
+ property :published,
293
+ domain: "vmd:Recipe".freeze,
294
+ label: "published".freeze,
295
+ type: "rdf:Property".freeze
296
+ property :quantity,
297
+ domain: "vmd:Offer".freeze,
298
+ label: "quantity".freeze,
299
+ type: "rdf:Property".freeze
300
+ property :rating,
301
+ comment: %(A rating can be specified by a string literal or a Rating instance.).freeze,
302
+ domain: "vmd:Review".freeze,
303
+ label: "rating".freeze,
304
+ type: "rdf:Property".freeze
305
+ property :recipeType,
306
+ domain: "vmd:Recipe".freeze,
307
+ label: "recipeType".freeze,
308
+ type: "rdf:Property".freeze
309
+ property :region,
310
+ domain: "vmd:Address".freeze,
311
+ label: "region".freeze,
312
+ type: "rdf:Property".freeze
313
+ property :reviewer,
314
+ comment: %(A reviewer can be specified by a string literal or a Person instance.).freeze,
315
+ domain: "vmd:Review".freeze,
316
+ label: "reviewer".freeze,
317
+ type: "rdf:Property".freeze
318
+ property :role,
319
+ domain: "vmd:Person".freeze,
320
+ label: "role".freeze,
321
+ type: "rdf:Property".freeze
322
+ property :saturatedFat,
323
+ domain: "vmd:Nutrition".freeze,
324
+ label: "saturatedFat".freeze,
325
+ type: "rdf:Property".freeze
326
+ property :seller,
327
+ domain: "vmd:Offer".freeze,
328
+ label: "seller".freeze,
329
+ type: "rdf:Property".freeze
330
+ property :servingSize,
331
+ domain: "vmd:Nutrition".freeze,
332
+ label: "servingSize".freeze,
333
+ type: "rdf:Property".freeze
334
+ property :"street-address",
335
+ domain: "vmd:Address".freeze,
336
+ label: "street-address".freeze,
337
+ type: "rdf:Property".freeze
338
+ property :sugar,
339
+ domain: "vmd:Nutrition".freeze,
340
+ label: "sugar".freeze,
341
+ type: "rdf:Property".freeze
342
+ property :summary,
343
+ label: "summary".freeze,
344
+ type: "rdf:Property".freeze
345
+ property :tag,
346
+ domain: "vmd:Recipe".freeze,
347
+ label: "tag".freeze,
348
+ type: "rdf:Property".freeze
349
+ property :tel,
350
+ label: "tel".freeze,
351
+ type: "rdf:Property".freeze
352
+ property :timeRange,
353
+ comment: %(Represents the length of time it takes to prepare a recipe.).freeze,
354
+ domain: "vmd:Recipe".freeze,
355
+ label: "timeRange".freeze,
356
+ range: "vmd:TimeRange".freeze,
357
+ type: "rdf:Property".freeze
358
+ property :title,
359
+ label: "title".freeze,
360
+ type: "rdf:Property".freeze
361
+ property :totalTime,
362
+ domain: "vmd:Recipe".freeze,
363
+ label: "totalTime".freeze,
364
+ type: "rdf:Property".freeze
365
+ property :unsaturatedFat,
366
+ domain: "vmd:Nutrition".freeze,
367
+ label: "unsaturatedFat".freeze,
368
+ type: "rdf:Property".freeze
369
+ property :url,
370
+ label: "url".freeze,
371
+ type: "rdf:Property".freeze
372
+ property :value,
373
+ comment: %(The value of a single Rating.).freeze,
374
+ domain: "vmd:Rating".freeze,
375
+ label: "value".freeze,
376
+ type: "rdf:Property".freeze
377
+ property :worst,
378
+ comment: %(The poorest value of a rating scale \(default 1\).).freeze,
379
+ domain: "vmd:Rating".freeze,
380
+ label: "worst".freeze,
381
+ type: "rdf:Property".freeze
382
+ property :yield,
383
+ domain: "vmd:Recipe".freeze,
384
+ label: "yield".freeze,
385
+ type: "rdf:Property".freeze
386
+ end
387
+ end
@@ -0,0 +1,190 @@
1
+ # -*- encoding: utf-8 -*-
2
+ # frozen_string_literal: true
3
+ # This file generated automatically using vocab-fetch from http://vocab.deri.ie/void.rdf
4
+ require 'rdf'
5
+ module RDF::Vocab
6
+ # @!parse
7
+ # # Vocabulary for <http://rdfs.org/ns/void#>
8
+ # class VOID < RDF::StrictVocabulary
9
+ # end
10
+ class VOID < RDF::StrictVocabulary("http://rdfs.org/ns/void#")
11
+
12
+ # Class definitions
13
+ term :Dataset,
14
+ comment: %(A set of RDF triples that are published, maintained or aggregated by a single provider.).freeze,
15
+ label: "dataset".freeze,
16
+ type: ["owl:Class".freeze, "rdfs:Class".freeze]
17
+ term :DatasetDescription,
18
+ comment: %(A web resource whose foaf:primaryTopic or foaf:topics include void:Datasets.).freeze,
19
+ label: "dataset description".freeze,
20
+ subClassOf: "foaf:Document".freeze,
21
+ type: ["owl:Class".freeze, "rdfs:Class".freeze]
22
+ term :Linkset,
23
+ comment: %(A collection of RDF links between two void:Datasets.).freeze,
24
+ label: "linkset".freeze,
25
+ subClassOf: "void:Dataset".freeze,
26
+ type: ["owl:Class".freeze, "rdfs:Class".freeze]
27
+ term :TechnicalFeature,
28
+ comment: %(A technical feature of a void:Dataset, such as a supported RDF serialization format.).freeze,
29
+ label: "technical feature".freeze,
30
+ type: ["owl:Class".freeze, "rdfs:Class".freeze]
31
+
32
+ # Property definitions
33
+ property :class,
34
+ comment: %(The rdfs:Class that is the rdf:type of all entities in a class-based partition.).freeze,
35
+ domain: "void:Dataset".freeze,
36
+ label: "class".freeze,
37
+ range: "rdfs:Class".freeze,
38
+ type: ["owl:FunctionalProperty".freeze, "rdf:Property".freeze]
39
+ property :classPartition,
40
+ comment: %(A subset of a void:Dataset that contains only the entities of a certain rdfs:Class.).freeze,
41
+ domain: "void:Dataset".freeze,
42
+ label: "class partition".freeze,
43
+ range: "void:Dataset".freeze,
44
+ subPropertyOf: "void:subset".freeze,
45
+ type: "rdf:Property".freeze
46
+ property :classes,
47
+ comment: %(The total number of distinct classes in a void:Dataset. In other words, the number of distinct resources occuring as objects of rdf:type triples in the dataset.).freeze,
48
+ domain: "void:Dataset".freeze,
49
+ label: "classes".freeze,
50
+ range: "xsd:integer".freeze,
51
+ type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze]
52
+ property :dataDump,
53
+ comment: %(An RDF dump, partial or complete, of a void:Dataset.).freeze,
54
+ domain: "void:Dataset".freeze,
55
+ label: "Data Dump".freeze,
56
+ range: "rdfs:Resource".freeze,
57
+ type: "rdf:Property".freeze
58
+ property :distinctObjects,
59
+ comment: %(The total number of distinct objects in a void:Dataset. In other words, the number of distinct resources that occur in the object position of triples in the dataset. Literals are included in this count.).freeze,
60
+ domain: "void:Dataset".freeze,
61
+ label: "distinct objects".freeze,
62
+ range: "xsd:integer".freeze,
63
+ type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze]
64
+ property :distinctSubjects,
65
+ comment: %(The total number of distinct subjects in a void:Dataset. In other words, the number of distinct resources that occur in the subject position of triples in the dataset.).freeze,
66
+ domain: "void:Dataset".freeze,
67
+ label: "distinct subjects".freeze,
68
+ range: "xsd:integer".freeze,
69
+ type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze]
70
+ property :documents,
71
+ comment: %(The total number of documents, for datasets that are published as a set of individual documents, such as RDF/XML documents or RDFa-annotated web pages. Non-RDF documents, such as web pages in HTML or images, are usually not included in this count. This property is intended for datasets where the total number of triples or entities is hard to determine. void:triples or void:entities should be preferred where practical.).freeze,
72
+ domain: "void:Dataset".freeze,
73
+ label: "number of documents".freeze,
74
+ range: "xsd:integer".freeze,
75
+ type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze]
76
+ property :entities,
77
+ comment: %(The total number of entities that are described in a void:Dataset.).freeze,
78
+ domain: "void:Dataset".freeze,
79
+ label: "number of entities".freeze,
80
+ range: "xsd:integer".freeze,
81
+ type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze]
82
+ property :exampleResource,
83
+ domain: "void:Dataset".freeze,
84
+ label: "example resource of dataset".freeze,
85
+ range: "rdfs:Resource".freeze,
86
+ type: "rdf:Property".freeze
87
+ property :feature,
88
+ domain: "void:Dataset".freeze,
89
+ label: "feature".freeze,
90
+ range: "void:TechnicalFeature".freeze,
91
+ type: "rdf:Property".freeze
92
+ property :inDataset,
93
+ comment: %(Points to the void:Dataset that a document is a part of.).freeze,
94
+ domain: "foaf:Document".freeze,
95
+ label: "in dataset".freeze,
96
+ range: "void:Dataset".freeze,
97
+ type: "rdf:Property".freeze
98
+ property :linkPredicate,
99
+ domain: "void:Linkset".freeze,
100
+ label: "a link predicate".freeze,
101
+ range: "rdf:Property".freeze,
102
+ type: "rdf:Property".freeze
103
+ property :objectsTarget,
104
+ comment: %(The dataset describing the objects of the triples contained in the Linkset.).freeze,
105
+ domain: "void:Linkset".freeze,
106
+ label: "Objects Target".freeze,
107
+ range: "void:Dataset".freeze,
108
+ subPropertyOf: "void:target".freeze,
109
+ type: ["owl:FunctionalProperty".freeze, "rdf:Property".freeze]
110
+ property :openSearchDescription,
111
+ comment: %(An OpenSearch description document for a free-text search service over a void:Dataset.).freeze,
112
+ domain: "void:Dataset".freeze,
113
+ label: "open search description".freeze,
114
+ range: "foaf:Document".freeze,
115
+ type: "rdf:Property".freeze
116
+ property :properties,
117
+ comment: %(The total number of distinct properties in a void:Dataset. In other words, the number of distinct resources that occur in the predicate position of triples in the dataset.).freeze,
118
+ domain: "void:Dataset".freeze,
119
+ label: "number of properties".freeze,
120
+ range: "xsd:integer".freeze,
121
+ type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze]
122
+ property :property,
123
+ comment: %(The rdf:Property that is the predicate of all triples in a property-based partition.).freeze,
124
+ domain: "void:Dataset".freeze,
125
+ label: "property".freeze,
126
+ range: "rdf:Property".freeze,
127
+ type: ["owl:FunctionalProperty".freeze, "rdf:Property".freeze]
128
+ property :propertyPartition,
129
+ comment: %(A subset of a void:Dataset that contains only the triples of a certain rdf:Property.).freeze,
130
+ domain: "void:Dataset".freeze,
131
+ label: "property partition".freeze,
132
+ range: "void:Dataset".freeze,
133
+ subPropertyOf: "void:subset".freeze,
134
+ type: "rdf:Property".freeze
135
+ property :rootResource,
136
+ comment: %(A top concept or entry point for a void:Dataset that is structured in a tree-like fashion. All resources in a dataset can be reached by following links from its root resources in a small number of steps.).freeze,
137
+ domain: "void:Dataset".freeze,
138
+ label: "root resource".freeze,
139
+ type: "rdf:Property".freeze
140
+ property :sparqlEndpoint,
141
+ domain: "void:Dataset".freeze,
142
+ label: "has a SPARQL endpoint at".freeze,
143
+ type: "rdf:Property".freeze
144
+ property :subjectsTarget,
145
+ comment: %(The dataset describing the subjects of triples contained in the Linkset.).freeze,
146
+ domain: "void:Linkset".freeze,
147
+ label: "Subjects Target".freeze,
148
+ range: "void:Dataset".freeze,
149
+ subPropertyOf: "void:target".freeze,
150
+ type: ["owl:FunctionalProperty".freeze, "rdf:Property".freeze]
151
+ property :subset,
152
+ domain: "void:Dataset".freeze,
153
+ label: "has subset".freeze,
154
+ range: "void:Dataset".freeze,
155
+ type: "rdf:Property".freeze
156
+ property :target,
157
+ comment: %(One of the two datasets linked by the Linkset.).freeze,
158
+ domain: "void:Linkset".freeze,
159
+ label: "Target".freeze,
160
+ range: "void:Dataset".freeze,
161
+ type: "rdf:Property".freeze
162
+ property :triples,
163
+ comment: %(The total number of triples contained in a void:Dataset.).freeze,
164
+ domain: "void:Dataset".freeze,
165
+ label: "number of triples".freeze,
166
+ range: "xsd:integer".freeze,
167
+ type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze]
168
+ property :uriLookupEndpoint,
169
+ comment: %(Defines a simple URI look-up protocol for accessing a dataset.).freeze,
170
+ domain: "void:Dataset".freeze,
171
+ label: "has an URI look-up endpoint at".freeze,
172
+ type: "rdf:Property".freeze
173
+ property :uriRegexPattern,
174
+ comment: %(Defines a regular expression pattern matching URIs in the dataset.).freeze,
175
+ domain: "void:Dataset".freeze,
176
+ label: "has URI regular expression pattern".freeze,
177
+ type: "rdf:Property".freeze
178
+ property :uriSpace,
179
+ comment: %(A URI that is a common string prefix of all the entity URIs in a void:Dataset.).freeze,
180
+ domain: "void:Dataset".freeze,
181
+ label: "URI space".freeze,
182
+ range: "rdfs:Literal".freeze,
183
+ type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze]
184
+ property :vocabulary,
185
+ comment: %(A vocabulary that is used in the dataset.).freeze,
186
+ domain: "void:Dataset".freeze,
187
+ label: "vocabulary".freeze,
188
+ type: "rdf:Property".freeze
189
+ end
190
+ end