rdf-vocab 3.1.5 → 3.1.6
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/VERSION +1 -1
- data/lib/rdf/vocab.rb +35 -14
- data/lib/rdf/vocab/bf2.rb +78 -78
- data/lib/rdf/vocab/cert.rb +1 -1
- data/lib/rdf/vocab/dc.rb +386 -0
- data/lib/rdf/vocab/dcat.rb +1 -1
- data/lib/rdf/vocab/dcmitype.rb +50 -0
- data/lib/rdf/vocab/earl.rb +1 -1
- data/lib/rdf/vocab/ebucore.rb +271 -271
- data/lib/rdf/vocab/extensions.rb +7 -3
- data/lib/rdf/vocab/geonames.rb +2 -2
- data/lib/rdf/vocab/gs1.rb +2 -2
- data/lib/rdf/vocab/ht.rb +1 -1
- data/lib/rdf/vocab/ical.rb +61 -61
- data/lib/rdf/vocab/jsonld.rb +13 -3
- data/lib/rdf/vocab/ldp.rb +3 -3
- data/lib/rdf/vocab/lrmi.rb +68 -0
- data/lib/rdf/vocab/mads.rb +9 -9
- data/lib/rdf/vocab/og.rb +22 -0
- data/lib/rdf/vocab/premis.rb +206 -206
- data/lib/rdf/vocab/prov.rb +13 -13
- data/lib/rdf/vocab/rsa.rb +1 -1
- data/lib/rdf/vocab/rss.rb +41 -0
- data/lib/rdf/vocab/schema.rb +1649 -759
- data/lib/rdf/vocab/sh.rb +1 -1
- data/lib/rdf/vocab/skos.rb +2 -2
- data/lib/rdf/vocab/xkos.rb +4 -4
- metadata +2 -2
data/lib/rdf/vocab/cert.rb
CHANGED
@@ -10,8 +10,8 @@ module RDF::Vocab
|
|
10
10
|
# #
|
11
11
|
# # Ontology for Certificates and crypto stuff. This is in development. Some other ontologies to look at: * http://www.w3.org/2000/10/swap/crypto + has cwm builtins: http://www.w3.org/2000/10/swap/doc/Trust - a bit old perhaps. It imports daml+oil - would help to be more completely specified - uses literals as subjects a little liberally, which makes this a bit difficult to work with frameworks that don't permit this * http://xmlns.com/wot/0.1/ - limited very much to PGP (though on can map PGP to X509) - a little coarse grained, mixes up the PGP certificate with the PGP public key * Todo: - add some classes and relations for DSA - should this all be in one file? Or should this be cut up a little? Say one file for the general CERT ontology, and then files for RSA, DSA, PGP, etc... Or perhaps it does not really matter? - expand more on the certification side of things - verify this by security experts - owl2 has some constructs for combined inverse functional properties. This may be useful to use in defining an RSA key which is identified by two numbers. - also create html version of the spec by using this as a template. - should comments such as this be in html?
|
12
12
|
# # @see http://lists.foaf-project.org/mailman/listinfo/foaf-protocols
|
13
|
-
# # @see http://www.w3.org/ns/auth/rsa
|
14
13
|
# # @see http://www.w3.org/ns/auth/X509Uml.svg
|
14
|
+
# # @see http://www.w3.org/ns/auth/rsa
|
15
15
|
# class CERT < RDF::StrictVocabulary
|
16
16
|
# # A certificate is a Document that is signed. As explained here http://www.pgpi.org/doc/pgpintro/#p16 'A digital certificate consists of three things: * A public key. * Certificate information. ('Identity' information about the user, such as name, user ID, and so on.) * One or more digital signatures.'
|
17
17
|
# # @return [RDF::Vocabulary::Term]
|
data/lib/rdf/vocab/dc.rb
CHANGED
@@ -5,7 +5,393 @@ 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
396
|
DC = Class.new(RDF::StrictVocabulary("http://purl.org/dc/terms/")) do
|
11
397
|
|
data/lib/rdf/vocab/dcat.rb
CHANGED
@@ -189,7 +189,7 @@ module RDF::Vocab
|
|
189
189
|
"foaf:name": "Jakub Klímek".freeze,
|
190
190
|
"rdfs:seeAlso": "https://jakub.klímek.com/#me".freeze
|
191
191
|
), term(
|
192
|
-
"foaf:homepage": ["http://www.imati.cnr.it/index.php/people/8-curricula/178-riccardo-albertoni".freeze
|
192
|
+
"foaf:homepage": ["https://w3id.org/people/ralbertoni/".freeze,"http://www.imati.cnr.it/index.php/people/8-curricula/178-riccardo-albertoni".freeze],
|
193
193
|
"foaf:name": "Riccardo Albertoni".freeze,
|
194
194
|
"rdfs:seeAlso": "https://orcid.org/0000-0001-5648-2713".freeze
|
195
195
|
), term(
|
data/lib/rdf/vocab/dcmitype.rb
CHANGED
@@ -5,7 +5,57 @@ require 'rdf'
|
|
5
5
|
module RDF::Vocab
|
6
6
|
# @!parse
|
7
7
|
# # Vocabulary for <http://purl.org/dc/dcmitype/>
|
8
|
+
# #
|
9
|
+
# # DCMI Type Vocabulary
|
8
10
|
# class DCMIType < RDF::StrictVocabulary
|
11
|
+
# # An aggregation of resources.
|
12
|
+
# # @return [RDF::Vocabulary::Term]
|
13
|
+
# attr_reader :Collection
|
14
|
+
#
|
15
|
+
# # Data encoded in a defined structure.
|
16
|
+
# # @return [RDF::Vocabulary::Term]
|
17
|
+
# attr_reader :Dataset
|
18
|
+
#
|
19
|
+
# # A non-persistent, time-based occurrence.
|
20
|
+
# # @return [RDF::Vocabulary::Term]
|
21
|
+
# attr_reader :Event
|
22
|
+
#
|
23
|
+
# # A visual representation other than text.
|
24
|
+
# # @return [RDF::Vocabulary::Term]
|
25
|
+
# attr_reader :Image
|
26
|
+
#
|
27
|
+
# # A resource requiring interaction from the user to be understood, executed, or experienced.
|
28
|
+
# # @return [RDF::Vocabulary::Term]
|
29
|
+
# attr_reader :InteractiveResource
|
30
|
+
#
|
31
|
+
# # A series of visual representations imparting an impression of motion when shown in succession.
|
32
|
+
# # @return [RDF::Vocabulary::Term]
|
33
|
+
# attr_reader :MovingImage
|
34
|
+
#
|
35
|
+
# # An inanimate, three-dimensional object or substance.
|
36
|
+
# # @return [RDF::Vocabulary::Term]
|
37
|
+
# attr_reader :PhysicalObject
|
38
|
+
#
|
39
|
+
# # A system that provides one or more functions.
|
40
|
+
# # @return [RDF::Vocabulary::Term]
|
41
|
+
# attr_reader :Service
|
42
|
+
#
|
43
|
+
# # A computer program in source or compiled form.
|
44
|
+
# # @return [RDF::Vocabulary::Term]
|
45
|
+
# attr_reader :Software
|
46
|
+
#
|
47
|
+
# # A resource primarily intended to be heard.
|
48
|
+
# # @return [RDF::Vocabulary::Term]
|
49
|
+
# attr_reader :Sound
|
50
|
+
#
|
51
|
+
# # A static visual representation.
|
52
|
+
# # @return [RDF::Vocabulary::Term]
|
53
|
+
# attr_reader :StillImage
|
54
|
+
#
|
55
|
+
# # A resource consisting primarily of words for reading.
|
56
|
+
# # @return [RDF::Vocabulary::Term]
|
57
|
+
# attr_reader :Text
|
58
|
+
#
|
9
59
|
# end
|
10
60
|
DCMIType = Class.new(RDF::StrictVocabulary("http://purl.org/dc/dcmitype/")) do
|
11
61
|
|