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.
Files changed (87) hide show
  1. checksums.yaml +4 -4
  2. data/LICENSE +1 -1
  3. data/README.md +69 -45
  4. data/VERSION +1 -1
  5. data/lib/rdf/vocab.rb +60 -40
  6. data/lib/rdf/vocab/acl.rb +104 -61
  7. data/lib/rdf/vocab/as.rb +556 -91
  8. data/lib/rdf/vocab/bf2.rb +1791 -475
  9. data/lib/rdf/vocab/bibframe.rb +1 -2
  10. data/lib/rdf/vocab/bibo.rb +616 -124
  11. data/lib/rdf/vocab/cc.rb +125 -48
  12. data/lib/rdf/vocab/cert.rb +68 -1
  13. data/lib/rdf/vocab/cnt.rb +79 -1
  14. data/lib/rdf/vocab/crm.rb +1543 -776
  15. data/lib/rdf/vocab/datacite.rb +1 -1
  16. data/lib/rdf/vocab/dbo.rb +10463 -1
  17. data/lib/rdf/vocab/dc.rb +485 -99
  18. data/lib/rdf/vocab/dc11.rb +93 -31
  19. data/lib/rdf/vocab/dcat.rb +236 -88
  20. data/lib/rdf/vocab/dcmitype.rb +63 -13
  21. data/lib/rdf/vocab/disco.rb +286 -59
  22. data/lib/rdf/vocab/doap.rb +175 -1
  23. data/lib/rdf/vocab/dwc.rb +941 -189
  24. data/lib/rdf/vocab/earl.rb +324 -0
  25. data/lib/rdf/vocab/ebucore.rb +7255 -2184
  26. data/lib/rdf/vocab/edm.rb +202 -76
  27. data/lib/rdf/vocab/exif.rb +650 -1
  28. data/lib/rdf/vocab/extensions.rb +257 -203
  29. data/lib/rdf/vocab/fcrepo4.rb +398 -22
  30. data/lib/rdf/vocab/foaf.rb +380 -76
  31. data/lib/rdf/vocab/geo.rb +47 -110
  32. data/lib/rdf/vocab/geojson.rb +82 -17
  33. data/lib/rdf/vocab/geonames.rb +1508 -1351
  34. data/lib/rdf/vocab/gr.rb +861 -565
  35. data/lib/rdf/vocab/gs1.rb +1597 -1
  36. data/lib/rdf/vocab/ht.rb +204 -41
  37. data/lib/rdf/vocab/hydra.rb +335 -60
  38. data/lib/rdf/vocab/iana.rb +301 -114
  39. data/lib/rdf/vocab/ical.rb +534 -121
  40. data/lib/rdf/vocab/identifiers.rb +459 -499
  41. data/lib/rdf/vocab/iiif.rb +161 -26
  42. data/lib/rdf/vocab/jsonld.rb +179 -53
  43. data/lib/rdf/vocab/ldp.rb +130 -1
  44. data/lib/rdf/vocab/lrmi.rb +85 -17
  45. data/lib/rdf/vocab/ma.rb +460 -80
  46. data/lib/rdf/vocab/mads.rb +610 -22
  47. data/lib/rdf/vocab/{marc_relators.rb → marcrelators.rb} +813 -4
  48. data/lib/rdf/vocab/mo.rb +1115 -540
  49. data/lib/rdf/vocab/mods.rb +635 -124
  50. data/lib/rdf/vocab/nfo.rb +1 -1
  51. data/lib/rdf/vocab/oa.rb +343 -73
  52. data/lib/rdf/vocab/og.rb +100 -1
  53. data/lib/rdf/vocab/ogc.rb +42 -9
  54. data/lib/rdf/vocab/ore.rb +69 -14
  55. data/lib/rdf/vocab/org.rb +235 -47
  56. data/lib/rdf/vocab/pcdm.rb +58 -34
  57. data/lib/rdf/vocab/pplan.rb +21 -136
  58. data/lib/rdf/vocab/premis.rb +1171 -779
  59. data/lib/rdf/vocab/{premis_event_type.rb → premiseventtype.rb} +156 -2
  60. data/lib/rdf/vocab/prov.rb +700 -107
  61. data/lib/rdf/vocab/ptr.rb +172 -37
  62. data/lib/rdf/vocab/rightsstatements.rb +17 -13
  63. data/lib/rdf/vocab/rsa.rb +30 -1
  64. data/lib/rdf/vocab/rss.rb +52 -11
  65. data/lib/rdf/vocab/schema.rb +14970 -3993
  66. data/lib/rdf/vocab/schemas.rb +27066 -0
  67. data/lib/rdf/vocab/sd.rb +372 -0
  68. data/lib/rdf/vocab/sh.rb +919 -184
  69. data/lib/rdf/vocab/sioc.rb +498 -98
  70. data/lib/rdf/vocab/{sioc_services.rb → siocservices.rb} +46 -9
  71. data/lib/rdf/vocab/sioctypes.rb +434 -0
  72. data/lib/rdf/vocab/skos.rb +160 -44
  73. data/lib/rdf/vocab/skosxl.rb +40 -11
  74. data/lib/rdf/vocab/v.rb +323 -37
  75. data/lib/rdf/vocab/vcard.rb +625 -119
  76. data/lib/rdf/vocab/vmd.rb +323 -37
  77. data/lib/rdf/vocab/void.rb +147 -27
  78. data/lib/rdf/vocab/vs.rb +23 -5
  79. data/lib/rdf/vocab/wdrs.rb +112 -23
  80. data/lib/rdf/vocab/wot.rb +96 -19
  81. data/lib/rdf/vocab/xhtml.rb +2 -1
  82. data/lib/rdf/vocab/xhv.rb +422 -201
  83. data/lib/rdf/vocab/xkos.rb +156 -7
  84. data/spec/extensions_spec.rb +68 -0
  85. data/spec/vocab_spec.rb +10 -0
  86. metadata +20 -11
  87. data/lib/rdf/vocab/sioct.rb +0 -277
@@ -5,9 +5,395 @@ require 'rdf'
5
5
  module RDF::Vocab
6
6
  # @!parse
7
7
  # # Vocabulary for <http://purl.org/dc/terms/>
8
+ # #
9
+ # # DCMI Metadata Terms - other
8
10
  # class DC < RDF::StrictVocabulary
11
+ # # A resource that acts or has the power to act.
12
+ # # @return [RDF::Vocabulary::Term]
13
+ # attr_reader :Agent
14
+ #
15
+ # # A group of agents.
16
+ # # @return [RDF::Vocabulary::Term]
17
+ # attr_reader :AgentClass
18
+ #
19
+ # # A book, article, or other documentary resource.
20
+ # # @return [RDF::Vocabulary::Term]
21
+ # attr_reader :BibliographicResource
22
+ #
23
+ # # A digital resource format.
24
+ # # @return [RDF::Vocabulary::Term]
25
+ # attr_reader :FileFormat
26
+ #
27
+ # # A rate at which something recurs.
28
+ # # @return [RDF::Vocabulary::Term]
29
+ # attr_reader :Frequency
30
+ #
31
+ # # The extent or range of judicial, law enforcement, or other authority.
32
+ # # @return [RDF::Vocabulary::Term]
33
+ # attr_reader :Jurisdiction
34
+ #
35
+ # # A legal document giving official permission to do something with a resource.
36
+ # # @return [RDF::Vocabulary::Term]
37
+ # attr_reader :LicenseDocument
38
+ #
39
+ # # A system of signs, symbols, sounds, gestures, or rules used in communication.
40
+ # # @return [RDF::Vocabulary::Term]
41
+ # attr_reader :LinguisticSystem
42
+ #
43
+ # # A spatial region or named place.
44
+ # # @return [RDF::Vocabulary::Term]
45
+ # attr_reader :Location
46
+ #
47
+ # # A location, period of time, or jurisdiction.
48
+ # # @return [RDF::Vocabulary::Term]
49
+ # attr_reader :LocationPeriodOrJurisdiction
50
+ #
51
+ # # A file format or physical medium.
52
+ # # @return [RDF::Vocabulary::Term]
53
+ # attr_reader :MediaType
54
+ #
55
+ # # A media type or extent.
56
+ # # @return [RDF::Vocabulary::Term]
57
+ # attr_reader :MediaTypeOrExtent
58
+ #
59
+ # # A method by which resources are added to a collection.
60
+ # # @return [RDF::Vocabulary::Term]
61
+ # attr_reader :MethodOfAccrual
62
+ #
63
+ # # A process that is used to engender knowledge, attitudes, and skills.
64
+ # # @return [RDF::Vocabulary::Term]
65
+ # attr_reader :MethodOfInstruction
66
+ #
67
+ # # An interval of time that is named or defined by its start and end dates.
68
+ # # @return [RDF::Vocabulary::Term]
69
+ # attr_reader :PeriodOfTime
70
+ #
71
+ # # A physical material or carrier.
72
+ # # @return [RDF::Vocabulary::Term]
73
+ # attr_reader :PhysicalMedium
74
+ #
75
+ # # A material thing.
76
+ # # @return [RDF::Vocabulary::Term]
77
+ # attr_reader :PhysicalResource
78
+ #
79
+ # # A plan or course of action by an authority, intended to influence and determine decisions, actions, and other matters.
80
+ # # @return [RDF::Vocabulary::Term]
81
+ # attr_reader :Policy
82
+ #
83
+ # # Any changes in ownership and custody of a resource since its creation that are significant for its authenticity, integrity, and interpretation.
84
+ # # @return [RDF::Vocabulary::Term]
85
+ # attr_reader :ProvenanceStatement
86
+ #
87
+ # # A statement about the intellectual property rights (IPR) held in or over a resource, a legal document giving official permission to do something with a resource, or a statement about access rights.
88
+ # # @return [RDF::Vocabulary::Term]
89
+ # attr_reader :RightsStatement
90
+ #
91
+ # # A dimension or extent, or a time taken to play or execute.
92
+ # # @return [RDF::Vocabulary::Term]
93
+ # attr_reader :SizeOrDuration
94
+ #
95
+ # # A reference point against which other things can be evaluated or compared.
96
+ # # @return [RDF::Vocabulary::Term]
97
+ # attr_reader :Standard
98
+ #
99
+ # # A summary of the resource.
100
+ # # @return [RDF::Vocabulary::Term]
101
+ # attr_reader :abstract
102
+ #
103
+ # # Information about who access the resource or an indication of its security status.
104
+ # # @return [RDF::Vocabulary::Term]
105
+ # attr_reader :accessRights
106
+ #
107
+ # # The method by which items are added to a collection.
108
+ # # @return [RDF::Vocabulary::Term]
109
+ # attr_reader :accrualMethod
110
+ #
111
+ # # The frequency with which items are added to a collection.
112
+ # # @return [RDF::Vocabulary::Term]
113
+ # attr_reader :accrualPeriodicity
114
+ #
115
+ # # The policy governing the addition of items to a collection.
116
+ # # @return [RDF::Vocabulary::Term]
117
+ # attr_reader :accrualPolicy
118
+ #
119
+ # # An alternative name for the resource.
120
+ # # @return [RDF::Vocabulary::Term]
121
+ # attr_reader :alternative
122
+ #
123
+ # # A class of agents for whom the resource is intended or useful.
124
+ # # @return [RDF::Vocabulary::Term]
125
+ # attr_reader :audience
126
+ #
127
+ # # Date that the resource became or will become available.
128
+ # # @return [RDF::Vocabulary::Term]
129
+ # attr_reader :available
130
+ #
131
+ # # A bibliographic reference for the resource.
132
+ # # @return [RDF::Vocabulary::Term]
133
+ # attr_reader :bibliographicCitation
134
+ #
135
+ # # An established standard to which the described resource conforms.
136
+ # # @return [RDF::Vocabulary::Term]
137
+ # attr_reader :conformsTo
138
+ #
139
+ # # An entity responsible for making contributions to the resource.
140
+ # # @return [RDF::Vocabulary::Term]
141
+ # attr_reader :contributor
142
+ #
143
+ # # The spatial or temporal topic of the resource, spatial applicability of the resource, or jurisdiction under which the resource is relevant.
144
+ # # @return [RDF::Vocabulary::Term]
145
+ # attr_reader :coverage
146
+ #
147
+ # # Date of creation of the resource.
148
+ # # @return [RDF::Vocabulary::Term]
149
+ # attr_reader :created
150
+ #
151
+ # # An entity responsible for making the resource.
152
+ # # @return [RDF::Vocabulary::Term]
153
+ # attr_reader :creator
154
+ #
155
+ # # A point or period of time associated with an event in the lifecycle of the resource.
156
+ # # @return [RDF::Vocabulary::Term]
157
+ # attr_reader :date
158
+ #
159
+ # # Date of acceptance of the resource.
160
+ # # @return [RDF::Vocabulary::Term]
161
+ # attr_reader :dateAccepted
162
+ #
163
+ # # Date of copyright of the resource.
164
+ # # @return [RDF::Vocabulary::Term]
165
+ # attr_reader :dateCopyrighted
166
+ #
167
+ # # Date of submission of the resource.
168
+ # # @return [RDF::Vocabulary::Term]
169
+ # attr_reader :dateSubmitted
170
+ #
171
+ # # An account of the resource.
172
+ # # @return [RDF::Vocabulary::Term]
173
+ # attr_reader :description
174
+ #
175
+ # # A class of agents, defined in terms of progression through an educational or training context, for which the described resource is intended.
176
+ # # @return [RDF::Vocabulary::Term]
177
+ # attr_reader :educationLevel
178
+ #
179
+ # # The size or duration of the resource.
180
+ # # @return [RDF::Vocabulary::Term]
181
+ # attr_reader :extent
182
+ #
183
+ # # The file format, physical medium, or dimensions of the resource.
184
+ # # @return [RDF::Vocabulary::Term]
185
+ # attr_reader :format
186
+ #
187
+ # # A related resource that is substantially the same as the pre-existing described resource, but in another format.
188
+ # # @return [RDF::Vocabulary::Term]
189
+ # attr_reader :hasFormat
190
+ #
191
+ # # A related resource that is included either physically or logically in the described resource.
192
+ # # @return [RDF::Vocabulary::Term]
193
+ # attr_reader :hasPart
194
+ #
195
+ # # A related resource that is a version, edition, or adaptation of the described resource.
196
+ # # @return [RDF::Vocabulary::Term]
197
+ # attr_reader :hasVersion
198
+ #
199
+ # # An unambiguous reference to the resource within a given context.
200
+ # # @return [RDF::Vocabulary::Term]
201
+ # attr_reader :identifier
202
+ #
203
+ # # A process, used to engender knowledge, attitudes and skills, that the described resource is designed to support.
204
+ # # @return [RDF::Vocabulary::Term]
205
+ # attr_reader :instructionalMethod
206
+ #
207
+ # # A pre-existing related resource that is substantially the same as the described resource, but in another format.
208
+ # # @return [RDF::Vocabulary::Term]
209
+ # attr_reader :isFormatOf
210
+ #
211
+ # # A related resource in which the described resource is physically or logically included.
212
+ # # @return [RDF::Vocabulary::Term]
213
+ # attr_reader :isPartOf
214
+ #
215
+ # # A related resource that references, cites, or otherwise points to the described resource.
216
+ # # @return [RDF::Vocabulary::Term]
217
+ # attr_reader :isReferencedBy
218
+ #
219
+ # # A related resource that supplants, displaces, or supersedes the described resource.
220
+ # # @return [RDF::Vocabulary::Term]
221
+ # attr_reader :isReplacedBy
222
+ #
223
+ # # A related resource that requires the described resource to support its function, delivery, or coherence.
224
+ # # @return [RDF::Vocabulary::Term]
225
+ # attr_reader :isRequiredBy
226
+ #
227
+ # # A related resource of which the described resource is a version, edition, or adaptation.
228
+ # # @return [RDF::Vocabulary::Term]
229
+ # attr_reader :isVersionOf
230
+ #
231
+ # # Date of formal issuance of the resource.
232
+ # # @return [RDF::Vocabulary::Term]
233
+ # attr_reader :issued
234
+ #
235
+ # # A language of the resource.
236
+ # # @return [RDF::Vocabulary::Term]
237
+ # attr_reader :language
238
+ #
239
+ # # A legal document giving official permission to do something with the resource.
240
+ # # @return [RDF::Vocabulary::Term]
241
+ # attr_reader :license
242
+ #
243
+ # # An entity that mediates access to the resource.
244
+ # # @return [RDF::Vocabulary::Term]
245
+ # attr_reader :mediator
246
+ #
247
+ # # The material or physical carrier of the resource.
248
+ # # @return [RDF::Vocabulary::Term]
249
+ # attr_reader :medium
250
+ #
251
+ # # Date on which the resource was changed.
252
+ # # @return [RDF::Vocabulary::Term]
253
+ # attr_reader :modified
254
+ #
255
+ # # A statement of any changes in ownership and custody of the resource since its creation that are significant for its authenticity, integrity, and interpretation.
256
+ # # @return [RDF::Vocabulary::Term]
257
+ # attr_reader :provenance
258
+ #
259
+ # # An entity responsible for making the resource available.
260
+ # # @return [RDF::Vocabulary::Term]
261
+ # attr_reader :publisher
262
+ #
263
+ # # A related resource that is referenced, cited, or otherwise pointed to by the described resource.
264
+ # # @return [RDF::Vocabulary::Term]
265
+ # attr_reader :references
266
+ #
267
+ # # A related resource.
268
+ # # @return [RDF::Vocabulary::Term]
269
+ # attr_reader :relation
270
+ #
271
+ # # A related resource that is supplanted, displaced, or superseded by the described resource.
272
+ # # @return [RDF::Vocabulary::Term]
273
+ # attr_reader :replaces
274
+ #
275
+ # # A related resource that is required by the described resource to support its function, delivery, or coherence.
276
+ # # @return [RDF::Vocabulary::Term]
277
+ # attr_reader :requires
278
+ #
279
+ # # Information about rights held in and over the resource.
280
+ # # @return [RDF::Vocabulary::Term]
281
+ # attr_reader :rights
282
+ #
283
+ # # A person or organization owning or managing rights over the resource.
284
+ # # @return [RDF::Vocabulary::Term]
285
+ # attr_reader :rightsHolder
286
+ #
287
+ # # A related resource from which the described resource is derived.
288
+ # # @return [RDF::Vocabulary::Term]
289
+ # attr_reader :source
290
+ #
291
+ # # Spatial characteristics of the resource.
292
+ # # @return [RDF::Vocabulary::Term]
293
+ # attr_reader :spatial
294
+ #
295
+ # # A topic of the resource.
296
+ # # @return [RDF::Vocabulary::Term]
297
+ # attr_reader :subject
298
+ #
299
+ # # A list of subunits of the resource.
300
+ # # @return [RDF::Vocabulary::Term]
301
+ # attr_reader :tableOfContents
302
+ #
303
+ # # Temporal characteristics of the resource.
304
+ # # @return [RDF::Vocabulary::Term]
305
+ # attr_reader :temporal
306
+ #
307
+ # # A name given to the resource.
308
+ # # @return [RDF::Vocabulary::Term]
309
+ # attr_reader :title
310
+ #
311
+ # # The nature or genre of the resource.
312
+ # # @return [RDF::Vocabulary::Term]
313
+ # attr_reader :type
314
+ #
315
+ # # Date (often a range) of validity of a resource.
316
+ # # @return [RDF::Vocabulary::Term]
317
+ # attr_reader :valid
318
+ #
319
+ # # The set of regions in space defined by their geographic coordinates according to the DCMI Box Encoding Scheme.
320
+ # # @return [RDF::Vocabulary::Term]
321
+ # attr_reader :Box
322
+ #
323
+ # # The set of codes listed in ISO 3166-1 for the representation of names of countries.
324
+ # # @return [RDF::Vocabulary::Term]
325
+ # attr_reader :ISO3166
326
+ #
327
+ # # The set of time intervals defined by their limits according to the DCMI Period Encoding Scheme.
328
+ # # @return [RDF::Vocabulary::Term]
329
+ # attr_reader :Period
330
+ #
331
+ # # The set of points in space defined by their geographic coordinates according to the DCMI Point Encoding Scheme.
332
+ # # @return [RDF::Vocabulary::Term]
333
+ # attr_reader :Point
334
+ #
335
+ # # The set of tags, constructed according to RFC 1766, for the identification of languages.
336
+ # # @return [RDF::Vocabulary::Term]
337
+ # attr_reader :RFC1766
338
+ #
339
+ # # The set of tags constructed according to RFC 3066 for the identification of languages.
340
+ # # @return [RDF::Vocabulary::Term]
341
+ # attr_reader :RFC3066
342
+ #
343
+ # # The set of tags constructed according to RFC 4646 for the identification of languages.
344
+ # # @return [RDF::Vocabulary::Term]
345
+ # attr_reader :RFC4646
346
+ #
347
+ # # The set of tags constructed according to RFC 5646 for the identification of languages.
348
+ # # @return [RDF::Vocabulary::Term]
349
+ # attr_reader :RFC5646
350
+ #
351
+ # # The set of identifiers constructed according to the generic syntax for Uniform Resource Identifiers as specified by the Internet Engineering Task Force.
352
+ # # @return [RDF::Vocabulary::Term]
353
+ # attr_reader :URI
354
+ #
355
+ # # The set of dates and times constructed according to the W3C Date and Time Formats Specification.
356
+ # # @return [RDF::Vocabulary::Term]
357
+ # attr_reader :W3CDTF
358
+ #
359
+ # # The set of classes specified by the DCMI Type Vocabulary, used to categorize the nature or genre of the resource.
360
+ # # @return [RDF::Vocabulary::Term]
361
+ # attr_reader :DCMIType
362
+ #
363
+ # # The set of conceptual resources specified by the Dewey Decimal Classification.
364
+ # # @return [RDF::Vocabulary::Term]
365
+ # attr_reader :DDC
366
+ #
367
+ # # The set of media types specified by the Internet Assigned Numbers Authority.
368
+ # # @return [RDF::Vocabulary::Term]
369
+ # attr_reader :IMT
370
+ #
371
+ # # The set of conceptual resources specified by the Library of Congress Classification.
372
+ # # @return [RDF::Vocabulary::Term]
373
+ # attr_reader :LCC
374
+ #
375
+ # # The set of labeled concepts specified by the Library of Congress Subject Headings.
376
+ # # @return [RDF::Vocabulary::Term]
377
+ # attr_reader :LCSH
378
+ #
379
+ # # The set of labeled concepts specified by the Medical Subject Headings.
380
+ # # @return [RDF::Vocabulary::Term]
381
+ # attr_reader :MESH
382
+ #
383
+ # # The set of conceptual resources specified by the National Library of Medicine Classification.
384
+ # # @return [RDF::Vocabulary::Term]
385
+ # attr_reader :NLM
386
+ #
387
+ # # The set of places specified by the Getty Thesaurus of Geographic Names.
388
+ # # @return [RDF::Vocabulary::Term]
389
+ # attr_reader :TGN
390
+ #
391
+ # # The set of conceptual resources specified by the Universal Decimal Classification.
392
+ # # @return [RDF::Vocabulary::Term]
393
+ # attr_reader :UDC
394
+ #
9
395
  # end
10
- class DC < RDF::StrictVocabulary("http://purl.org/dc/terms/")
396
+ DC = Class.new(RDF::StrictVocabulary("http://purl.org/dc/terms/")) do
11
397
 
12
398
  # Ontology definition
13
399
  ontology :"http://purl.org/dc/terms/",
@@ -17,105 +403,105 @@ module RDF::Vocab
17
403
 
18
404
  # Class definitions
19
405
  term :Agent,
20
- comment: %(A resource that acts or has the power to act.).freeze,
406
+ comment: "A resource that acts or has the power to act.".freeze,
21
407
  "dc:issued": "2008-01-14".freeze,
22
408
  isDefinedBy: "dc:".freeze,
23
409
  label: "Agent".freeze,
24
410
  type: ["dc:AgentClass".freeze, "rdfs:Class".freeze]
25
411
  term :AgentClass,
26
- comment: %(A group of agents.).freeze,
412
+ comment: "A group of agents.".freeze,
27
413
  "dc:issued": "2008-01-14".freeze,
28
414
  isDefinedBy: "dc:".freeze,
29
415
  label: "Agent Class".freeze,
30
416
  subClassOf: "rdfs:Class".freeze,
31
417
  type: "rdfs:Class".freeze
32
418
  term :BibliographicResource,
33
- comment: %(A book, article, or other documentary resource.).freeze,
419
+ comment: "A book, article, or other documentary resource.".freeze,
34
420
  "dc:issued": "2008-01-14".freeze,
35
421
  isDefinedBy: "dc:".freeze,
36
422
  label: "Bibliographic Resource".freeze,
37
423
  type: "rdfs:Class".freeze
38
424
  term :FileFormat,
39
- comment: %(A digital resource format.).freeze,
425
+ comment: "A digital resource format.".freeze,
40
426
  "dc:issued": "2008-01-14".freeze,
41
427
  isDefinedBy: "dc:".freeze,
42
428
  label: "File Format".freeze,
43
429
  subClassOf: "dc:MediaType".freeze,
44
430
  type: "rdfs:Class".freeze
45
431
  term :Frequency,
46
- comment: %(A rate at which something recurs.).freeze,
432
+ comment: "A rate at which something recurs.".freeze,
47
433
  "dc:issued": "2008-01-14".freeze,
48
434
  isDefinedBy: "dc:".freeze,
49
435
  label: "Frequency".freeze,
50
436
  type: "rdfs:Class".freeze
51
437
  term :Jurisdiction,
52
- comment: %(The extent or range of judicial, law enforcement, or other authority.).freeze,
438
+ comment: "The extent or range of judicial, law enforcement, or other authority.".freeze,
53
439
  "dc:issued": "2008-01-14".freeze,
54
440
  isDefinedBy: "dc:".freeze,
55
441
  label: "Jurisdiction".freeze,
56
442
  subClassOf: "dc:LocationPeriodOrJurisdiction".freeze,
57
443
  type: "rdfs:Class".freeze
58
444
  term :LicenseDocument,
59
- comment: %(A legal document giving official permission to do something with a resource.).freeze,
445
+ comment: "A legal document giving official permission to do something with a resource.".freeze,
60
446
  "dc:issued": "2008-01-14".freeze,
61
447
  isDefinedBy: "dc:".freeze,
62
448
  label: "License Document".freeze,
63
449
  subClassOf: "dc:RightsStatement".freeze,
64
450
  type: "rdfs:Class".freeze
65
451
  term :LinguisticSystem,
66
- comment: %(A system of signs, symbols, sounds, gestures, or rules used in communication.).freeze,
452
+ comment: "A system of signs, symbols, sounds, gestures, or rules used in communication.".freeze,
67
453
  "dc:description": "Written, spoken, sign, and computer languages are linguistic systems.".freeze,
68
454
  "dc:issued": "2008-01-14".freeze,
69
455
  isDefinedBy: "dc:".freeze,
70
456
  label: "Linguistic System".freeze,
71
457
  type: "rdfs:Class".freeze
72
458
  term :Location,
73
- comment: %(A spatial region or named place.).freeze,
459
+ comment: "A spatial region or named place.".freeze,
74
460
  "dc:issued": "2008-01-14".freeze,
75
461
  isDefinedBy: "dc:".freeze,
76
462
  label: "Location".freeze,
77
463
  subClassOf: "dc:LocationPeriodOrJurisdiction".freeze,
78
464
  type: "rdfs:Class".freeze
79
465
  term :LocationPeriodOrJurisdiction,
80
- comment: %(A location, period of time, or jurisdiction.).freeze,
466
+ comment: "A location, period of time, or jurisdiction.".freeze,
81
467
  "dc:issued": "2008-01-14".freeze,
82
468
  isDefinedBy: "dc:".freeze,
83
469
  label: "Location, Period, or Jurisdiction".freeze,
84
470
  type: "rdfs:Class".freeze
85
471
  term :MediaType,
86
- comment: %(A file format or physical medium.).freeze,
472
+ comment: "A file format or physical medium.".freeze,
87
473
  "dc:issued": "2008-01-14".freeze,
88
474
  isDefinedBy: "dc:".freeze,
89
475
  label: "Media Type".freeze,
90
476
  subClassOf: "dc:MediaTypeOrExtent".freeze,
91
477
  type: "rdfs:Class".freeze
92
478
  term :MediaTypeOrExtent,
93
- comment: %(A media type or extent.).freeze,
479
+ comment: "A media type or extent.".freeze,
94
480
  "dc:issued": "2008-01-14".freeze,
95
481
  isDefinedBy: "dc:".freeze,
96
482
  label: "Media Type or Extent".freeze,
97
483
  type: "rdfs:Class".freeze
98
484
  term :MethodOfAccrual,
99
- comment: %(A method by which resources are added to a collection.).freeze,
485
+ comment: "A method by which resources are added to a collection.".freeze,
100
486
  "dc:issued": "2008-01-14".freeze,
101
487
  isDefinedBy: "dc:".freeze,
102
488
  label: "Method of Accrual".freeze,
103
489
  type: "rdfs:Class".freeze
104
490
  term :MethodOfInstruction,
105
- comment: %(A process that is used to engender knowledge, attitudes, and skills.).freeze,
491
+ comment: "A process that is used to engender knowledge, attitudes, and skills.".freeze,
106
492
  "dc:issued": "2008-01-14".freeze,
107
493
  isDefinedBy: "dc:".freeze,
108
494
  label: "Method of Instruction".freeze,
109
495
  type: "rdfs:Class".freeze
110
496
  term :PeriodOfTime,
111
- comment: %(An interval of time that is named or defined by its start and end dates.).freeze,
497
+ comment: "An interval of time that is named or defined by its start and end dates.".freeze,
112
498
  "dc:issued": "2008-01-14".freeze,
113
499
  isDefinedBy: "dc:".freeze,
114
500
  label: "Period of Time".freeze,
115
501
  subClassOf: "dc:LocationPeriodOrJurisdiction".freeze,
116
502
  type: "rdfs:Class".freeze
117
503
  term :PhysicalMedium,
118
- comment: %(A physical material or carrier.).freeze,
504
+ comment: "A physical material or carrier.".freeze,
119
505
  "dc:description": "Examples include paper, canvas, or DVD.".freeze,
120
506
  "dc:issued": "2008-01-14".freeze,
121
507
  isDefinedBy: "dc:".freeze,
@@ -123,31 +509,31 @@ module RDF::Vocab
123
509
  subClassOf: "dc:MediaType".freeze,
124
510
  type: "rdfs:Class".freeze
125
511
  term :PhysicalResource,
126
- comment: %(A material thing.).freeze,
512
+ comment: "A material thing.".freeze,
127
513
  "dc:issued": "2008-01-14".freeze,
128
514
  isDefinedBy: "dc:".freeze,
129
515
  label: "Physical Resource".freeze,
130
516
  type: "rdfs:Class".freeze
131
517
  term :Policy,
132
- comment: %(A plan or course of action by an authority, intended to influence and determine decisions, actions, and other matters.).freeze,
518
+ comment: "A plan or course of action by an authority, intended to influence and determine decisions, actions, and other matters.".freeze,
133
519
  "dc:issued": "2008-01-14".freeze,
134
520
  isDefinedBy: "dc:".freeze,
135
521
  label: "Policy".freeze,
136
522
  type: "rdfs:Class".freeze
137
523
  term :ProvenanceStatement,
138
- comment: %(Any changes in ownership and custody of a resource since its creation that are significant for its authenticity, integrity, and interpretation.).freeze,
524
+ comment: "Any changes in ownership and custody of a resource since its creation that are significant for its authenticity, integrity, and interpretation.".freeze,
139
525
  "dc:issued": "2008-01-14".freeze,
140
526
  isDefinedBy: "dc:".freeze,
141
527
  label: "Provenance Statement".freeze,
142
528
  type: "rdfs:Class".freeze
143
529
  term :RightsStatement,
144
- comment: %(A statement about the intellectual property rights \(IPR\) held in or over a resource, a legal document giving official permission to do something with a resource, or a statement about access rights.).freeze,
530
+ comment: "A statement about the intellectual property rights (IPR) held in or over a resource, a legal document giving official permission to do something with a resource, or a statement about access rights.".freeze,
145
531
  "dc:issued": "2008-01-14".freeze,
146
532
  isDefinedBy: "dc:".freeze,
147
533
  label: "Rights Statement".freeze,
148
534
  type: "rdfs:Class".freeze
149
535
  term :SizeOrDuration,
150
- comment: %(A dimension or extent, or a time taken to play or execute.).freeze,
536
+ comment: "A dimension or extent, or a time taken to play or execute.".freeze,
151
537
  "dc:description": "Examples include a number of pages, a specification of length, width, and breadth, or a period in hours, minutes, and seconds.".freeze,
152
538
  "dc:issued": "2008-01-14".freeze,
153
539
  isDefinedBy: "dc:".freeze,
@@ -155,7 +541,7 @@ module RDF::Vocab
155
541
  subClassOf: "dc:MediaTypeOrExtent".freeze,
156
542
  type: "rdfs:Class".freeze
157
543
  term :Standard,
158
- comment: %(A reference point against which other things can be evaluated or compared.).freeze,
544
+ comment: "A reference point against which other things can be evaluated or compared.".freeze,
159
545
  "dc:issued": "2008-01-14".freeze,
160
546
  isDefinedBy: "dc:".freeze,
161
547
  label: "Standard".freeze,
@@ -163,13 +549,13 @@ module RDF::Vocab
163
549
 
164
550
  # Property definitions
165
551
  property :abstract,
166
- comment: %(A summary of the resource.).freeze,
552
+ comment: "A summary of the resource.".freeze,
167
553
  "dc:issued": "2000-07-11".freeze,
168
554
  isDefinedBy: "dc:".freeze,
169
555
  label: "Abstract".freeze,
170
556
  type: "rdf:Property".freeze
171
557
  property :accessRights,
172
- comment: %(Information about who access the resource or an indication of its security status.).freeze,
558
+ comment: "Information about who access the resource or an indication of its security status.".freeze,
173
559
  "dc:description": "Access Rights may include information regarding access or restrictions based on privacy, security, or other policies.".freeze,
174
560
  "dc:issued": "2003-02-15".freeze,
175
561
  "http://purl.org/dc/dcam/rangeIncludes": "dc:RightsStatement".freeze,
@@ -177,7 +563,7 @@ module RDF::Vocab
177
563
  label: "Access Rights".freeze,
178
564
  type: "rdf:Property".freeze
179
565
  property :accrualMethod,
180
- comment: %(The method by which items are added to a collection.).freeze,
566
+ comment: "The method by which items are added to a collection.".freeze,
181
567
  "dc:description": "Recommended practice is to use a value from the Collection Description Accrual Method Vocabulary [[DCMI-ACCRUALMETHOD](https://dublincore.org/groups/collections/accrual-method/)].".freeze,
182
568
  "dc:issued": "2005-06-13".freeze,
183
569
  domain: "dcmitype:Collection".freeze,
@@ -186,7 +572,7 @@ module RDF::Vocab
186
572
  label: "Accrual Method".freeze,
187
573
  type: "rdf:Property".freeze
188
574
  property :accrualPeriodicity,
189
- comment: %(The frequency with which items are added to a collection.).freeze,
575
+ comment: "The frequency with which items are added to a collection.".freeze,
190
576
  "dc:description": "Recommended practice is to use a value from the Collection Description Frequency Vocabulary [[DCMI-COLLFREQ](https://dublincore.org/groups/collections/frequency/)].".freeze,
191
577
  "dc:issued": "2005-06-13".freeze,
192
578
  domain: "dcmitype:Collection".freeze,
@@ -195,7 +581,7 @@ module RDF::Vocab
195
581
  label: "Accrual Periodicity".freeze,
196
582
  type: "rdf:Property".freeze
197
583
  property :accrualPolicy,
198
- comment: %(The policy governing the addition of items to a collection.).freeze,
584
+ comment: "The policy governing the addition of items to a collection.".freeze,
199
585
  "dc:description": "Recommended practice is to use a value from the Collection Description Accrual Policy Vocabulary [[DCMI-ACCRUALPOLICY](https://dublincore.org/groups/collections/accrual-policy/)].".freeze,
200
586
  "dc:issued": "2005-06-13".freeze,
201
587
  domain: "dcmitype:Collection".freeze,
@@ -204,7 +590,7 @@ module RDF::Vocab
204
590
  label: "Accrual Policy".freeze,
205
591
  type: "rdf:Property".freeze
206
592
  property :alternative,
207
- comment: %(An alternative name for the resource.).freeze,
593
+ comment: "An alternative name for the resource.".freeze,
208
594
  "dc:description": "The distinction between titles and alternative titles is application-specific.".freeze,
209
595
  "dc:issued": "2000-07-11".freeze,
210
596
  isDefinedBy: "dc:".freeze,
@@ -212,7 +598,7 @@ module RDF::Vocab
212
598
  range: "rdfs:Literal".freeze,
213
599
  type: "rdf:Property".freeze
214
600
  property :audience,
215
- comment: %(A class of agents for whom the resource is intended or useful.).freeze,
601
+ comment: "A class of agents for whom the resource is intended or useful.".freeze,
216
602
  "dc:description": "Recommended practice is to use this property with non-literal values from a vocabulary of audience types.".freeze,
217
603
  "dc:issued": "2001-05-21".freeze,
218
604
  "http://purl.org/dc/dcam/rangeIncludes": "dc:AgentClass".freeze,
@@ -220,7 +606,7 @@ module RDF::Vocab
220
606
  label: "Audience".freeze,
221
607
  type: "rdf:Property".freeze
222
608
  property :available,
223
- comment: %(Date that the resource became or will become available.).freeze,
609
+ comment: "Date that the resource became or will become available.".freeze,
224
610
  "dc:description": "Recommended practice is to describe the date, date/time, or period of time as recommended for the property Date, of which this is a subproperty.".freeze,
225
611
  "dc:issued": "2000-07-11".freeze,
226
612
  isDefinedBy: "dc:".freeze,
@@ -228,7 +614,7 @@ module RDF::Vocab
228
614
  range: "rdfs:Literal".freeze,
229
615
  type: "rdf:Property".freeze
230
616
  property :bibliographicCitation,
231
- comment: %(A bibliographic reference for the resource.).freeze,
617
+ comment: "A bibliographic reference for the resource.".freeze,
232
618
  "dc:description": "Recommended practice is to include sufficient bibliographic detail to identify the resource as unambiguously as possible.".freeze,
233
619
  "dc:issued": "2003-02-15".freeze,
234
620
  isDefinedBy: "dc:".freeze,
@@ -236,14 +622,14 @@ module RDF::Vocab
236
622
  range: "rdfs:Literal".freeze,
237
623
  type: "rdf:Property".freeze
238
624
  property :conformsTo,
239
- comment: %(An established standard to which the described resource conforms.).freeze,
625
+ comment: "An established standard to which the described resource conforms.".freeze,
240
626
  "dc:issued": "2001-05-21".freeze,
241
627
  "http://purl.org/dc/dcam/rangeIncludes": "dc:Standard".freeze,
242
628
  isDefinedBy: "dc:".freeze,
243
629
  label: "Conforms To".freeze,
244
630
  type: "rdf:Property".freeze
245
631
  property :contributor,
246
- comment: %(An entity responsible for making contributions to the resource.).freeze,
632
+ comment: "An entity responsible for making contributions to the resource.".freeze,
247
633
  "dc:description": "The guidelines for using names of persons or organizations as creators apply to contributors.".freeze,
248
634
  "dc:issued": "2008-01-14".freeze,
249
635
  "http://purl.org/dc/dcam/rangeIncludes": "dc:Agent".freeze,
@@ -251,7 +637,7 @@ module RDF::Vocab
251
637
  label: "Contributor".freeze,
252
638
  type: "rdf:Property".freeze
253
639
  property :coverage,
254
- comment: %(The spatial or temporal topic of the resource, spatial applicability of the resource, or jurisdiction under which the resource is relevant.).freeze,
640
+ comment: "The spatial or temporal topic of the resource, spatial applicability of the resource, or jurisdiction under which the resource is relevant.".freeze,
255
641
  "dc:description": "Spatial topic and spatial applicability may be a named place or a location specified by its geographic coordinates. Temporal topic may be a named period, date, or date range. A jurisdiction may be a named administrative entity or a geographic place to which the resource applies. Recommended practice is to use a controlled vocabulary such as the Getty Thesaurus of Geographic Names [[TGN](https://www.getty.edu/research/tools/vocabulary/tgn/index.html)]. Where appropriate, named places or time periods may be used in preference to numeric identifiers such as sets of coordinates or date ranges. Because coverage is so broadly defined, it is preferable to use the more specific subproperties Temporal Coverage and Spatial Coverage.".freeze,
256
642
  "dc:issued": "2008-01-14".freeze,
257
643
  "http://purl.org/dc/dcam/rangeIncludes": ["dc:Jurisdiction".freeze, "dc:Location".freeze, "dc:Period".freeze],
@@ -259,7 +645,7 @@ module RDF::Vocab
259
645
  label: "Coverage".freeze,
260
646
  type: "rdf:Property".freeze
261
647
  property :created,
262
- comment: %(Date of creation of the resource.).freeze,
648
+ comment: "Date of creation of the resource.".freeze,
263
649
  "dc:description": "Recommended practice is to describe the date, date/time, or period of time as recommended for the property Date, of which this is a subproperty.".freeze,
264
650
  "dc:issued": "2000-07-11".freeze,
265
651
  isDefinedBy: "dc:".freeze,
@@ -267,7 +653,7 @@ module RDF::Vocab
267
653
  range: "rdfs:Literal".freeze,
268
654
  type: "rdf:Property".freeze
269
655
  property :creator,
270
- comment: %(An entity responsible for making the resource.).freeze,
656
+ comment: "An entity responsible for making the resource.".freeze,
271
657
  "dc:description": "Recommended practice is to identify the creator with a URI. If this is not possible or feasible, a literal value that identifies the creator may be provided.".freeze,
272
658
  "dc:issued": "2008-01-14".freeze,
273
659
  equivalentProperty: "foaf:maker".freeze,
@@ -276,7 +662,7 @@ module RDF::Vocab
276
662
  label: "Creator".freeze,
277
663
  type: "rdf:Property".freeze
278
664
  property :date,
279
- comment: %(A point or period of time associated with an event in the lifecycle of the resource.).freeze,
665
+ comment: "A point or period of time associated with an event in the lifecycle of the resource.".freeze,
280
666
  "dc:description": "Date may be used to express temporal information at any level of granularity. Recommended practice is to express the date, date/time, or period of time according to ISO 8601-1 [[ISO 8601-1](https://www.iso.org/iso-8601-date-and-time-format.html)] or a published profile of the ISO standard, such as the W3C Note on Date and Time Formats [[W3CDTF](https://www.w3.org/TR/NOTE-datetime)] or the Extended Date/Time Format Specification [[EDTF](http://www.loc.gov/standards/datetime/)]. If the full date is unknown, month and year (YYYY-MM) or just year (YYYY) may be used. Date ranges may be specified using ISO 8601 period of time specification in which start and end dates are separated by a '/' (slash) character. Either the start or end date may be missing.".freeze,
281
667
  "dc:issued": "2008-01-14".freeze,
282
668
  isDefinedBy: "dc:".freeze,
@@ -284,7 +670,7 @@ module RDF::Vocab
284
670
  range: "rdfs:Literal".freeze,
285
671
  type: "rdf:Property".freeze
286
672
  property :dateAccepted,
287
- comment: %(Date of acceptance of the resource.).freeze,
673
+ comment: "Date of acceptance of the resource.".freeze,
288
674
  "dc:description": "Recommended practice is to describe the date, date/time, or period of time as recommended for the property Date, of which this is a subproperty. Examples of resources to which a date of acceptance may be relevant are a thesis (accepted by a university department) or an article (accepted by a journal).".freeze,
289
675
  "dc:issued": "2002-07-13".freeze,
290
676
  isDefinedBy: "dc:".freeze,
@@ -292,7 +678,7 @@ module RDF::Vocab
292
678
  range: "rdfs:Literal".freeze,
293
679
  type: "rdf:Property".freeze
294
680
  property :dateCopyrighted,
295
- comment: %(Date of copyright of the resource.).freeze,
681
+ comment: "Date of copyright of the resource.".freeze,
296
682
  "dc:description": "Typically a year. Recommended practice is to describe the date, date/time, or period of time as recommended for the property Date, of which this is a subproperty.".freeze,
297
683
  "dc:issued": "2002-07-13".freeze,
298
684
  isDefinedBy: "dc:".freeze,
@@ -300,7 +686,7 @@ module RDF::Vocab
300
686
  range: "rdfs:Literal".freeze,
301
687
  type: "rdf:Property".freeze
302
688
  property :dateSubmitted,
303
- comment: %(Date of submission of the resource.).freeze,
689
+ comment: "Date of submission of the resource.".freeze,
304
690
  "dc:description": "Recommended practice is to describe the date, date/time, or period of time as recommended for the property Date, of which this is a subproperty. Examples of resources to which a 'Date Submitted' may be relevant include a thesis (submitted to a university department) or an article (submitted to a journal).".freeze,
305
691
  "dc:issued": "2002-07-13".freeze,
306
692
  isDefinedBy: "dc:".freeze,
@@ -308,21 +694,21 @@ module RDF::Vocab
308
694
  range: "rdfs:Literal".freeze,
309
695
  type: "rdf:Property".freeze
310
696
  property :description,
311
- comment: %(An account of the resource.).freeze,
697
+ comment: "An account of the resource.".freeze,
312
698
  "dc:description": "Description may include but is not limited to: an abstract, a table of contents, a graphical representation, or a free-text account of the resource.".freeze,
313
699
  "dc:issued": "2008-01-14".freeze,
314
700
  isDefinedBy: "dc:".freeze,
315
701
  label: "Description".freeze,
316
702
  type: "rdf:Property".freeze
317
703
  property :educationLevel,
318
- comment: %(A class of agents, defined in terms of progression through an educational or training context, for which the described resource is intended.).freeze,
704
+ comment: "A class of agents, defined in terms of progression through an educational or training context, for which the described resource is intended.".freeze,
319
705
  "dc:issued": "2002-07-13".freeze,
320
706
  "http://purl.org/dc/dcam/rangeIncludes": "dc:AgentClass".freeze,
321
707
  isDefinedBy: "dc:".freeze,
322
708
  label: "Audience Education Level".freeze,
323
709
  type: "rdf:Property".freeze
324
710
  property :extent,
325
- comment: %(The size or duration of the resource.).freeze,
711
+ comment: "The size or duration of the resource.".freeze,
326
712
  "dc:description": "Recommended practice is to specify the file size in megabytes and duration in ISO 8601 format.".freeze,
327
713
  "dc:issued": "2000-07-11".freeze,
328
714
  "http://purl.org/dc/dcam/rangeIncludes": "dc:SizeOrDuration".freeze,
@@ -330,7 +716,7 @@ module RDF::Vocab
330
716
  label: "Extent".freeze,
331
717
  type: "rdf:Property".freeze
332
718
  property :format,
333
- comment: %(The file format, physical medium, or dimensions of the resource.).freeze,
719
+ comment: "The file format, physical medium, or dimensions of the resource.".freeze,
334
720
  "dc:description": "Recommended practice is to use a controlled vocabulary where available. For example, for file formats one could use the list of Internet Media Types [[MIME](https://www.iana.org/assignments/media-types/media-types.xhtml)]. Examples of dimensions include size and duration.".freeze,
335
721
  "dc:issued": "2008-01-14".freeze,
336
722
  "http://purl.org/dc/dcam/rangeIncludes": ["dc:Extent".freeze, "dc:MediaType".freeze],
@@ -338,28 +724,28 @@ module RDF::Vocab
338
724
  label: "Format".freeze,
339
725
  type: "rdf:Property".freeze
340
726
  property :hasFormat,
341
- comment: %(A related resource that is substantially the same as the pre-existing described resource, but in another format.).freeze,
727
+ comment: "A related resource that is substantially the same as the pre-existing described resource, but in another format.".freeze,
342
728
  "dc:description": "This property is intended to be used with non-literal values. This property is an inverse property of Is Format Of.".freeze,
343
729
  "dc:issued": "2000-07-11".freeze,
344
730
  isDefinedBy: "dc:".freeze,
345
731
  label: "Has Format".freeze,
346
732
  type: "rdf:Property".freeze
347
733
  property :hasPart,
348
- comment: %(A related resource that is included either physically or logically in the described resource.).freeze,
734
+ comment: "A related resource that is included either physically or logically in the described resource.".freeze,
349
735
  "dc:description": "This property is intended to be used with non-literal values. This property is an inverse property of Is Part Of.".freeze,
350
736
  "dc:issued": "2000-07-11".freeze,
351
737
  isDefinedBy: "dc:".freeze,
352
738
  label: "Has Part".freeze,
353
739
  type: "rdf:Property".freeze
354
740
  property :hasVersion,
355
- comment: %(A related resource that is a version, edition, or adaptation of the described resource.).freeze,
741
+ comment: "A related resource that is a version, edition, or adaptation of the described resource.".freeze,
356
742
  "dc:description": "Changes in version imply substantive changes in content rather than differences in format. This property is intended to be used with non-literal values. This property is an inverse property of Is Version Of.".freeze,
357
743
  "dc:issued": "2000-07-11".freeze,
358
744
  isDefinedBy: "dc:".freeze,
359
745
  label: "Has Version".freeze,
360
746
  type: "rdf:Property".freeze
361
747
  property :identifier,
362
- comment: %(An unambiguous reference to the resource within a given context.).freeze,
748
+ comment: "An unambiguous reference to the resource within a given context.".freeze,
363
749
  "dc:description": "Recommended practice is to identify the resource by means of a string conforming to an identification system. Examples include International Standard Book Number (ISBN), Digital Object Identifier (DOI), and Uniform Resource Name (URN). Persistent identifiers should be provided as HTTP URIs.".freeze,
364
750
  "dc:issued": "2008-01-14".freeze,
365
751
  isDefinedBy: "dc:".freeze,
@@ -367,7 +753,7 @@ module RDF::Vocab
367
753
  range: "rdfs:Literal".freeze,
368
754
  type: "rdf:Property".freeze
369
755
  property :instructionalMethod,
370
- comment: %(A process, used to engender knowledge, attitudes and skills, that the described resource is designed to support.).freeze,
756
+ comment: "A process, used to engender knowledge, attitudes and skills, that the described resource is designed to support.".freeze,
371
757
  "dc:description": "Instructional Method typically includes ways of presenting instructional materials or conducting instructional activities, patterns of learner-to-learner and learner-to-instructor interactions, and mechanisms by which group and individual levels of learning are measured. Instructional methods include all aspects of the instruction and learning processes from planning and implementation through evaluation and feedback.".freeze,
372
758
  "dc:issued": "2005-06-13".freeze,
373
759
  "http://purl.org/dc/dcam/rangeIncludes": "dc:MethodOfInstruction".freeze,
@@ -375,49 +761,49 @@ module RDF::Vocab
375
761
  label: "Instructional Method".freeze,
376
762
  type: "rdf:Property".freeze
377
763
  property :isFormatOf,
378
- comment: %(A pre-existing related resource that is substantially the same as the described resource, but in another format.).freeze,
764
+ comment: "A pre-existing related resource that is substantially the same as the described resource, but in another format.".freeze,
379
765
  "dc:description": "This property is intended to be used with non-literal values. This property is an inverse property of Has Format.".freeze,
380
766
  "dc:issued": "2000-07-11".freeze,
381
767
  isDefinedBy: "dc:".freeze,
382
768
  label: "Is Format Of".freeze,
383
769
  type: "rdf:Property".freeze
384
770
  property :isPartOf,
385
- comment: %(A related resource in which the described resource is physically or logically included.).freeze,
771
+ comment: "A related resource in which the described resource is physically or logically included.".freeze,
386
772
  "dc:description": "This property is intended to be used with non-literal values. This property is an inverse property of Has Part.".freeze,
387
773
  "dc:issued": "2000-07-11".freeze,
388
774
  isDefinedBy: "dc:".freeze,
389
775
  label: "Is Part Of".freeze,
390
776
  type: "rdf:Property".freeze
391
777
  property :isReferencedBy,
392
- comment: %(A related resource that references, cites, or otherwise points to the described resource.).freeze,
778
+ comment: "A related resource that references, cites, or otherwise points to the described resource.".freeze,
393
779
  "dc:description": "This property is intended to be used with non-literal values. This property is an inverse property of References.".freeze,
394
780
  "dc:issued": "2000-07-11".freeze,
395
781
  isDefinedBy: "dc:".freeze,
396
782
  label: "Is Referenced By".freeze,
397
783
  type: "rdf:Property".freeze
398
784
  property :isReplacedBy,
399
- comment: %(A related resource that supplants, displaces, or supersedes the described resource.).freeze,
785
+ comment: "A related resource that supplants, displaces, or supersedes the described resource.".freeze,
400
786
  "dc:description": "This property is intended to be used with non-literal values. This property is an inverse property of Replaces.".freeze,
401
787
  "dc:issued": "2000-07-11".freeze,
402
788
  isDefinedBy: "dc:".freeze,
403
789
  label: "Is Replaced By".freeze,
404
790
  type: "rdf:Property".freeze
405
791
  property :isRequiredBy,
406
- comment: %(A related resource that requires the described resource to support its function, delivery, or coherence.).freeze,
792
+ comment: "A related resource that requires the described resource to support its function, delivery, or coherence.".freeze,
407
793
  "dc:description": "This property is intended to be used with non-literal values. This property is an inverse property of Requires.".freeze,
408
794
  "dc:issued": "2000-07-11".freeze,
409
795
  isDefinedBy: "dc:".freeze,
410
796
  label: "Is Required By".freeze,
411
797
  type: "rdf:Property".freeze
412
798
  property :isVersionOf,
413
- comment: %(A related resource of which the described resource is a version, edition, or adaptation.).freeze,
799
+ comment: "A related resource of which the described resource is a version, edition, or adaptation.".freeze,
414
800
  "dc:description": "Changes in version imply substantive changes in content rather than differences in format. This property is intended to be used with non-literal values. This property is an inverse property of Has Version.".freeze,
415
801
  "dc:issued": "2000-07-11".freeze,
416
802
  isDefinedBy: "dc:".freeze,
417
803
  label: "Is Version Of".freeze,
418
804
  type: "rdf:Property".freeze
419
805
  property :issued,
420
- comment: %(Date of formal issuance of the resource.).freeze,
806
+ comment: "Date of formal issuance of the resource.".freeze,
421
807
  "dc:description": "Recommended practice is to describe the date, date/time, or period of time as recommended for the property Date, of which this is a subproperty.".freeze,
422
808
  "dc:issued": "2000-07-11".freeze,
423
809
  isDefinedBy: "dc:".freeze,
@@ -425,7 +811,7 @@ module RDF::Vocab
425
811
  range: "rdfs:Literal".freeze,
426
812
  type: "rdf:Property".freeze
427
813
  property :language,
428
- comment: %(A language of the resource.).freeze,
814
+ comment: "A language of the resource.".freeze,
429
815
  "dc:description": "Recommended practice is to use either a non-literal value representing a language from a controlled vocabulary such as ISO 639-2 or ISO 639-3, or a literal value consisting of an IETF Best Current Practice 47 [[IETF-BCP47](https://tools.ietf.org/html/bcp47)] language tag.".freeze,
430
816
  "dc:issued": "2008-01-14".freeze,
431
817
  "http://purl.org/dc/dcam/rangeIncludes": "dc:LinguisticSystem".freeze,
@@ -433,7 +819,7 @@ module RDF::Vocab
433
819
  label: "Language".freeze,
434
820
  type: "rdf:Property".freeze
435
821
  property :license,
436
- comment: %(A legal document giving official permission to do something with the resource.).freeze,
822
+ comment: "A legal document giving official permission to do something with the resource.".freeze,
437
823
  "dc:description": "Recommended practice is to identify the license document with a URI. If this is not possible or feasible, a literal value that identifies the license may be provided.".freeze,
438
824
  "dc:issued": "2004-06-14".freeze,
439
825
  "http://purl.org/dc/dcam/rangeIncludes": "dc:LicenseDocument".freeze,
@@ -441,7 +827,7 @@ module RDF::Vocab
441
827
  label: "License".freeze,
442
828
  type: "rdf:Property".freeze
443
829
  property :mediator,
444
- comment: %(An entity that mediates access to the resource.).freeze,
830
+ comment: "An entity that mediates access to the resource.".freeze,
445
831
  "dc:description": "In an educational context, a mediator might be a parent, teacher, teaching assistant, or care-giver.".freeze,
446
832
  "dc:issued": "2001-05-21".freeze,
447
833
  "http://purl.org/dc/dcam/rangeIncludes": "dc:AgentClass".freeze,
@@ -449,7 +835,7 @@ module RDF::Vocab
449
835
  label: "Mediator".freeze,
450
836
  type: "rdf:Property".freeze
451
837
  property :medium,
452
- comment: %(The material or physical carrier of the resource.).freeze,
838
+ comment: "The material or physical carrier of the resource.".freeze,
453
839
  "dc:issued": "2000-07-11".freeze,
454
840
  "http://purl.org/dc/dcam/domainIncludes": "dc:PhysicalResource".freeze,
455
841
  "http://purl.org/dc/dcam/rangeIncludes": "dc:PhysicalMedium".freeze,
@@ -457,7 +843,7 @@ module RDF::Vocab
457
843
  label: "Medium".freeze,
458
844
  type: "rdf:Property".freeze
459
845
  property :modified,
460
- comment: %(Date on which the resource was changed.).freeze,
846
+ comment: "Date on which the resource was changed.".freeze,
461
847
  "dc:description": "Recommended practice is to describe the date, date/time, or period of time as recommended for the property Date, of which this is a subproperty.".freeze,
462
848
  "dc:issued": "2000-07-11".freeze,
463
849
  isDefinedBy: "dc:".freeze,
@@ -465,7 +851,7 @@ module RDF::Vocab
465
851
  range: "rdfs:Literal".freeze,
466
852
  type: "rdf:Property".freeze
467
853
  property :provenance,
468
- comment: %(A statement of any changes in ownership and custody of the resource since its creation that are significant for its authenticity, integrity, and interpretation.).freeze,
854
+ comment: "A statement of any changes in ownership and custody of the resource since its creation that are significant for its authenticity, integrity, and interpretation.".freeze,
469
855
  "dc:description": "The statement may include a description of any changes successive custodians made to the resource.".freeze,
470
856
  "dc:issued": "2004-09-20".freeze,
471
857
  "http://purl.org/dc/dcam/rangeIncludes": "dc:ProvenanceStatement".freeze,
@@ -473,42 +859,42 @@ module RDF::Vocab
473
859
  label: "Provenance".freeze,
474
860
  type: "rdf:Property".freeze
475
861
  property :publisher,
476
- comment: %(An entity responsible for making the resource available.).freeze,
862
+ comment: "An entity responsible for making the resource available.".freeze,
477
863
  "dc:issued": "2008-01-14".freeze,
478
864
  "http://purl.org/dc/dcam/rangeIncludes": "dc:Agent".freeze,
479
865
  isDefinedBy: "dc:".freeze,
480
866
  label: "Publisher".freeze,
481
867
  type: "rdf:Property".freeze
482
868
  property :references,
483
- comment: %(A related resource that is referenced, cited, or otherwise pointed to by the described resource.).freeze,
869
+ comment: "A related resource that is referenced, cited, or otherwise pointed to by the described resource.".freeze,
484
870
  "dc:description": "This property is intended to be used with non-literal values. This property is an inverse property of Is Referenced By.".freeze,
485
871
  "dc:issued": "2000-07-11".freeze,
486
872
  isDefinedBy: "dc:".freeze,
487
873
  label: "References".freeze,
488
874
  type: "rdf:Property".freeze
489
875
  property :relation,
490
- comment: %(A related resource.).freeze,
876
+ comment: "A related resource.".freeze,
491
877
  "dc:description": "Recommended practice is to identify the related resource by means of a URI. If this is not possible or feasible, a string conforming to a formal identification system may be provided.".freeze,
492
878
  "dc:issued": "2008-01-14".freeze,
493
879
  isDefinedBy: "dc:".freeze,
494
880
  label: "Relation".freeze,
495
881
  type: "rdf:Property".freeze
496
882
  property :replaces,
497
- comment: %(A related resource that is supplanted, displaced, or superseded by the described resource.).freeze,
883
+ comment: "A related resource that is supplanted, displaced, or superseded by the described resource.".freeze,
498
884
  "dc:description": "This property is intended to be used with non-literal values. This property is an inverse property of Is Replaced By.".freeze,
499
885
  "dc:issued": "2000-07-11".freeze,
500
886
  isDefinedBy: "dc:".freeze,
501
887
  label: "Replaces".freeze,
502
888
  type: "rdf:Property".freeze
503
889
  property :requires,
504
- comment: %(A related resource that is required by the described resource to support its function, delivery, or coherence.).freeze,
890
+ comment: "A related resource that is required by the described resource to support its function, delivery, or coherence.".freeze,
505
891
  "dc:description": "This property is intended to be used with non-literal values. This property is an inverse property of Is Required By.".freeze,
506
892
  "dc:issued": "2000-07-11".freeze,
507
893
  isDefinedBy: "dc:".freeze,
508
894
  label: "Requires".freeze,
509
895
  type: "rdf:Property".freeze
510
896
  property :rights,
511
- comment: %(Information about rights held in and over the resource.).freeze,
897
+ comment: "Information about rights held in and over the resource.".freeze,
512
898
  "dc:description": "Typically, rights information includes a statement about various property rights associated with the resource, including intellectual property rights. Recommended practice is to refer to a rights statement with a URI. If this is not possible or feasible, a literal value (name, label, or short text) may be provided.".freeze,
513
899
  "dc:issued": "2008-01-14".freeze,
514
900
  "http://purl.org/dc/dcam/rangeIncludes": "dc:RightsStatement".freeze,
@@ -516,7 +902,7 @@ module RDF::Vocab
516
902
  label: "Rights".freeze,
517
903
  type: "rdf:Property".freeze
518
904
  property :rightsHolder,
519
- comment: %(A person or organization owning or managing rights over the resource.).freeze,
905
+ comment: "A person or organization owning or managing rights over the resource.".freeze,
520
906
  "dc:description": "Recommended practice is to refer to the rights holder with a URI. If this is not possible or feasible, a literal value that identifies the rights holder may be provided.".freeze,
521
907
  "dc:issued": "2004-06-14".freeze,
522
908
  "http://purl.org/dc/dcam/rangeIncludes": "dc:Agent".freeze,
@@ -524,55 +910,55 @@ module RDF::Vocab
524
910
  label: "Rights Holder".freeze,
525
911
  type: "rdf:Property".freeze
526
912
  property :source,
527
- comment: %(A related resource from which the described resource is derived.).freeze,
913
+ comment: "A related resource from which the described resource is derived.".freeze,
528
914
  "dc:description": "This property is intended to be used with non-literal values. The described resource may be derived from the related resource in whole or in part. Best practice is to identify the related resource by means of a URI or a string conforming to a formal identification system.".freeze,
529
915
  "dc:issued": "2008-01-14".freeze,
530
916
  isDefinedBy: "dc:".freeze,
531
917
  label: "Source".freeze,
532
918
  type: "rdf:Property".freeze
533
919
  property :spatial,
534
- comment: %(Spatial characteristics of the resource.).freeze,
920
+ comment: "Spatial characteristics of the resource.".freeze,
535
921
  "dc:issued": "2000-07-11".freeze,
536
922
  "http://purl.org/dc/dcam/rangeIncludes": "dc:Location".freeze,
537
923
  isDefinedBy: "dc:".freeze,
538
924
  label: "Spatial Coverage".freeze,
539
925
  type: "rdf:Property".freeze
540
926
  property :subject,
541
- comment: %(A topic of the resource.).freeze,
927
+ comment: "A topic of the resource.".freeze,
542
928
  "dc:description": "Recommended practice is to refer to the subject with a URI. If this is not possible or feasible, a literal value that identifies the subject may be provided. Both should preferably refer to a subject in a controlled vocabulary.".freeze,
543
929
  "dc:issued": "2008-01-14".freeze,
544
930
  isDefinedBy: "dc:".freeze,
545
931
  label: "Subject".freeze,
546
932
  type: "rdf:Property".freeze
547
933
  property :tableOfContents,
548
- comment: %(A list of subunits of the resource.).freeze,
934
+ comment: "A list of subunits of the resource.".freeze,
549
935
  "dc:issued": "2000-07-11".freeze,
550
936
  isDefinedBy: "dc:".freeze,
551
937
  label: "Table Of Contents".freeze,
552
938
  type: "rdf:Property".freeze
553
939
  property :temporal,
554
- comment: %(Temporal characteristics of the resource.).freeze,
940
+ comment: "Temporal characteristics of the resource.".freeze,
555
941
  "dc:issued": "2000-07-11".freeze,
556
942
  "http://purl.org/dc/dcam/rangeIncludes": "dc:PeriodOfTime".freeze,
557
943
  isDefinedBy: "dc:".freeze,
558
944
  label: "Temporal Coverage".freeze,
559
945
  type: "rdf:Property".freeze
560
946
  property :title,
561
- comment: %(A name given to the resource.).freeze,
947
+ comment: "A name given to the resource.".freeze,
562
948
  "dc:issued": "2008-01-14".freeze,
563
949
  isDefinedBy: "dc:".freeze,
564
950
  label: "Title".freeze,
565
951
  range: "rdfs:Literal".freeze,
566
952
  type: "rdf:Property".freeze
567
953
  property :type,
568
- comment: %(The nature or genre of the resource.).freeze,
954
+ comment: "The nature or genre of the resource.".freeze,
569
955
  "dc:description": "Recommended practice is to use a controlled vocabulary such as the DCMI Type Vocabulary [[DCMI-TYPE](http://dublincore.org/documents/dcmi-type-vocabulary/)]. To describe the file format, physical medium, or dimensions of the resource, use the property Format.".freeze,
570
956
  "dc:issued": "2008-01-14".freeze,
571
957
  isDefinedBy: "dc:".freeze,
572
958
  label: "Type".freeze,
573
959
  type: "rdf:Property".freeze
574
960
  property :valid,
575
- comment: %(Date \(often a range\) of validity of a resource.).freeze,
961
+ comment: "Date (often a range) of validity of a resource.".freeze,
576
962
  "dc:description": "Recommended practice is to describe the date, date/time, or period of time as recommended for the property Date, of which this is a subproperty.".freeze,
577
963
  "dc:issued": "2000-07-11".freeze,
578
964
  isDefinedBy: "dc:".freeze,
@@ -582,56 +968,56 @@ module RDF::Vocab
582
968
 
583
969
  # Datatype definitions
584
970
  term :Box,
585
- comment: %(The set of regions in space defined by their geographic coordinates according to the DCMI Box Encoding Scheme.).freeze,
971
+ comment: "The set of regions in space defined by their geographic coordinates according to the DCMI Box Encoding Scheme.".freeze,
586
972
  "dc:issued": "2000-07-11".freeze,
587
973
  isDefinedBy: "dc:".freeze,
588
974
  label: "DCMI Box".freeze,
589
975
  "rdfs:seeAlso": "https://www.dublincore.org/specifications/dublin-core/dcmi-box/".freeze,
590
976
  type: "rdfs:Datatype".freeze
591
977
  term :ISO3166,
592
- comment: %(The set of codes listed in ISO 3166-1 for the representation of names of countries.).freeze,
978
+ comment: "The set of codes listed in ISO 3166-1 for the representation of names of countries.".freeze,
593
979
  "dc:issued": "2000-07-11".freeze,
594
980
  isDefinedBy: "dc:".freeze,
595
981
  label: "ISO 3166".freeze,
596
982
  "rdfs:seeAlso": "http://www.iso.org/iso/en/prods-services/iso3166ma/02iso-3166-code-lists/list-en1.html".freeze,
597
983
  type: "rdfs:Datatype".freeze
598
984
  term :"ISO639-2",
599
- comment: %(The three-letter alphabetic codes listed in ISO639-2 for the representation of names of languages.).freeze,
985
+ comment: "The three-letter alphabetic codes listed in ISO639-2 for the representation of names of languages.".freeze,
600
986
  "dc:issued": "2000-07-11".freeze,
601
987
  isDefinedBy: "dc:".freeze,
602
988
  label: "ISO 639-2".freeze,
603
989
  "rdfs:seeAlso": "http://lcweb.loc.gov/standards/iso639-2/langhome.html".freeze,
604
990
  type: "rdfs:Datatype".freeze
605
991
  term :"ISO639-3",
606
- comment: %(The set of three-letter codes listed in ISO 639-3 for the representation of names of languages.).freeze,
992
+ comment: "The set of three-letter codes listed in ISO 639-3 for the representation of names of languages.".freeze,
607
993
  "dc:issued": "2008-01-14".freeze,
608
994
  isDefinedBy: "dc:".freeze,
609
995
  label: "ISO 639-3".freeze,
610
996
  "rdfs:seeAlso": "http://www.sil.org/iso639-3/".freeze,
611
997
  type: "rdfs:Datatype".freeze
612
998
  term :Period,
613
- comment: %(The set of time intervals defined by their limits according to the DCMI Period Encoding Scheme.).freeze,
999
+ comment: "The set of time intervals defined by their limits according to the DCMI Period Encoding Scheme.".freeze,
614
1000
  "dc:issued": "2000-07-11".freeze,
615
1001
  isDefinedBy: "dc:".freeze,
616
1002
  label: "DCMI Period".freeze,
617
1003
  "rdfs:seeAlso": "https://www.dublincore.org/specifications/dublin-core/dcmi-period/".freeze,
618
1004
  type: "rdfs:Datatype".freeze
619
1005
  term :Point,
620
- comment: %(The set of points in space defined by their geographic coordinates according to the DCMI Point Encoding Scheme.).freeze,
1006
+ comment: "The set of points in space defined by their geographic coordinates according to the DCMI Point Encoding Scheme.".freeze,
621
1007
  "dc:issued": "2000-07-11".freeze,
622
1008
  isDefinedBy: "dc:".freeze,
623
1009
  label: "DCMI Point".freeze,
624
1010
  "rdfs:seeAlso": "https://www.dublincore.org/specifications/dublin-core/dcmi-point/".freeze,
625
1011
  type: "rdfs:Datatype".freeze
626
1012
  term :RFC1766,
627
- comment: %(The set of tags, constructed according to RFC 1766, for the identification of languages.).freeze,
1013
+ comment: "The set of tags, constructed according to RFC 1766, for the identification of languages.".freeze,
628
1014
  "dc:issued": "2000-07-11".freeze,
629
1015
  isDefinedBy: "dc:".freeze,
630
1016
  label: "RFC 1766".freeze,
631
1017
  "rdfs:seeAlso": "http://www.ietf.org/rfc/rfc1766.txt".freeze,
632
1018
  type: "rdfs:Datatype".freeze
633
1019
  term :RFC3066,
634
- comment: %(The set of tags constructed according to RFC 3066 for the identification of languages.).freeze,
1020
+ comment: "The set of tags constructed according to RFC 3066 for the identification of languages.".freeze,
635
1021
  "dc:description": "RFC 3066 has been obsoleted by RFC 4646.".freeze,
636
1022
  "dc:issued": "2002-07-13".freeze,
637
1023
  isDefinedBy: "dc:".freeze,
@@ -639,7 +1025,7 @@ module RDF::Vocab
639
1025
  "rdfs:seeAlso": "http://www.ietf.org/rfc/rfc3066.txt".freeze,
640
1026
  type: "rdfs:Datatype".freeze
641
1027
  term :RFC4646,
642
- comment: %(The set of tags constructed according to RFC 4646 for the identification of languages.).freeze,
1028
+ comment: "The set of tags constructed according to RFC 4646 for the identification of languages.".freeze,
643
1029
  "dc:description": "RFC 4646 obsoletes RFC 3066.".freeze,
644
1030
  "dc:issued": "2008-01-14".freeze,
645
1031
  isDefinedBy: "dc:".freeze,
@@ -647,7 +1033,7 @@ module RDF::Vocab
647
1033
  "rdfs:seeAlso": "http://www.ietf.org/rfc/rfc4646.txt".freeze,
648
1034
  type: "rdfs:Datatype".freeze
649
1035
  term :RFC5646,
650
- comment: %(The set of tags constructed according to RFC 5646 for the identification of languages.).freeze,
1036
+ comment: "The set of tags constructed according to RFC 5646 for the identification of languages.".freeze,
651
1037
  "dc:description": "RFC 5646 obsoletes RFC 4646.".freeze,
652
1038
  "dc:issued": "2010-10-11".freeze,
653
1039
  isDefinedBy: "dc:".freeze,
@@ -655,14 +1041,14 @@ module RDF::Vocab
655
1041
  "rdfs:seeAlso": "http://www.ietf.org/rfc/rfc5646.txt".freeze,
656
1042
  type: "rdfs:Datatype".freeze
657
1043
  term :URI,
658
- comment: %(The set of identifiers constructed according to the generic syntax for Uniform Resource Identifiers as specified by the Internet Engineering Task Force.).freeze,
1044
+ comment: "The set of identifiers constructed according to the generic syntax for Uniform Resource Identifiers as specified by the Internet Engineering Task Force.".freeze,
659
1045
  "dc:issued": "2000-07-11".freeze,
660
1046
  isDefinedBy: "dc:".freeze,
661
1047
  label: "URI".freeze,
662
1048
  "rdfs:seeAlso": "http://www.ietf.org/rfc/rfc3986.txt".freeze,
663
1049
  type: "rdfs:Datatype".freeze
664
1050
  term :W3CDTF,
665
- comment: %(The set of dates and times constructed according to the W3C Date and Time Formats Specification.).freeze,
1051
+ comment: "The set of dates and times constructed according to the W3C Date and Time Formats Specification.".freeze,
666
1052
  "dc:issued": "2000-07-11".freeze,
667
1053
  isDefinedBy: "dc:".freeze,
668
1054
  label: "W3C-DTF".freeze,
@@ -671,62 +1057,62 @@ module RDF::Vocab
671
1057
 
672
1058
  # Extra definitions
673
1059
  term :DCMIType,
674
- comment: %(The set of classes specified by the DCMI Type Vocabulary, used to categorize the nature or genre of the resource.).freeze,
1060
+ comment: "The set of classes specified by the DCMI Type Vocabulary, used to categorize the nature or genre of the resource.".freeze,
675
1061
  "dc:issued": "2000-07-11".freeze,
676
1062
  isDefinedBy: "dc:".freeze,
677
1063
  label: "DCMI Type Vocabulary".freeze,
678
1064
  "rdfs:seeAlso": "dcmitype:".freeze,
679
1065
  type: "http://purl.org/dc/dcam/VocabularyEncodingScheme".freeze
680
1066
  term :DDC,
681
- comment: %(The set of conceptual resources specified by the Dewey Decimal Classification.).freeze,
1067
+ comment: "The set of conceptual resources specified by the Dewey Decimal Classification.".freeze,
682
1068
  "dc:issued": "2000-07-11".freeze,
683
1069
  isDefinedBy: "dc:".freeze,
684
1070
  label: "DDC".freeze,
685
1071
  "rdfs:seeAlso": "http://www.oclc.org/dewey/".freeze,
686
1072
  type: "http://purl.org/dc/dcam/VocabularyEncodingScheme".freeze
687
1073
  term :IMT,
688
- comment: %(The set of media types specified by the Internet Assigned Numbers Authority.).freeze,
1074
+ comment: "The set of media types specified by the Internet Assigned Numbers Authority.".freeze,
689
1075
  "dc:issued": "2000-07-11".freeze,
690
1076
  isDefinedBy: "dc:".freeze,
691
1077
  label: "IMT".freeze,
692
1078
  "rdfs:seeAlso": "http://www.iana.org/assignments/media-types/".freeze,
693
1079
  type: "http://purl.org/dc/dcam/VocabularyEncodingScheme".freeze
694
1080
  term :LCC,
695
- comment: %(The set of conceptual resources specified by the Library of Congress Classification.).freeze,
1081
+ comment: "The set of conceptual resources specified by the Library of Congress Classification.".freeze,
696
1082
  "dc:issued": "2000-07-11".freeze,
697
1083
  isDefinedBy: "dc:".freeze,
698
1084
  label: "LCC".freeze,
699
1085
  "rdfs:seeAlso": "http://lcweb.loc.gov/catdir/cpso/lcco/lcco.html".freeze,
700
1086
  type: "http://purl.org/dc/dcam/VocabularyEncodingScheme".freeze
701
1087
  term :LCSH,
702
- comment: %(The set of labeled concepts specified by the Library of Congress Subject Headings.).freeze,
1088
+ comment: "The set of labeled concepts specified by the Library of Congress Subject Headings.".freeze,
703
1089
  "dc:issued": "2000-07-11".freeze,
704
1090
  isDefinedBy: "dc:".freeze,
705
1091
  label: "LCSH".freeze,
706
1092
  type: "http://purl.org/dc/dcam/VocabularyEncodingScheme".freeze
707
1093
  term :MESH,
708
- comment: %(The set of labeled concepts specified by the Medical Subject Headings.).freeze,
1094
+ comment: "The set of labeled concepts specified by the Medical Subject Headings.".freeze,
709
1095
  "dc:issued": "2000-07-11".freeze,
710
1096
  isDefinedBy: "dc:".freeze,
711
1097
  label: "MeSH".freeze,
712
1098
  "rdfs:seeAlso": "http://www.nlm.nih.gov/mesh/meshhome.html".freeze,
713
1099
  type: "http://purl.org/dc/dcam/VocabularyEncodingScheme".freeze
714
1100
  term :NLM,
715
- comment: %(The set of conceptual resources specified by the National Library of Medicine Classification.).freeze,
1101
+ comment: "The set of conceptual resources specified by the National Library of Medicine Classification.".freeze,
716
1102
  "dc:issued": "2005-06-13".freeze,
717
1103
  isDefinedBy: "dc:".freeze,
718
1104
  label: "NLM".freeze,
719
1105
  "rdfs:seeAlso": "http://wwwcf.nlm.nih.gov/class/".freeze,
720
1106
  type: "http://purl.org/dc/dcam/VocabularyEncodingScheme".freeze
721
1107
  term :TGN,
722
- comment: %(The set of places specified by the Getty Thesaurus of Geographic Names.).freeze,
1108
+ comment: "The set of places specified by the Getty Thesaurus of Geographic Names.".freeze,
723
1109
  "dc:issued": "2000-07-11".freeze,
724
1110
  isDefinedBy: "dc:".freeze,
725
1111
  label: "TGN".freeze,
726
1112
  "rdfs:seeAlso": "http://www.getty.edu/research/tools/vocabulary/tgn/index.html".freeze,
727
1113
  type: "http://purl.org/dc/dcam/VocabularyEncodingScheme".freeze
728
1114
  term :UDC,
729
- comment: %(The set of conceptual resources specified by the Universal Decimal Classification.).freeze,
1115
+ comment: "The set of conceptual resources specified by the Universal Decimal Classification.".freeze,
730
1116
  "dc:issued": "2000-07-11".freeze,
731
1117
  isDefinedBy: "dc:".freeze,
732
1118
  label: "UDC".freeze,