rdf-vocab 2.2.9 → 3.0.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +5 -5
- data/VERSION +1 -1
- data/lib/rdf/vocab.rb +21 -2
- data/lib/rdf/vocab/acl.rb +21 -5
- data/lib/rdf/vocab/bf2.rb +812 -812
- data/lib/rdf/vocab/bibframe.rb +78 -78
- data/lib/rdf/vocab/bibo.rb +239 -247
- data/lib/rdf/vocab/cc.rb +4 -9
- data/lib/rdf/vocab/cert.rb +44 -45
- data/lib/rdf/vocab/cnt.rb +5 -5
- data/lib/rdf/vocab/crm.rb +344 -344
- data/lib/rdf/vocab/datacite.rb +152 -58
- data/lib/rdf/vocab/dc.rb +439 -439
- data/lib/rdf/vocab/dc11.rb +93 -93
- data/lib/rdf/vocab/dcat.rb +152 -101
- data/lib/rdf/vocab/dcmitype.rb +75 -75
- data/lib/rdf/vocab/disco.rb +169 -101
- data/lib/rdf/vocab/doap.rb +179 -159
- data/lib/rdf/vocab/dwc.rb +1648 -1648
- data/lib/rdf/vocab/ebucore.rb +373 -124
- data/lib/rdf/vocab/edm.rb +216 -139
- data/lib/rdf/vocab/exif.rb +208 -208
- data/lib/rdf/vocab/fcrepo4.rb +57 -134
- data/lib/rdf/vocab/foaf.rb +166 -166
- data/lib/rdf/vocab/geo.rb +3 -5
- data/lib/rdf/vocab/geojson.rb +16 -16
- data/lib/rdf/vocab/geonames.rb +2827 -3455
- data/lib/rdf/vocab/gr.rb +699 -254
- data/lib/rdf/vocab/gs1.rb +1765 -1761
- data/lib/rdf/vocab/ht.rb +23 -23
- data/lib/rdf/vocab/hydra.rb +104 -104
- data/lib/rdf/vocab/ical.rb +674 -127
- data/lib/rdf/vocab/identifiers.rb +120 -212
- data/lib/rdf/vocab/iiif.rb +25 -37
- data/lib/rdf/vocab/jsonld.rb +11 -11
- data/lib/rdf/vocab/ldp.rb +79 -69
- data/lib/rdf/vocab/lrmi.rb +63 -63
- data/lib/rdf/vocab/ma.rb +47 -132
- data/lib/rdf/vocab/mads.rb +83 -28
- data/lib/rdf/vocab/marc_relators.rb +12 -2201
- data/lib/rdf/vocab/mo.rb +920 -836
- data/lib/rdf/vocab/mods.rb +6 -13
- data/lib/rdf/vocab/oa.rb +82 -72
- data/lib/rdf/vocab/og.rb +50 -50
- data/lib/rdf/vocab/ogc.rb +9 -8
- data/lib/rdf/vocab/ore.rb +22 -19
- data/lib/rdf/vocab/org.rb +217 -167
- data/lib/rdf/vocab/pplan.rb +45 -45
- data/lib/rdf/vocab/premis.rb +855 -582
- data/lib/rdf/vocab/premis_event_type.rb +148 -70
- data/lib/rdf/vocab/prov.rb +842 -806
- data/lib/rdf/vocab/rightsstatements.rb +140 -157
- data/lib/rdf/vocab/rsa.rb +16 -13
- data/lib/rdf/vocab/rss.rb +10 -10
- data/lib/rdf/vocab/schema.rb +1448 -1448
- data/lib/rdf/vocab/sioc.rb +158 -159
- data/lib/rdf/vocab/sioc_services.rb +14 -14
- data/lib/rdf/vocab/sioct.rb +70 -70
- data/lib/rdf/vocab/skos.rb +97 -93
- data/lib/rdf/vocab/skosxl.rb +29 -24
- data/lib/rdf/vocab/v.rb +88 -90
- data/lib/rdf/vocab/vcard.rb +340 -196
- data/lib/rdf/vocab/vmd.rb +88 -90
- data/lib/rdf/vocab/vs.rb +15 -15
- data/lib/rdf/vocab/wdrs.rb +30 -30
- data/lib/rdf/vocab/wot.rb +47 -47
- data/lib/rdf/vocab/xhtml.rb +3 -3
- data/lib/rdf/vocab/xhv.rb +37 -123
- data/lib/rdf/vocab/xkos.rb +110 -107
- data/spec/vocab_spec.rb +6 -6
- metadata +19 -31
data/lib/rdf/vocab/datacite.rb
CHANGED
@@ -12,35 +12,43 @@ module RDF::Vocab
|
|
12
12
|
# Ontology definition
|
13
13
|
ontology :"http://purl.org/spar/datacite/",
|
14
14
|
comment: %(This ontology is available at http://purl.org/spar/datacite/, and uses the namespace prefix datacite.).freeze,
|
15
|
-
|
16
|
-
|
17
|
-
|
18
|
-
|
19
|
-
|
20
|
-
|
21
|
-
:"
|
22
|
-
:"
|
23
|
-
|
24
|
-
:"owl:priorVersion" => %(http://svn.code.sf.net/p/sempublishing/code/DataCite/2014-05-21-datacite-0_6_4_1.owl).freeze,
|
25
|
-
:"owl:versionInfo" => %(1.0).freeze,
|
15
|
+
"dc11:contributor": ["Amy J. Barton".freeze, "Egbert Gramsbergen".freeze, "Jan Ashton".freeze, "Marie-Christine Jacquemot".freeze],
|
16
|
+
"dc11:creator": ["David Shotton".freeze, "Silvio Peroni".freeze],
|
17
|
+
"dc11:date": "2016-01-21".freeze,
|
18
|
+
"dc11:description": ["The DataCite Ontology is an ontology written in OWL 2 DL to enable the metadata properties of the [DataCite Metadata Kernel Specification version 3.1](https://www.datacite.org/sites/default/files/document/DataCite-MetadataSchema_V31_Final_8-24-2015_0.pdf) to be described in RDF. \n\nThis version of the DataCite Ontology has been completely revised and significantly expanded to permit accurate mapping of this new version of the DataCite Metadata Kernel Specification to RDF.".freeze, "https://svn.code.sf.net/p/sempublishing/code/DataCite/datacite.png".freeze],
|
19
|
+
"dc11:rights": "This work is distributed under a Creative Commons Attribution License (http://creativecommons.org/licenses/by/4.0/).".freeze,
|
20
|
+
"dc11:title": "The DataCite Ontology".freeze,
|
21
|
+
"owl:imports": ["http://purl.org/co".freeze, "http://www.essepuntato.it/2010/06/literalreification".freeze],
|
22
|
+
"owl:priorVersion": "http://svn.code.sf.net/p/sempublishing/code/DataCite/2014-05-21-datacite-0_6_4_1.owl".freeze,
|
23
|
+
"owl:versionInfo": "1.0".freeze,
|
26
24
|
type: "owl:Ontology".freeze
|
27
25
|
|
28
26
|
# Class definitions
|
29
27
|
term :AgentIdentifier,
|
30
28
|
comment: %(An identifier that uniquely identities an individual agent, belonging to a particular identifier scheme specified by an individual within the class datacite:AgentIdentifierScheme \(or any of its subclasses\).).freeze,
|
31
29
|
label: "agent identifier".freeze,
|
32
|
-
|
33
|
-
subClassOf: "datacite:Identifier".freeze,
|
30
|
+
"owl:disjointWith": "datacite:ResourceIdentifier".freeze,
|
31
|
+
subClassOf: ["datacite:Identifier".freeze, term(
|
32
|
+
onProperty: "datacite:usesIdentifierScheme".freeze,
|
33
|
+
allValuesFrom: "datacite:AgentIdentifier".freeze,
|
34
|
+
type: "owl:Restriction".freeze
|
35
|
+
)],
|
34
36
|
type: "owl:Class".freeze
|
35
37
|
term :AgentIndetifierScheme,
|
36
38
|
comment: %(The identifier scheme used to identify an agent. Individual schemes are defines as members of its sub-classes.).freeze,
|
37
39
|
label: "agent identifier scheme".freeze,
|
38
|
-
subClassOf: "datacite:IdentifierScheme".freeze,
|
40
|
+
subClassOf: ["datacite:IdentifierScheme".freeze, term(
|
41
|
+
onProperty: term(
|
42
|
+
inverseOf: "datacite:usesIdentifierScheme".freeze
|
43
|
+
),
|
44
|
+
someValuesFrom: "datacite:AgentIdentifier".freeze,
|
45
|
+
type: "owl:Restriction".freeze
|
46
|
+
)],
|
39
47
|
type: "owl:Class".freeze
|
40
48
|
term :AlternateResourceIdentifier,
|
41
49
|
comment: %(An identifier other than a DOI that is used as an alternative identifier to uniquely identifies the primary resource that is the subject of the DataCite metadata record, belonging to a particular scheme such as ISBN specified by an individual that is a member of the class datacite:ResourceIdentifierScheme. ).freeze,
|
42
50
|
label: "alternate resource identifier".freeze,
|
43
|
-
|
51
|
+
"owl:disjointWith": "datacite:PrimaryResourceIdentifier".freeze,
|
44
52
|
subClassOf: "datacite:ResourceIdentifier".freeze,
|
45
53
|
type: "owl:Class".freeze
|
46
54
|
term :DescriptionType,
|
@@ -57,17 +65,38 @@ This version of the DataCite Ontology has been completely revised and significan
|
|
57
65
|
term :FunderIdentifier,
|
58
66
|
comment: %(An identifier that uniquely identities a funding agency, belonging to a particular scheme such as FundRef specified by an individual within the class datacite:FunderIdentifierScheme.).freeze,
|
59
67
|
label: "funder identifier".freeze,
|
60
|
-
subClassOf: "datacite:AgentIdentifier".freeze,
|
68
|
+
subClassOf: ["datacite:AgentIdentifier".freeze, term(
|
69
|
+
onProperty: "datacite:usesIdentifierScheme".freeze,
|
70
|
+
allValuesFrom: "datacite:FunderIdentifierScheme".freeze,
|
71
|
+
type: "owl:Restriction".freeze
|
72
|
+
)],
|
61
73
|
type: "owl:Class".freeze
|
62
74
|
term :FunderIdentifierScheme,
|
63
75
|
comment: %(The identifier scheme used to identify a funding agency. Individual schemes are defines as members of this class. At present, the only individual of this class is datacite:fundref.).freeze,
|
64
76
|
label: "funder identifier scheme".freeze,
|
65
|
-
subClassOf: "datacite:AgentIndetifierScheme".freeze,
|
77
|
+
subClassOf: ["datacite:AgentIndetifierScheme".freeze, term(
|
78
|
+
onProperty: term(
|
79
|
+
inverseOf: "datacite:usesIdentifierScheme".freeze
|
80
|
+
),
|
81
|
+
someValuesFrom: "datacite:FunderIdentifier".freeze,
|
82
|
+
type: "owl:Restriction".freeze
|
83
|
+
)],
|
66
84
|
type: "owl:Class".freeze
|
67
85
|
term :Identifier,
|
68
86
|
comment: %(An identifier that uniquely identities an entity – such as a funding agency, a person and a resource – belonging to a particular scheme such as those specified by individuals of the class datacite:IdentifierScheme.).freeze,
|
69
87
|
label: "identifier".freeze,
|
70
|
-
subClassOf: "http://www.essepuntato.it/2010/06/literalreification/Literal".freeze,
|
88
|
+
subClassOf: ["http://www.essepuntato.it/2010/06/literalreification/Literal".freeze, term(
|
89
|
+
"owl:onClass": "datacite:IdentifierScheme".freeze,
|
90
|
+
onProperty: "datacite:usesIdentifierScheme".freeze,
|
91
|
+
"owl:qualifiedCardinality": "1".freeze,
|
92
|
+
type: "owl:Restriction".freeze
|
93
|
+
), term(
|
94
|
+
onProperty: term(
|
95
|
+
inverseOf: "datacite:hasIdentifier".freeze
|
96
|
+
),
|
97
|
+
cardinality: "1".freeze,
|
98
|
+
type: "owl:Restriction".freeze
|
99
|
+
)],
|
71
100
|
type: "owl:Class".freeze
|
72
101
|
term :IdentifierScheme,
|
73
102
|
comment: %(The identifier scheme used to identify an entity such as a funding agency, a person or a resource. Individual schemes are defines as members of this class.).freeze,
|
@@ -85,56 +114,116 @@ Neither a class for metadata documents nor a property linking a resource to its
|
|
85
114
|
|
86
115
|
In addition, if needed, it is possible to use the dataproperty fabio:hasURL \(not included in this ontology as well\) for defining the actual URL of a certain metadata scheme.).freeze,
|
87
116
|
label: "metadata scheme".freeze,
|
88
|
-
|
117
|
+
"rdfs:seeAlso": ["http://purl.org/spar/cito/citesAsMetadataDocument".freeze, "http://purl.org/spar/fabio/MetadataDocument".freeze],
|
89
118
|
type: "owl:Class".freeze
|
90
119
|
term :OrganizationIdentifier,
|
91
120
|
comment: %(An identifier that uniquely identities an individual organization, belonging to a particular identifier scheme such as ISNI specified by an individual within the class datacite:OrganizationIdentifierScheme.).freeze,
|
92
121
|
label: "organization identifier".freeze,
|
93
|
-
subClassOf: "datacite:AgentIdentifier".freeze,
|
122
|
+
subClassOf: ["datacite:AgentIdentifier".freeze, term(
|
123
|
+
onProperty: "datacite:usesIdentifierScheme".freeze,
|
124
|
+
allValuesFrom: "datacite:OrganizationIdentifier".freeze,
|
125
|
+
type: "owl:Restriction".freeze
|
126
|
+
)],
|
94
127
|
type: "owl:Class".freeze
|
95
128
|
term :OrganizationIdentifierScheme,
|
96
129
|
comment: %(The identifier scheme used to identify an organization. Individual schemes are defines as members of this class.).freeze,
|
97
130
|
label: "organization identifier scheme".freeze,
|
98
|
-
subClassOf: "datacite:AgentIndetifierScheme".freeze,
|
131
|
+
subClassOf: ["datacite:AgentIndetifierScheme".freeze, term(
|
132
|
+
onProperty: term(
|
133
|
+
inverseOf: "datacite:usesIdentifierScheme".freeze
|
134
|
+
),
|
135
|
+
someValuesFrom: "datacite:OrganizationIdentifier".freeze,
|
136
|
+
type: "owl:Restriction".freeze
|
137
|
+
)],
|
99
138
|
type: "owl:Class".freeze
|
100
139
|
term :PersonalIdentifier,
|
101
140
|
comment: %(An identifier that uniquely identities an individual person, belonging to a particular identifier scheme such as ORCID specified by an individual within the class datacite:PersonalIdentifierScheme.).freeze,
|
102
141
|
label: "personal identifier".freeze,
|
103
|
-
subClassOf: "datacite:AgentIdentifier".freeze,
|
142
|
+
subClassOf: ["datacite:AgentIdentifier".freeze, term(
|
143
|
+
onProperty: "datacite:usesIdentifierScheme".freeze,
|
144
|
+
type: "owl:Restriction".freeze,
|
145
|
+
allValuesFrom: "datacite:PersonalIdentifierScheme".freeze
|
146
|
+
)],
|
104
147
|
type: "owl:Class".freeze
|
105
148
|
term :PersonalIdentifierScheme,
|
106
149
|
comment: %(The identifier scheme used to identify a person. Individual schemes are defines as members of this class.).freeze,
|
107
150
|
label: "personal identifier scheme".freeze,
|
108
|
-
subClassOf: "datacite:AgentIndetifierScheme".freeze,
|
151
|
+
subClassOf: ["datacite:AgentIndetifierScheme".freeze, term(
|
152
|
+
onProperty: term(
|
153
|
+
inverseOf: "datacite:usesIdentifierScheme".freeze
|
154
|
+
),
|
155
|
+
someValuesFrom: "datacite:PersonalIdentifier".freeze,
|
156
|
+
type: "owl:Restriction".freeze
|
157
|
+
)],
|
109
158
|
type: "owl:Class".freeze
|
110
159
|
term :PrimaryResourceIdentifier,
|
111
160
|
comment: %(An identifier that is used as the primary identifier to uniquely identifies the primary resource that is the subject of the DataCite metadata record. Within the DataCite metadata record, a Digital Object Identifier is the only permitted primary resource identifier scheme, specified by the individual datacite:doi, that is a member of the class datacite:ResourceIdentifierScheme.).freeze,
|
112
161
|
label: "primary resource identifier".freeze,
|
113
|
-
subClassOf: "datacite:ResourceIdentifier".freeze,
|
162
|
+
subClassOf: ["datacite:ResourceIdentifier".freeze, term(
|
163
|
+
onProperty: "datacite:usesIdentifierScheme".freeze,
|
164
|
+
"owl:hasValue": "datacite:doi".freeze,
|
165
|
+
type: "owl:Restriction".freeze
|
166
|
+
)],
|
114
167
|
type: "owl:Class".freeze
|
115
168
|
term :ResourceIdentifier,
|
116
169
|
comment: %(An identifier that is used to uniquely identifies a resource.).freeze,
|
117
170
|
label: "resource identifier".freeze,
|
118
|
-
subClassOf: "datacite:Identifier".freeze,
|
171
|
+
subClassOf: ["datacite:Identifier".freeze, term(
|
172
|
+
onProperty: "datacite:usesIdentifierScheme".freeze,
|
173
|
+
type: "owl:Restriction".freeze,
|
174
|
+
allValuesFrom: "datacite:ResourceIdentifierScheme".freeze
|
175
|
+
)],
|
119
176
|
type: "owl:Class".freeze
|
120
177
|
term :ResourceIdentifierScheme,
|
121
178
|
comment: %(The identifier scheme used to identify a resource. Individual schemes are defines as members of this class. For DataCite, the only permitted identifier scheme for the primary resource identifier is the Digital Object Identifier.).freeze,
|
122
179
|
label: "resource identifier scheme".freeze,
|
123
|
-
subClassOf: "datacite:IdentifierScheme".freeze,
|
180
|
+
subClassOf: ["datacite:IdentifierScheme".freeze, term(
|
181
|
+
onProperty: term(
|
182
|
+
inverseOf: "datacite:usesIdentifierScheme".freeze
|
183
|
+
),
|
184
|
+
someValuesFrom: "datacite:ResourceIdentifier".freeze,
|
185
|
+
type: "owl:Restriction".freeze
|
186
|
+
)],
|
124
187
|
type: "owl:Class".freeze
|
125
188
|
|
126
189
|
# Property definitions
|
127
190
|
property :hasCreatorList,
|
128
191
|
comment: %(This property allows one to specify the list of the creators of a certain resource.).freeze,
|
192
|
+
domain: term(
|
193
|
+
onProperty: "datacite:hasIdentifier".freeze,
|
194
|
+
someValuesFrom: "datacite:ResourceIdentifier".freeze,
|
195
|
+
type: "owl:Restriction".freeze
|
196
|
+
),
|
129
197
|
label: "has creator list".freeze,
|
130
198
|
range: "http://purl.org/co/List".freeze,
|
131
199
|
type: "owl:ObjectProperty".freeze
|
132
200
|
property :hasDescription,
|
133
201
|
comment: %(An object property permitting specification of an entity used to describe a resource.).freeze,
|
202
|
+
domain: term(
|
203
|
+
onProperty: "datacite:hasIdentifier".freeze,
|
204
|
+
someValuesFrom: "datacite:ResourceIdentifier".freeze,
|
205
|
+
type: "owl:Restriction".freeze
|
206
|
+
),
|
134
207
|
label: "has description".freeze,
|
208
|
+
range: term(
|
209
|
+
onProperty: "datacite:hasDescriptionType".freeze,
|
210
|
+
cardinality: "1".freeze,
|
211
|
+
type: "owl:Restriction".freeze
|
212
|
+
),
|
135
213
|
type: "owl:ObjectProperty".freeze
|
136
214
|
property :hasDescriptionType,
|
137
215
|
comment: %(An object property permitting specification of the type of description used to describe a resource, defined as an individual of the class datacite:DescriptionType from the DataCite controlled list of Abstract, SeriesInformation, TableOfContent and Other.).freeze,
|
216
|
+
domain: term(
|
217
|
+
onProperty: term(
|
218
|
+
inverseOf: "datacite:hasDescription".freeze
|
219
|
+
),
|
220
|
+
type: "owl:Restriction".freeze,
|
221
|
+
allValuesFrom: term(
|
222
|
+
onProperty: "datacite:hasIdentifier".freeze,
|
223
|
+
someValuesFrom: "datacite:ResourceIdentifier".freeze,
|
224
|
+
type: "owl:Restriction".freeze
|
225
|
+
)
|
226
|
+
),
|
138
227
|
label: "has description type".freeze,
|
139
228
|
range: "datacite:DescriptionType".freeze,
|
140
229
|
subPropertyOf: "dc:type".freeze,
|
@@ -158,6 +247,11 @@ In addition, if needed, it is possible to use the dataproperty fabio:hasURL \(no
|
|
158
247
|
* frbr:Endeavour.
|
159
248
|
|
160
249
|
All the prefixes used here refer to external ontologies, i.e., DC Metadata Terms \(dcmitype: http://purl.org/dc/dcmitype/\), FaBiO \(fabio: http://purl.org/spar/fabio/\), and FRBR \(frbr: http://purl.org/vocab/frbr/core#\).).freeze,
|
250
|
+
domain: term(
|
251
|
+
onProperty: "datacite:hasIdentifier".freeze,
|
252
|
+
someValuesFrom: "datacite:ResourceIdentifier".freeze,
|
253
|
+
type: "owl:Restriction".freeze
|
254
|
+
),
|
161
255
|
label: "has general resource type".freeze,
|
162
256
|
range: "skos:Concept".freeze,
|
163
257
|
subPropertyOf: "dc:type".freeze,
|
@@ -183,16 +277,16 @@ All the prefixes used here refer to external ontologies, i.e., DC Metadata Terms
|
|
183
277
|
term :abstract,
|
184
278
|
comment: %(A brief summary of a textual work, appearing at the beginning of the work and designed to act as the point-of-entry that will help the reader quickly to obtain an overview of the work's contents.).freeze,
|
185
279
|
label: "abstract".freeze,
|
186
|
-
|
280
|
+
"rdfs:seeAlso": "http://purl.org/spar/fabio/Abstract".freeze,
|
187
281
|
type: ["datacite:DescriptionType".freeze, "owl:NamedIndividual".freeze]
|
188
282
|
term :ark,
|
189
283
|
comment: %(Archival Resource Key.).freeze,
|
190
|
-
|
284
|
+
"http://purl.org/spar/fabio/hasURL": "https://confluence.ucop.edu/display/Curation/ARK".freeze,
|
191
285
|
label: "ark".freeze,
|
192
286
|
type: ["datacite:ResourceIdentifierScheme".freeze, "owl:NamedIndividual".freeze]
|
193
287
|
term :arxiv,
|
194
288
|
comment: %(Identifier for ArXiv \(http://arxiv.org/\), a open access repository of preprints, having the format arXiv:1207.2147.).freeze,
|
195
|
-
|
289
|
+
"http://purl.org/spar/fabio/hasURL": "http://arxiv.org/".freeze,
|
196
290
|
label: "arxiv".freeze,
|
197
291
|
type: ["datacite:ResourceIdentifierScheme".freeze, "owl:NamedIndividual".freeze]
|
198
292
|
term :bibcode,
|
@@ -201,58 +295,58 @@ All the prefixes used here refer to external ontologies, i.e., DC Metadata Terms
|
|
201
295
|
type: ["datacite:ResourceIdentifierScheme".freeze, "owl:NamedIndividual".freeze]
|
202
296
|
term :dia,
|
203
297
|
comment: %(The Digital Author Identification system assigns a unique number to all authors in the Netherlands research system.).freeze,
|
204
|
-
|
298
|
+
"http://purl.org/spar/fabio/hasURL": "http://www.surf.nl/en/themas/openonderzoek/infrastructuur/Pages/digitalauthoridentifierdai.aspx".freeze,
|
205
299
|
label: "dia".freeze,
|
206
300
|
type: ["datacite:PersonalIdentifierScheme".freeze, "owl:NamedIndividual".freeze]
|
207
301
|
term :doi,
|
208
302
|
comment: %(Digital Object Identier.).freeze,
|
209
|
-
|
303
|
+
"http://purl.org/spar/fabio/hasURL": "http://www.doi.org/".freeze,
|
210
304
|
label: "doi".freeze,
|
211
305
|
type: ["datacite:ResourceIdentifierScheme".freeze, "owl:NamedIndividual".freeze]
|
212
306
|
term :ean13,
|
213
307
|
comment: %(International Article Number).freeze,
|
214
|
-
|
308
|
+
"http://purl.org/spar/fabio/hasURL": "http://www.gs1.org/".freeze,
|
215
309
|
label: "ean13".freeze,
|
216
|
-
|
310
|
+
"rdfs:seeAlso": "http://en.wikipedia.org/wiki/EAN13".freeze,
|
217
311
|
type: ["datacite:ResourceIdentifierScheme".freeze, "owl:NamedIndividual".freeze]
|
218
312
|
term :eissn,
|
219
313
|
comment: %(Electronic International Standard Serial Number).freeze,
|
220
|
-
|
314
|
+
"http://purl.org/spar/fabio/hasURL": "http://www.issn.org/".freeze,
|
221
315
|
label: "eissn".freeze,
|
222
316
|
type: ["datacite:ResourceIdentifierScheme".freeze, "owl:NamedIndividual".freeze]
|
223
317
|
term :fundref,
|
224
318
|
comment: %(FundRef is a collaborative pilot project of scholarly publishers and funding agencies, facilitated by CrossRef, to provide a standard way of identifying and reporting funding sources for published scholarly research. ).freeze,
|
225
|
-
|
319
|
+
"http://purl.org/spar/fabio/hasURL": "http://www.crossref.org/fundref/index.html".freeze,
|
226
320
|
label: "fundref".freeze,
|
227
321
|
type: ["datacite:FunderIdentifierScheme".freeze, "owl:NamedIndividual".freeze]
|
228
322
|
term :handle,
|
229
323
|
comment: %(The Handle system).freeze,
|
230
|
-
|
324
|
+
"http://purl.org/spar/fabio/hasURL": "http://www.handle.net/".freeze,
|
231
325
|
label: "handle".freeze,
|
232
326
|
type: ["datacite:ResourceIdentifierScheme".freeze, "owl:NamedIndividual".freeze]
|
233
327
|
term :infouri,
|
234
328
|
comment: %(Info URI scheme).freeze,
|
235
|
-
|
329
|
+
"http://purl.org/spar/fabio/hasURL": "http://info-uri.info/registry/docs/misc/faq.html".freeze,
|
236
330
|
label: "infouri".freeze,
|
237
331
|
type: ["datacite:ResourceIdentifierScheme".freeze, "owl:NamedIndividual".freeze]
|
238
332
|
term :isbn,
|
239
333
|
comment: %(International Standard Book Number).freeze,
|
240
|
-
|
334
|
+
"http://purl.org/spar/fabio/hasURL": "http://www.isbn-international.org/".freeze,
|
241
335
|
label: "isbn".freeze,
|
242
336
|
type: ["datacite:ResourceIdentifierScheme".freeze, "owl:NamedIndividual".freeze]
|
243
337
|
term :isni,
|
244
338
|
comment: %(International Standard Name Identifier scheme.).freeze,
|
245
|
-
|
339
|
+
"http://purl.org/spar/fabio/hasURL": "http://www.isni.org/".freeze,
|
246
340
|
label: "isni".freeze,
|
247
341
|
type: ["datacite:OrganizationIdentifierScheme".freeze, "datacite:PersonalIdentifierScheme".freeze, "owl:NamedIndividual".freeze]
|
248
342
|
term :issn,
|
249
343
|
comment: %(International Standard Serial Number).freeze,
|
250
|
-
|
344
|
+
"http://purl.org/spar/fabio/hasURL": "http://www.issn.org/".freeze,
|
251
345
|
label: "issn".freeze,
|
252
346
|
type: ["datacite:ResourceIdentifierScheme".freeze, "owl:NamedIndividual".freeze]
|
253
347
|
term :istc,
|
254
348
|
comment: %(International Standard Text Code).freeze,
|
255
|
-
|
349
|
+
"http://purl.org/spar/fabio/hasURL": "http://www.istc-international.org/html/".freeze,
|
256
350
|
label: "istc".freeze,
|
257
351
|
type: ["datacite:ResourceIdentifierScheme".freeze, "owl:NamedIndividual".freeze]
|
258
352
|
term :jst,
|
@@ -261,7 +355,7 @@ All the prefixes used here refer to external ontologies, i.e., DC Metadata Terms
|
|
261
355
|
type: ["datacite:PersonalIdentifierScheme".freeze, "owl:NamedIndividual".freeze]
|
262
356
|
term :lissn,
|
263
357
|
comment: %(Linking International Standard Serial Number).freeze,
|
264
|
-
|
358
|
+
"http://purl.org/spar/fabio/hasURL": "http://www.issn.org/".freeze,
|
265
359
|
label: "lissn".freeze,
|
266
360
|
type: ["datacite:ResourceIdentifierScheme".freeze, "owl:NamedIndividual".freeze]
|
267
361
|
term :"local-funder-identifier-scheme",
|
@@ -282,7 +376,7 @@ All the prefixes used here refer to external ontologies, i.e., DC Metadata Terms
|
|
282
376
|
type: ["datacite:ResourceIdentifierScheme".freeze, "owl:NamedIndividual".freeze]
|
283
377
|
term :lsid,
|
284
378
|
comment: %(Life Science Identifier).freeze,
|
285
|
-
|
379
|
+
"http://purl.org/spar/fabio/hasURL": "http://www.ibm.com/developerworks/opensource/library/os-lsidbp/".freeze,
|
286
380
|
label: "lsid".freeze,
|
287
381
|
type: ["datacite:ResourceIdentifierScheme".freeze, "owl:NamedIndividual".freeze]
|
288
382
|
term :methods,
|
@@ -295,7 +389,7 @@ All the prefixes used here refer to external ontologies, i.e., DC Metadata Terms
|
|
295
389
|
type: ["datacite:PersonalIdentifierScheme".freeze, "owl:NamedIndividual".freeze]
|
296
390
|
term :nihmsid,
|
297
391
|
comment: %(NIH Manuscript Submission Identifier).freeze,
|
298
|
-
|
392
|
+
"http://purl.org/spar/fabio/hasURL": "http://nexus.od.nih.gov/all/2009/09/01/nih-public-access-update-clarifying-use-of-the-nih-manuscript-submission-id-nihmsid/".freeze,
|
299
393
|
label: "nihmsid".freeze,
|
300
394
|
type: ["datacite:ResourceIdentifierScheme".freeze, "owl:NamedIndividual".freeze]
|
301
395
|
term :nii,
|
@@ -304,12 +398,12 @@ All the prefixes used here refer to external ontologies, i.e., DC Metadata Terms
|
|
304
398
|
type: ["datacite:PersonalIdentifierScheme".freeze, "owl:NamedIndividual".freeze]
|
305
399
|
term :openid,
|
306
400
|
comment: %(OpenID is an open standard that describes how users can be authenticated in a decentralized manner, eliminating the need for centralized registration services. ).freeze,
|
307
|
-
|
401
|
+
"http://purl.org/spar/fabio/hasURL": "http://openid.net/foundation/".freeze,
|
308
402
|
label: "openid".freeze,
|
309
403
|
type: ["datacite:PersonalIdentifierScheme".freeze, "owl:NamedIndividual".freeze]
|
310
404
|
term :orcid,
|
311
405
|
comment: %(Open Researcher and Contributor Identifier.).freeze,
|
312
|
-
|
406
|
+
"http://purl.org/spar/fabio/hasURL": "http://orcid.org/".freeze,
|
313
407
|
label: "orcid".freeze,
|
314
408
|
type: ["datacite:PersonalIdentifierScheme".freeze, "owl:NamedIndividual".freeze]
|
315
409
|
term :other,
|
@@ -319,36 +413,36 @@ All the prefixes used here refer to external ontologies, i.e., DC Metadata Terms
|
|
319
413
|
term :pii,
|
320
414
|
comment: %(Pulisher Item Identifier scheme.).freeze,
|
321
415
|
label: "pii".freeze,
|
322
|
-
|
416
|
+
"rdfs:seeAlso": "http://en.wikipedia.org/wiki/Publisher_Item_Identifier".freeze,
|
323
417
|
type: ["datacite:ResourceIdentifierScheme".freeze, "owl:NamedIndividual".freeze]
|
324
418
|
term :pmcid,
|
325
419
|
comment: %(PubMed Central Identifier).freeze,
|
326
|
-
|
420
|
+
"http://purl.org/spar/fabio/hasURL": "http://www.ncbi.nlm.nih.gov/pmc/".freeze,
|
327
421
|
label: "pmcid".freeze,
|
328
422
|
type: ["datacite:ResourceIdentifierScheme".freeze, "owl:NamedIndividual".freeze]
|
329
423
|
term :pmid,
|
330
424
|
comment: %(PubMed Identifier).freeze,
|
331
|
-
|
425
|
+
"http://purl.org/spar/fabio/hasURL": "http://www.ncbi.nlm.nih.gov/pubmed/".freeze,
|
332
426
|
label: "pmid".freeze,
|
333
427
|
type: ["datacite:ResourceIdentifierScheme".freeze, "owl:NamedIndividual".freeze]
|
334
428
|
term :purl,
|
335
429
|
comment: %(Persistent Uniform Resource Locator).freeze,
|
336
|
-
|
430
|
+
"http://purl.org/spar/fabio/hasURL": "http://purl.org/".freeze,
|
337
431
|
label: "purl".freeze,
|
338
432
|
type: ["datacite:ResourceIdentifierScheme".freeze, "owl:NamedIndividual".freeze]
|
339
433
|
term :researcherid,
|
340
434
|
comment: %(ResearcherID is an identifying system for scientific authors created and owned by Thomson Reuters.).freeze,
|
341
|
-
|
435
|
+
"http://purl.org/spar/fabio/hasURL": "http://www.researcherid.com/".freeze,
|
342
436
|
label: "researcherid".freeze,
|
343
437
|
type: ["datacite:PersonalIdentifierScheme".freeze, "owl:NamedIndividual".freeze]
|
344
438
|
term :"series-information",
|
345
439
|
comment: %(Used to charactierize a description of a resource that is part of a series.).freeze,
|
346
440
|
label: "series information".freeze,
|
347
|
-
|
441
|
+
"rdfs:seeAlso": ["http://purl.org/spar/fabio/BookSeries".freeze, "http://purl.org/spar/fabio/Periodical".freeze],
|
348
442
|
type: ["datacite:DescriptionType".freeze, "owl:NamedIndividual".freeze]
|
349
443
|
term :sici,
|
350
444
|
comment: %(Serial Item and Contribution Identifier).freeze,
|
351
|
-
|
445
|
+
"http://purl.org/spar/fabio/hasURL": "http://en.wikipedia.org/wiki/Serial_Item_and_Contribution_Identifier".freeze,
|
352
446
|
label: "sici".freeze,
|
353
447
|
type: ["datacite:ResourceIdentifierScheme".freeze, "owl:NamedIndividual".freeze]
|
354
448
|
term :"social-security-number",
|
@@ -357,13 +451,13 @@ All the prefixes used here refer to external ontologies, i.e., DC Metadata Terms
|
|
357
451
|
type: ["datacite:PersonalIdentifierScheme".freeze, "owl:NamedIndividual".freeze]
|
358
452
|
term :spar,
|
359
453
|
comment: %(The Semantic Publishing and Referencing Ontologies, a.k.a. SPAR Ontologies, form a suite of orthogonal and complementary OWL 2 DL ontology modules for the creation of comprehensive machine-readable RDF metadata for every aspect of semantic publishing and referencing: document description, bibliographic resource identifiers, types of citations and related contexts, bibliographic references, document parts and status, agents' roles and contributions, bibliometric data and workflow processes.).freeze,
|
360
|
-
|
454
|
+
"http://purl.org/spar/fabio/hasURL": "http://www.sparontologies.net".freeze,
|
361
455
|
label: "SPAR Ontologies".freeze,
|
362
456
|
type: ["datacite:MetadataScheme".freeze, "owl:NamedIndividual".freeze]
|
363
457
|
term :"table-of-content",
|
364
458
|
comment: %(A table of content giving information about the content of a resource, appearing before the body text. Where the resource is a journal or magazine issue, the table of content lists the constituent items contained in that issue, typically by title, authors and first page number.).freeze,
|
365
459
|
label: "table of content".freeze,
|
366
|
-
|
460
|
+
"rdfs:seeAlso": "http://purl.org/spar/doco/TableOfContents".freeze,
|
367
461
|
type: ["datacite:DescriptionType".freeze, "owl:NamedIndividual".freeze]
|
368
462
|
term :upc,
|
369
463
|
comment: %(Universal Product Code).freeze,
|
@@ -371,7 +465,7 @@ All the prefixes used here refer to external ontologies, i.e., DC Metadata Terms
|
|
371
465
|
type: ["datacite:ResourceIdentifierScheme".freeze, "owl:NamedIndividual".freeze]
|
372
466
|
term :uri,
|
373
467
|
comment: %(Uniform Resource Identifier).freeze,
|
374
|
-
|
468
|
+
"http://purl.org/spar/fabio/hasURL": "http://tools.ietf.org/html/rfc3986".freeze,
|
375
469
|
label: "uri".freeze,
|
376
470
|
type: ["datacite:ResourceIdentifierScheme".freeze, "owl:NamedIndividual".freeze]
|
377
471
|
term :url,
|
@@ -380,12 +474,12 @@ All the prefixes used here refer to external ontologies, i.e., DC Metadata Terms
|
|
380
474
|
type: ["datacite:ResourceIdentifierScheme".freeze, "owl:NamedIndividual".freeze]
|
381
475
|
term :urn,
|
382
476
|
comment: %(Uniform Resource Name.).freeze,
|
383
|
-
|
477
|
+
"http://purl.org/spar/fabio/hasURL": "http://datatracker.ietf.org/wg/urn/charter/".freeze,
|
384
478
|
label: "urn".freeze,
|
385
479
|
type: ["datacite:ResourceIdentifierScheme".freeze, "owl:NamedIndividual".freeze]
|
386
480
|
term :viaf,
|
387
481
|
comment: %(The Virtual International Authority File is an international authority file created by amalagamating the national authority files of several national libraries and operated by the Online Computer Library Center \(OCLC\). It contains information about many topics including personal names.).freeze,
|
388
|
-
|
482
|
+
"http://purl.org/spar/fabio/hasURL": "http://viaf.org/".freeze,
|
389
483
|
label: "viaf".freeze,
|
390
484
|
type: ["datacite:PersonalIdentifierScheme".freeze, "owl:NamedIndividual".freeze]
|
391
485
|
end
|
data/lib/rdf/vocab/dc.rb
CHANGED
@@ -11,943 +11,943 @@ module RDF::Vocab
|
|
11
11
|
|
12
12
|
# Ontology definition
|
13
13
|
ontology :"http://purl.org/dc/terms/",
|
14
|
-
|
15
|
-
|
16
|
-
|
14
|
+
"dc:modified": "2012-06-14".freeze,
|
15
|
+
"dc:publisher": "http://purl.org/dc/aboutdcmi#DCMI".freeze,
|
16
|
+
"dc:title": "DCMI Metadata Terms - other".freeze
|
17
17
|
|
18
18
|
# Class definitions
|
19
19
|
term :Agent,
|
20
20
|
comment: %(A resource that acts or has the power to act.).freeze,
|
21
|
-
|
22
|
-
|
23
|
-
|
21
|
+
"dc:description": "Examples of Agent include person, organization, and software agent.".freeze,
|
22
|
+
"dc:hasVersion": "http://dublincore.org/usage/terms/history/#Agent-001".freeze,
|
23
|
+
"dc:issued": "2008-01-14".freeze,
|
24
|
+
isDefinedBy: "dc:".freeze,
|
24
25
|
label: "Agent".freeze,
|
25
|
-
:"rdfs:isDefinedBy" => %(dc:).freeze,
|
26
26
|
type: ["dc:AgentClass".freeze, "rdfs:Class".freeze]
|
27
27
|
term :AgentClass,
|
28
28
|
comment: %(A group of agents.).freeze,
|
29
|
-
|
30
|
-
|
31
|
-
|
32
|
-
|
29
|
+
"dc:description": "Examples of Agent Class include groups seen as classes, such as students, women, charities, lecturers.".freeze,
|
30
|
+
"dc:hasVersion": "http://dublincore.org/usage/terms/history/#AgentClass-003".freeze,
|
31
|
+
"dc:issued": "2008-01-14".freeze,
|
32
|
+
"dc:modified": "2012-06-14".freeze,
|
33
|
+
isDefinedBy: "dc:".freeze,
|
33
34
|
label: "Agent Class".freeze,
|
34
|
-
:"rdfs:isDefinedBy" => %(dc:).freeze,
|
35
35
|
subClassOf: "rdfs:Class".freeze,
|
36
36
|
type: "rdfs:Class".freeze
|
37
37
|
term :BibliographicResource,
|
38
38
|
comment: %(A book, article, or other documentary resource.).freeze,
|
39
|
-
|
40
|
-
|
39
|
+
"dc:hasVersion": "http://dublincore.org/usage/terms/history/#BibliographicResource-001".freeze,
|
40
|
+
"dc:issued": "2008-01-14".freeze,
|
41
|
+
isDefinedBy: "dc:".freeze,
|
41
42
|
label: "Bibliographic Resource".freeze,
|
42
|
-
:"rdfs:isDefinedBy" => %(dc:).freeze,
|
43
43
|
type: "rdfs:Class".freeze
|
44
44
|
term :FileFormat,
|
45
45
|
comment: %(A digital resource format.).freeze,
|
46
|
-
|
47
|
-
|
48
|
-
|
46
|
+
"dc:description": "Examples include the formats defined by the list of Internet Media Types.".freeze,
|
47
|
+
"dc:hasVersion": "http://dublincore.org/usage/terms/history/#FileFormat-001".freeze,
|
48
|
+
"dc:issued": "2008-01-14".freeze,
|
49
|
+
isDefinedBy: "dc:".freeze,
|
49
50
|
label: "File Format".freeze,
|
50
|
-
:"rdfs:isDefinedBy" => %(dc:).freeze,
|
51
51
|
subClassOf: "dc:MediaType".freeze,
|
52
52
|
type: "rdfs:Class".freeze
|
53
53
|
term :Frequency,
|
54
54
|
comment: %(A rate at which something recurs.).freeze,
|
55
|
-
|
56
|
-
|
55
|
+
"dc:hasVersion": "http://dublincore.org/usage/terms/history/#Frequency-001".freeze,
|
56
|
+
"dc:issued": "2008-01-14".freeze,
|
57
|
+
isDefinedBy: "dc:".freeze,
|
57
58
|
label: "Frequency".freeze,
|
58
|
-
:"rdfs:isDefinedBy" => %(dc:).freeze,
|
59
59
|
type: "rdfs:Class".freeze
|
60
60
|
term :Jurisdiction,
|
61
61
|
comment: %(The extent or range of judicial, law enforcement, or other authority.).freeze,
|
62
|
-
|
63
|
-
|
62
|
+
"dc:hasVersion": "http://dublincore.org/usage/terms/history/#Jurisdiction-001".freeze,
|
63
|
+
"dc:issued": "2008-01-14".freeze,
|
64
|
+
isDefinedBy: "dc:".freeze,
|
64
65
|
label: "Jurisdiction".freeze,
|
65
|
-
:"rdfs:isDefinedBy" => %(dc:).freeze,
|
66
66
|
subClassOf: "dc:LocationPeriodOrJurisdiction".freeze,
|
67
67
|
type: "rdfs:Class".freeze
|
68
68
|
term :LicenseDocument,
|
69
69
|
comment: %(A legal document giving official permission to do something with a Resource.).freeze,
|
70
|
-
|
71
|
-
|
70
|
+
"dc:hasVersion": "http://dublincore.org/usage/terms/history/#LicenseDocument-001".freeze,
|
71
|
+
"dc:issued": "2008-01-14".freeze,
|
72
|
+
isDefinedBy: "dc:".freeze,
|
72
73
|
label: "License Document".freeze,
|
73
|
-
:"rdfs:isDefinedBy" => %(dc:).freeze,
|
74
74
|
subClassOf: "dc:RightsStatement".freeze,
|
75
75
|
type: "rdfs:Class".freeze
|
76
76
|
term :LinguisticSystem,
|
77
77
|
comment: %(A system of signs, symbols, sounds, gestures, or rules used in communication.).freeze,
|
78
|
-
|
79
|
-
|
80
|
-
|
78
|
+
"dc:description": "Examples include written, spoken, sign, and computer languages.".freeze,
|
79
|
+
"dc:hasVersion": "http://dublincore.org/usage/terms/history/#LinguisticSystem-001".freeze,
|
80
|
+
"dc:issued": "2008-01-14".freeze,
|
81
|
+
isDefinedBy: "dc:".freeze,
|
81
82
|
label: "Linguistic System".freeze,
|
82
|
-
:"rdfs:isDefinedBy" => %(dc:).freeze,
|
83
83
|
type: "rdfs:Class".freeze
|
84
84
|
term :Location,
|
85
85
|
comment: %(A spatial region or named place.).freeze,
|
86
|
-
|
87
|
-
|
86
|
+
"dc:hasVersion": "http://dublincore.org/usage/terms/history/#Location-001".freeze,
|
87
|
+
"dc:issued": "2008-01-14".freeze,
|
88
|
+
isDefinedBy: "dc:".freeze,
|
88
89
|
label: "Location".freeze,
|
89
|
-
:"rdfs:isDefinedBy" => %(dc:).freeze,
|
90
90
|
subClassOf: "dc:LocationPeriodOrJurisdiction".freeze,
|
91
91
|
type: "rdfs:Class".freeze
|
92
92
|
term :LocationPeriodOrJurisdiction,
|
93
93
|
comment: %(A location, period of time, or jurisdiction.).freeze,
|
94
|
-
|
95
|
-
|
94
|
+
"dc:hasVersion": "http://dublincore.org/usage/terms/history/#LocationPeriodOrJurisdiction-001".freeze,
|
95
|
+
"dc:issued": "2008-01-14".freeze,
|
96
|
+
isDefinedBy: "dc:".freeze,
|
96
97
|
label: "Location, Period, or Jurisdiction".freeze,
|
97
|
-
:"rdfs:isDefinedBy" => %(dc:).freeze,
|
98
98
|
type: "rdfs:Class".freeze
|
99
99
|
term :MediaType,
|
100
100
|
comment: %(A file format or physical medium.).freeze,
|
101
|
-
|
102
|
-
|
101
|
+
"dc:hasVersion": "http://dublincore.org/usage/terms/history/#MediaType-001".freeze,
|
102
|
+
"dc:issued": "2008-01-14".freeze,
|
103
|
+
isDefinedBy: "dc:".freeze,
|
103
104
|
label: "Media Type".freeze,
|
104
|
-
:"rdfs:isDefinedBy" => %(dc:).freeze,
|
105
105
|
subClassOf: "dc:MediaTypeOrExtent".freeze,
|
106
106
|
type: "rdfs:Class".freeze
|
107
107
|
term :MediaTypeOrExtent,
|
108
108
|
comment: %(A media type or extent.).freeze,
|
109
|
-
|
110
|
-
|
109
|
+
"dc:hasVersion": "http://dublincore.org/usage/terms/history/#MediaTypeOrExtent-001".freeze,
|
110
|
+
"dc:issued": "2008-01-14".freeze,
|
111
|
+
isDefinedBy: "dc:".freeze,
|
111
112
|
label: "Media Type or Extent".freeze,
|
112
|
-
:"rdfs:isDefinedBy" => %(dc:).freeze,
|
113
113
|
type: "rdfs:Class".freeze
|
114
114
|
term :MethodOfAccrual,
|
115
115
|
comment: %(A method by which resources are added to a collection.).freeze,
|
116
|
-
|
117
|
-
|
116
|
+
"dc:hasVersion": "http://dublincore.org/usage/terms/history/#MethodOfAccrual-001".freeze,
|
117
|
+
"dc:issued": "2008-01-14".freeze,
|
118
|
+
isDefinedBy: "dc:".freeze,
|
118
119
|
label: "Method of Accrual".freeze,
|
119
|
-
:"rdfs:isDefinedBy" => %(dc:).freeze,
|
120
120
|
type: "rdfs:Class".freeze
|
121
121
|
term :MethodOfInstruction,
|
122
122
|
comment: %(A process that is used to engender knowledge, attitudes, and skills.).freeze,
|
123
|
-
|
124
|
-
|
123
|
+
"dc:hasVersion": "http://dublincore.org/usage/terms/history/#MethodOfInstruction-001".freeze,
|
124
|
+
"dc:issued": "2008-01-14".freeze,
|
125
|
+
isDefinedBy: "dc:".freeze,
|
125
126
|
label: "Method of Instruction".freeze,
|
126
|
-
:"rdfs:isDefinedBy" => %(dc:).freeze,
|
127
127
|
type: "rdfs:Class".freeze
|
128
128
|
term :PeriodOfTime,
|
129
129
|
comment: %(An interval of time that is named or defined by its start and end dates.).freeze,
|
130
|
-
|
131
|
-
|
130
|
+
"dc:hasVersion": "http://dublincore.org/usage/terms/history/#PeriodOfTime-001".freeze,
|
131
|
+
"dc:issued": "2008-01-14".freeze,
|
132
|
+
isDefinedBy: "dc:".freeze,
|
132
133
|
label: "Period of Time".freeze,
|
133
|
-
:"rdfs:isDefinedBy" => %(dc:).freeze,
|
134
134
|
subClassOf: "dc:LocationPeriodOrJurisdiction".freeze,
|
135
135
|
type: "rdfs:Class".freeze
|
136
136
|
term :PhysicalMedium,
|
137
137
|
comment: %(A physical material or carrier.).freeze,
|
138
|
-
|
139
|
-
|
140
|
-
|
138
|
+
"dc:description": "Examples include paper, canvas, or DVD.".freeze,
|
139
|
+
"dc:hasVersion": "http://dublincore.org/usage/terms/history/#PhysicalMedium-001".freeze,
|
140
|
+
"dc:issued": "2008-01-14".freeze,
|
141
|
+
isDefinedBy: "dc:".freeze,
|
141
142
|
label: "Physical Medium".freeze,
|
142
|
-
:"rdfs:isDefinedBy" => %(dc:).freeze,
|
143
143
|
subClassOf: "dc:MediaType".freeze,
|
144
144
|
type: "rdfs:Class".freeze
|
145
145
|
term :PhysicalResource,
|
146
146
|
comment: %(A material thing.).freeze,
|
147
|
-
|
148
|
-
|
147
|
+
"dc:hasVersion": "http://dublincore.org/usage/terms/history/#PhysicalResource-001".freeze,
|
148
|
+
"dc:issued": "2008-01-14".freeze,
|
149
|
+
isDefinedBy: "dc:".freeze,
|
149
150
|
label: "Physical Resource".freeze,
|
150
|
-
:"rdfs:isDefinedBy" => %(dc:).freeze,
|
151
151
|
type: "rdfs:Class".freeze
|
152
152
|
term :Policy,
|
153
153
|
comment: %(A plan or course of action by an authority, intended to influence and determine decisions, actions, and other matters.).freeze,
|
154
|
-
|
155
|
-
|
154
|
+
"dc:hasVersion": "http://dublincore.org/usage/terms/history/#Policy-001".freeze,
|
155
|
+
"dc:issued": "2008-01-14".freeze,
|
156
|
+
isDefinedBy: "dc:".freeze,
|
156
157
|
label: "Policy".freeze,
|
157
|
-
:"rdfs:isDefinedBy" => %(dc:).freeze,
|
158
158
|
type: "rdfs:Class".freeze
|
159
159
|
term :ProvenanceStatement,
|
160
160
|
comment: %(A statement of any changes in ownership and custody of a resource since its creation that are significant for its authenticity, integrity, and interpretation.).freeze,
|
161
|
-
|
162
|
-
|
161
|
+
"dc:hasVersion": "http://dublincore.org/usage/terms/history/#ProvenanceStatement-001".freeze,
|
162
|
+
"dc:issued": "2008-01-14".freeze,
|
163
|
+
isDefinedBy: "dc:".freeze,
|
163
164
|
label: "Provenance Statement".freeze,
|
164
|
-
:"rdfs:isDefinedBy" => %(dc:).freeze,
|
165
165
|
type: "rdfs:Class".freeze
|
166
166
|
term :RightsStatement,
|
167
167
|
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,
|
168
|
-
|
169
|
-
|
168
|
+
"dc:hasVersion": "http://dublincore.org/usage/terms/history/#RightsStatement-001".freeze,
|
169
|
+
"dc:issued": "2008-01-14".freeze,
|
170
|
+
isDefinedBy: "dc:".freeze,
|
170
171
|
label: "Rights Statement".freeze,
|
171
|
-
:"rdfs:isDefinedBy" => %(dc:).freeze,
|
172
172
|
type: "rdfs:Class".freeze
|
173
173
|
term :SizeOrDuration,
|
174
174
|
comment: %(A dimension or extent, or a time taken to play or execute.).freeze,
|
175
|
-
|
176
|
-
|
177
|
-
|
175
|
+
"dc:description": "Examples include a number of pages, a specification of length, width, and breadth, or a period in hours, minutes, and seconds.".freeze,
|
176
|
+
"dc:hasVersion": "http://dublincore.org/usage/terms/history/#SizeOrDuration-001".freeze,
|
177
|
+
"dc:issued": "2008-01-14".freeze,
|
178
|
+
isDefinedBy: "dc:".freeze,
|
178
179
|
label: "Size or Duration".freeze,
|
179
|
-
:"rdfs:isDefinedBy" => %(dc:).freeze,
|
180
180
|
subClassOf: "dc:MediaTypeOrExtent".freeze,
|
181
181
|
type: "rdfs:Class".freeze
|
182
182
|
term :Standard,
|
183
183
|
comment: %(A basis for comparison; a reference point against which other things can be evaluated.).freeze,
|
184
|
-
|
185
|
-
|
184
|
+
"dc:hasVersion": "http://dublincore.org/usage/terms/history/#Standard-001".freeze,
|
185
|
+
"dc:issued": "2008-01-14".freeze,
|
186
|
+
isDefinedBy: "dc:".freeze,
|
186
187
|
label: "Standard".freeze,
|
187
|
-
:"rdfs:isDefinedBy" => %(dc:).freeze,
|
188
188
|
type: "rdfs:Class".freeze
|
189
189
|
|
190
190
|
# Property definitions
|
191
191
|
property :abstract,
|
192
192
|
comment: %(A summary of the resource.).freeze,
|
193
|
-
|
194
|
-
|
195
|
-
|
193
|
+
"dc:hasVersion": "http://dublincore.org/usage/terms/history/#abstract-003".freeze,
|
194
|
+
"dc:issued": "2000-07-11".freeze,
|
195
|
+
"dc:modified": "2008-01-14".freeze,
|
196
|
+
isDefinedBy: "dc:".freeze,
|
196
197
|
label: "Abstract".freeze,
|
197
|
-
:"rdfs:isDefinedBy" => %(dc:).freeze,
|
198
198
|
subPropertyOf: ["dc11:description".freeze, "dc:description".freeze],
|
199
199
|
type: "rdf:Property".freeze
|
200
200
|
property :accessRights,
|
201
201
|
comment: %(Information about who can access the resource or an indication of its security status.).freeze,
|
202
|
-
|
203
|
-
|
204
|
-
|
205
|
-
|
202
|
+
"dc:description": "Access Rights may include information regarding access or restrictions based on privacy, security, or other policies.".freeze,
|
203
|
+
"dc:hasVersion": "http://dublincore.org/usage/terms/history/#accessRights-002".freeze,
|
204
|
+
"dc:issued": "2003-02-15".freeze,
|
205
|
+
"dc:modified": "2008-01-14".freeze,
|
206
|
+
isDefinedBy: "dc:".freeze,
|
206
207
|
label: "Access Rights".freeze,
|
207
208
|
range: "dc:RightsStatement".freeze,
|
208
|
-
:"rdfs:isDefinedBy" => %(dc:).freeze,
|
209
209
|
subPropertyOf: ["dc11:rights".freeze, "dc:rights".freeze],
|
210
210
|
type: "rdf:Property".freeze
|
211
211
|
property :accrualMethod,
|
212
212
|
comment: %(The method by which items are added to a collection.).freeze,
|
213
|
-
|
214
|
-
|
215
|
-
|
213
|
+
"dc:hasVersion": "http://dublincore.org/usage/terms/history/#accrualMethod-003".freeze,
|
214
|
+
"dc:issued": "2005-06-13".freeze,
|
215
|
+
"dc:modified": "2010-10-11".freeze,
|
216
216
|
domain: "dcmitype:Collection".freeze,
|
217
|
+
isDefinedBy: "dc:".freeze,
|
217
218
|
label: "Accrual Method".freeze,
|
218
219
|
range: "dc:MethodOfAccrual".freeze,
|
219
|
-
:"rdfs:isDefinedBy" => %(dc:).freeze,
|
220
220
|
type: "rdf:Property".freeze
|
221
221
|
property :accrualPeriodicity,
|
222
222
|
comment: %(The frequency with which items are added to a collection.).freeze,
|
223
|
-
|
224
|
-
|
225
|
-
|
223
|
+
"dc:hasVersion": "http://dublincore.org/usage/terms/history/#accrualPeriodicity-003".freeze,
|
224
|
+
"dc:issued": "2005-06-13".freeze,
|
225
|
+
"dc:modified": "2010-10-11".freeze,
|
226
226
|
domain: "dcmitype:Collection".freeze,
|
227
|
+
isDefinedBy: "dc:".freeze,
|
227
228
|
label: "Accrual Periodicity".freeze,
|
228
229
|
range: "dc:Frequency".freeze,
|
229
|
-
:"rdfs:isDefinedBy" => %(dc:).freeze,
|
230
230
|
type: "rdf:Property".freeze
|
231
231
|
property :accrualPolicy,
|
232
232
|
comment: %(The policy governing the addition of items to a collection.).freeze,
|
233
|
-
|
234
|
-
|
235
|
-
|
233
|
+
"dc:hasVersion": "http://dublincore.org/usage/terms/history/#accrualPolicy-003".freeze,
|
234
|
+
"dc:issued": "2005-06-13".freeze,
|
235
|
+
"dc:modified": "2010-10-11".freeze,
|
236
236
|
domain: "dcmitype:Collection".freeze,
|
237
|
+
isDefinedBy: "dc:".freeze,
|
237
238
|
label: "Accrual Policy".freeze,
|
238
239
|
range: "dc:Policy".freeze,
|
239
|
-
:"rdfs:isDefinedBy" => %(dc:).freeze,
|
240
240
|
type: "rdf:Property".freeze
|
241
241
|
property :alternative,
|
242
242
|
comment: %(An alternative name for the resource.).freeze,
|
243
|
-
|
244
|
-
|
245
|
-
|
246
|
-
|
243
|
+
"dc:description": "The distinction between titles and alternative titles is application-specific.".freeze,
|
244
|
+
"dc:hasVersion": "http://dublincore.org/usage/terms/history/#alternative-003".freeze,
|
245
|
+
"dc:issued": "2000-07-11".freeze,
|
246
|
+
"dc:modified": "2010-10-11".freeze,
|
247
|
+
isDefinedBy: "dc:".freeze,
|
247
248
|
label: "Alternative Title".freeze,
|
248
249
|
range: "rdfs:Literal".freeze,
|
249
|
-
:"rdfs:isDefinedBy" => %(dc:).freeze,
|
250
250
|
subPropertyOf: ["dc11:title".freeze, "dc:title".freeze],
|
251
251
|
type: "rdf:Property".freeze
|
252
252
|
property :audience,
|
253
253
|
comment: %(A class of entity for whom the resource is intended or useful.).freeze,
|
254
|
-
|
255
|
-
|
256
|
-
|
254
|
+
"dc:hasVersion": "http://dublincore.org/usage/terms/history/#audience-003".freeze,
|
255
|
+
"dc:issued": "2001-05-21".freeze,
|
256
|
+
"dc:modified": "2008-01-14".freeze,
|
257
|
+
isDefinedBy: "dc:".freeze,
|
257
258
|
label: "Audience".freeze,
|
258
259
|
range: "dc:AgentClass".freeze,
|
259
|
-
:"rdfs:isDefinedBy" => %(dc:).freeze,
|
260
260
|
type: "rdf:Property".freeze
|
261
261
|
property :available,
|
262
262
|
comment: %(Date \(often a range\) that the resource became or will become available.).freeze,
|
263
|
-
|
264
|
-
|
265
|
-
|
263
|
+
"dc:hasVersion": "http://dublincore.org/usage/terms/history/#available-003".freeze,
|
264
|
+
"dc:issued": "2000-07-11".freeze,
|
265
|
+
"dc:modified": "2008-01-14".freeze,
|
266
|
+
isDefinedBy: "dc:".freeze,
|
266
267
|
label: "Date Available".freeze,
|
267
268
|
range: "rdfs:Literal".freeze,
|
268
|
-
:"rdfs:isDefinedBy" => %(dc:).freeze,
|
269
269
|
subPropertyOf: ["dc11:date".freeze, "dc:date".freeze],
|
270
270
|
type: "rdf:Property".freeze
|
271
271
|
property :bibliographicCitation,
|
272
272
|
comment: %(A bibliographic reference for the resource.).freeze,
|
273
|
-
|
274
|
-
|
275
|
-
|
276
|
-
|
273
|
+
"dc:description": "Recommended practice is to include sufficient bibliographic detail to identify the resource as unambiguously as possible.".freeze,
|
274
|
+
"dc:hasVersion": "http://dublincore.org/usage/terms/history/#bibliographicCitation-002".freeze,
|
275
|
+
"dc:issued": "2003-02-15".freeze,
|
276
|
+
"dc:modified": "2008-01-14".freeze,
|
277
277
|
domain: "dc:BibliographicResource".freeze,
|
278
|
+
isDefinedBy: "dc:".freeze,
|
278
279
|
label: "Bibliographic Citation".freeze,
|
279
280
|
range: "rdfs:Literal".freeze,
|
280
|
-
:"rdfs:isDefinedBy" => %(dc:).freeze,
|
281
281
|
subPropertyOf: ["dc11:identifier".freeze, "dc:identifier".freeze],
|
282
282
|
type: "rdf:Property".freeze
|
283
283
|
property :conformsTo,
|
284
284
|
comment: %(An established standard to which the described resource conforms.).freeze,
|
285
|
-
|
286
|
-
|
287
|
-
|
285
|
+
"dc:hasVersion": "http://dublincore.org/usage/terms/history/#conformsTo-003".freeze,
|
286
|
+
"dc:issued": "2001-05-21".freeze,
|
287
|
+
"dc:modified": "2008-01-14".freeze,
|
288
|
+
isDefinedBy: "dc:".freeze,
|
288
289
|
label: "Conforms To".freeze,
|
289
290
|
range: "dc:Standard".freeze,
|
290
|
-
:"rdfs:isDefinedBy" => %(dc:).freeze,
|
291
291
|
subPropertyOf: ["dc11:relation".freeze, "dc:relation".freeze],
|
292
292
|
type: "rdf:Property".freeze
|
293
293
|
property :contributor,
|
294
294
|
comment: %(An entity responsible for making contributions to the resource.).freeze,
|
295
|
-
|
296
|
-
|
297
|
-
|
298
|
-
|
295
|
+
"dc:description": "Examples of a Contributor include a person, an organization, or a service.".freeze,
|
296
|
+
"dc:hasVersion": "http://dublincore.org/usage/terms/history/#contributorT-001".freeze,
|
297
|
+
"dc:issued": "2008-01-14".freeze,
|
298
|
+
"dc:modified": "2010-10-11".freeze,
|
299
|
+
isDefinedBy: "dc:".freeze,
|
299
300
|
label: "Contributor".freeze,
|
300
301
|
range: "dc:Agent".freeze,
|
301
|
-
:"rdfs:isDefinedBy" => %(dc:).freeze,
|
302
302
|
subPropertyOf: "dc11:contributor".freeze,
|
303
303
|
type: "rdf:Property".freeze
|
304
304
|
property :coverage,
|
305
305
|
comment: %(The spatial or temporal topic of the resource, the spatial applicability of the resource, or the jurisdiction under which the resource is relevant.).freeze,
|
306
|
-
|
307
|
-
|
308
|
-
|
309
|
-
|
306
|
+
"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 best practice is to use a controlled vocabulary such as the Thesaurus of Geographic Names [TGN]. Where appropriate, named places or time periods can be used in preference to numeric identifiers such as sets of coordinates or date ranges.".freeze,
|
307
|
+
"dc:hasVersion": "http://dublincore.org/usage/terms/history/#coverageT-001".freeze,
|
308
|
+
"dc:issued": "2008-01-14".freeze,
|
309
|
+
"dc:modified": "2008-01-14".freeze,
|
310
|
+
isDefinedBy: "dc:".freeze,
|
310
311
|
label: "Coverage".freeze,
|
311
312
|
range: "dc:LocationPeriodOrJurisdiction".freeze,
|
312
|
-
:"rdfs:isDefinedBy" => %(dc:).freeze,
|
313
313
|
subPropertyOf: "dc11:coverage".freeze,
|
314
314
|
type: "rdf:Property".freeze
|
315
315
|
property :created,
|
316
316
|
comment: %(Date of creation of the resource.).freeze,
|
317
|
-
|
318
|
-
|
319
|
-
|
317
|
+
"dc:hasVersion": "http://dublincore.org/usage/terms/history/#created-003".freeze,
|
318
|
+
"dc:issued": "2000-07-11".freeze,
|
319
|
+
"dc:modified": "2008-01-14".freeze,
|
320
|
+
isDefinedBy: "dc:".freeze,
|
320
321
|
label: "Date Created".freeze,
|
321
322
|
range: "rdfs:Literal".freeze,
|
322
|
-
:"rdfs:isDefinedBy" => %(dc:).freeze,
|
323
323
|
subPropertyOf: ["dc11:date".freeze, "dc:date".freeze],
|
324
324
|
type: "rdf:Property".freeze
|
325
325
|
property :creator,
|
326
326
|
comment: %(An entity primarily responsible for making the resource.).freeze,
|
327
|
-
|
328
|
-
|
329
|
-
|
330
|
-
|
327
|
+
"dc:description": "Examples of a Creator include a person, an organization, or a service.".freeze,
|
328
|
+
"dc:hasVersion": "http://dublincore.org/usage/terms/history/#creatorT-002".freeze,
|
329
|
+
"dc:issued": "2008-01-14".freeze,
|
330
|
+
"dc:modified": "2010-10-11".freeze,
|
331
|
+
equivalentProperty: "foaf:maker".freeze,
|
332
|
+
isDefinedBy: "dc:".freeze,
|
331
333
|
label: "Creator".freeze,
|
332
|
-
:"owl:equivalentProperty" => %(foaf:maker).freeze,
|
333
334
|
range: "dc:Agent".freeze,
|
334
|
-
:"rdfs:isDefinedBy" => %(dc:).freeze,
|
335
335
|
subPropertyOf: ["dc11:creator".freeze, "dc:contributor".freeze],
|
336
336
|
type: "rdf:Property".freeze
|
337
337
|
property :date,
|
338
338
|
comment: %(A point or period of time associated with an event in the lifecycle of the resource.).freeze,
|
339
|
-
|
340
|
-
|
341
|
-
|
342
|
-
|
339
|
+
"dc:description": "Date may be used to express temporal information at any level of granularity. Recommended best practice is to use an encoding scheme, such as the W3CDTF profile of ISO 8601 [W3CDTF].".freeze,
|
340
|
+
"dc:hasVersion": "http://dublincore.org/usage/terms/history/#dateT-001".freeze,
|
341
|
+
"dc:issued": "2008-01-14".freeze,
|
342
|
+
"dc:modified": "2008-01-14".freeze,
|
343
|
+
isDefinedBy: "dc:".freeze,
|
343
344
|
label: "Date".freeze,
|
344
345
|
range: "rdfs:Literal".freeze,
|
345
|
-
:"rdfs:isDefinedBy" => %(dc:).freeze,
|
346
346
|
subPropertyOf: "dc11:date".freeze,
|
347
347
|
type: "rdf:Property".freeze
|
348
348
|
property :dateAccepted,
|
349
349
|
comment: %(Date of acceptance of the resource.).freeze,
|
350
|
-
|
351
|
-
|
352
|
-
|
353
|
-
|
350
|
+
"dc:description": "Examples of resources to which a Date Accepted may be relevant are a thesis (accepted by a university department) or an article (accepted by a journal).".freeze,
|
351
|
+
"dc:hasVersion": "http://dublincore.org/usage/terms/history/#dateAccepted-002".freeze,
|
352
|
+
"dc:issued": "2002-07-13".freeze,
|
353
|
+
"dc:modified": "2008-01-14".freeze,
|
354
|
+
isDefinedBy: "dc:".freeze,
|
354
355
|
label: "Date Accepted".freeze,
|
355
356
|
range: "rdfs:Literal".freeze,
|
356
|
-
:"rdfs:isDefinedBy" => %(dc:).freeze,
|
357
357
|
subPropertyOf: ["dc11:date".freeze, "dc:date".freeze],
|
358
358
|
type: "rdf:Property".freeze
|
359
359
|
property :dateCopyrighted,
|
360
360
|
comment: %(Date of copyright.).freeze,
|
361
|
-
|
362
|
-
|
363
|
-
|
361
|
+
"dc:hasVersion": "http://dublincore.org/usage/terms/history/#dateCopyrighted-002".freeze,
|
362
|
+
"dc:issued": "2002-07-13".freeze,
|
363
|
+
"dc:modified": "2008-01-14".freeze,
|
364
|
+
isDefinedBy: "dc:".freeze,
|
364
365
|
label: "Date Copyrighted".freeze,
|
365
366
|
range: "rdfs:Literal".freeze,
|
366
|
-
:"rdfs:isDefinedBy" => %(dc:).freeze,
|
367
367
|
subPropertyOf: ["dc11:date".freeze, "dc:date".freeze],
|
368
368
|
type: "rdf:Property".freeze
|
369
369
|
property :dateSubmitted,
|
370
370
|
comment: %(Date of submission of the resource.).freeze,
|
371
|
-
|
372
|
-
|
373
|
-
|
374
|
-
|
371
|
+
"dc:description": "Examples of resources to which a Date Submitted may be relevant are a thesis (submitted to a university department) or an article (submitted to a journal).".freeze,
|
372
|
+
"dc:hasVersion": "http://dublincore.org/usage/terms/history/#dateSubmitted-002".freeze,
|
373
|
+
"dc:issued": "2002-07-13".freeze,
|
374
|
+
"dc:modified": "2008-01-14".freeze,
|
375
|
+
isDefinedBy: "dc:".freeze,
|
375
376
|
label: "Date Submitted".freeze,
|
376
377
|
range: "rdfs:Literal".freeze,
|
377
|
-
:"rdfs:isDefinedBy" => %(dc:).freeze,
|
378
378
|
subPropertyOf: ["dc11:date".freeze, "dc:date".freeze],
|
379
379
|
type: "rdf:Property".freeze
|
380
380
|
property :description,
|
381
381
|
comment: %(An account of the resource.).freeze,
|
382
|
-
|
383
|
-
|
384
|
-
|
385
|
-
|
382
|
+
"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,
|
383
|
+
"dc:hasVersion": "http://dublincore.org/usage/terms/history/#descriptionT-001".freeze,
|
384
|
+
"dc:issued": "2008-01-14".freeze,
|
385
|
+
"dc:modified": "2008-01-14".freeze,
|
386
|
+
isDefinedBy: "dc:".freeze,
|
386
387
|
label: "Description".freeze,
|
387
|
-
:"rdfs:isDefinedBy" => %(dc:).freeze,
|
388
388
|
subPropertyOf: "dc11:description".freeze,
|
389
389
|
type: "rdf:Property".freeze
|
390
390
|
property :educationLevel,
|
391
391
|
comment: %(A class of entity, defined in terms of progression through an educational or training context, for which the described resource is intended.).freeze,
|
392
|
-
|
393
|
-
|
394
|
-
|
392
|
+
"dc:hasVersion": "http://dublincore.org/usage/terms/history/#educationLevel-002".freeze,
|
393
|
+
"dc:issued": "2002-07-13".freeze,
|
394
|
+
"dc:modified": "2008-01-14".freeze,
|
395
|
+
isDefinedBy: "dc:".freeze,
|
395
396
|
label: "Audience Education Level".freeze,
|
396
397
|
range: "dc:AgentClass".freeze,
|
397
|
-
:"rdfs:isDefinedBy" => %(dc:).freeze,
|
398
398
|
subPropertyOf: "dc:audience".freeze,
|
399
399
|
type: "rdf:Property".freeze
|
400
400
|
property :extent,
|
401
401
|
comment: %(The size or duration of the resource.).freeze,
|
402
|
-
|
403
|
-
|
404
|
-
|
402
|
+
"dc:hasVersion": "http://dublincore.org/usage/terms/history/#extent-003".freeze,
|
403
|
+
"dc:issued": "2000-07-11".freeze,
|
404
|
+
"dc:modified": "2008-01-14".freeze,
|
405
|
+
isDefinedBy: "dc:".freeze,
|
405
406
|
label: "Extent".freeze,
|
406
407
|
range: "dc:SizeOrDuration".freeze,
|
407
|
-
:"rdfs:isDefinedBy" => %(dc:).freeze,
|
408
408
|
subPropertyOf: ["dc11:format".freeze, "dc:format".freeze],
|
409
409
|
type: "rdf:Property".freeze
|
410
410
|
property :format,
|
411
411
|
comment: %(The file format, physical medium, or dimensions of the resource.).freeze,
|
412
|
-
|
413
|
-
|
414
|
-
|
415
|
-
|
412
|
+
"dc:description": "Examples of dimensions include size and duration. Recommended best practice is to use a controlled vocabulary such as the list of Internet Media Types [MIME].".freeze,
|
413
|
+
"dc:hasVersion": "http://dublincore.org/usage/terms/history/#formatT-001".freeze,
|
414
|
+
"dc:issued": "2008-01-14".freeze,
|
415
|
+
"dc:modified": "2008-01-14".freeze,
|
416
|
+
isDefinedBy: "dc:".freeze,
|
416
417
|
label: "Format".freeze,
|
417
418
|
range: "dc:MediaTypeOrExtent".freeze,
|
418
|
-
:"rdfs:isDefinedBy" => %(dc:).freeze,
|
419
419
|
subPropertyOf: "dc11:format".freeze,
|
420
420
|
type: "rdf:Property".freeze
|
421
421
|
property :hasFormat,
|
422
422
|
comment: %(A related resource that is substantially the same as the pre-existing described resource, but in another format.).freeze,
|
423
|
-
|
424
|
-
|
425
|
-
|
423
|
+
"dc:hasVersion": "http://dublincore.org/usage/terms/history/#hasFormat-003".freeze,
|
424
|
+
"dc:issued": "2000-07-11".freeze,
|
425
|
+
"dc:modified": "2008-01-14".freeze,
|
426
|
+
isDefinedBy: "dc:".freeze,
|
426
427
|
label: "Has Format".freeze,
|
427
|
-
:
|
428
|
-
:"skos:note" => %(This term is intended to be used with non-literal values as defined in the DCMI Abstract Model \(http://dublincore.org/documents/abstract-model/\). As of December 2007, the DCMI Usage Board is seeking a way to express this intention with a formal range declaration.).freeze,
|
428
|
+
note: %(This term is intended to be used with non-literal values as defined in the DCMI Abstract Model \(http://dublincore.org/documents/abstract-model/\). As of December 2007, the DCMI Usage Board is seeking a way to express this intention with a formal range declaration.).freeze,
|
429
429
|
subPropertyOf: ["dc11:relation".freeze, "dc:relation".freeze],
|
430
430
|
type: "rdf:Property".freeze
|
431
431
|
property :hasPart,
|
432
432
|
comment: %(A related resource that is included either physically or logically in the described resource.).freeze,
|
433
|
-
|
434
|
-
|
435
|
-
|
433
|
+
"dc:hasVersion": "http://dublincore.org/usage/terms/history/#hasPart-003".freeze,
|
434
|
+
"dc:issued": "2000-07-11".freeze,
|
435
|
+
"dc:modified": "2008-01-14".freeze,
|
436
|
+
isDefinedBy: "dc:".freeze,
|
436
437
|
label: "Has Part".freeze,
|
437
|
-
:
|
438
|
-
:"skos:note" => %(This term is intended to be used with non-literal values as defined in the DCMI Abstract Model \(http://dublincore.org/documents/abstract-model/\). As of December 2007, the DCMI Usage Board is seeking a way to express this intention with a formal range declaration.).freeze,
|
438
|
+
note: %(This term is intended to be used with non-literal values as defined in the DCMI Abstract Model \(http://dublincore.org/documents/abstract-model/\). As of December 2007, the DCMI Usage Board is seeking a way to express this intention with a formal range declaration.).freeze,
|
439
439
|
subPropertyOf: ["dc11:relation".freeze, "dc:relation".freeze],
|
440
440
|
type: "rdf:Property".freeze
|
441
441
|
property :hasVersion,
|
442
442
|
comment: %(A related resource that is a version, edition, or adaptation of the described resource.).freeze,
|
443
|
-
|
444
|
-
|
445
|
-
|
443
|
+
"dc:hasVersion": "http://dublincore.org/usage/terms/history/#hasVersion-003".freeze,
|
444
|
+
"dc:issued": "2000-07-11".freeze,
|
445
|
+
"dc:modified": "2008-01-14".freeze,
|
446
|
+
isDefinedBy: "dc:".freeze,
|
446
447
|
label: "Has Version".freeze,
|
447
|
-
:
|
448
|
-
:"skos:note" => %(This term is intended to be used with non-literal values as defined in the DCMI Abstract Model \(http://dublincore.org/documents/abstract-model/\). As of December 2007, the DCMI Usage Board is seeking a way to express this intention with a formal range declaration.).freeze,
|
448
|
+
note: %(This term is intended to be used with non-literal values as defined in the DCMI Abstract Model \(http://dublincore.org/documents/abstract-model/\). As of December 2007, the DCMI Usage Board is seeking a way to express this intention with a formal range declaration.).freeze,
|
449
449
|
subPropertyOf: ["dc11:relation".freeze, "dc:relation".freeze],
|
450
450
|
type: "rdf:Property".freeze
|
451
451
|
property :identifier,
|
452
452
|
comment: %(An unambiguous reference to the resource within a given context.).freeze,
|
453
|
-
|
454
|
-
|
455
|
-
|
456
|
-
|
453
|
+
"dc:description": "Recommended best practice is to identify the resource by means of a string conforming to a formal identification system. ".freeze,
|
454
|
+
"dc:hasVersion": "http://dublincore.org/usage/terms/history/#identifierT-001".freeze,
|
455
|
+
"dc:issued": "2008-01-14".freeze,
|
456
|
+
"dc:modified": "2008-01-14".freeze,
|
457
|
+
isDefinedBy: "dc:".freeze,
|
457
458
|
label: "Identifier".freeze,
|
458
459
|
range: "rdfs:Literal".freeze,
|
459
|
-
:"rdfs:isDefinedBy" => %(dc:).freeze,
|
460
460
|
subPropertyOf: "dc11:identifier".freeze,
|
461
461
|
type: "rdf:Property".freeze
|
462
462
|
property :instructionalMethod,
|
463
463
|
comment: %(A process, used to engender knowledge, attitudes and skills, that the described resource is designed to support.).freeze,
|
464
|
-
|
465
|
-
|
466
|
-
|
467
|
-
|
464
|
+
"dc:description": "Instructional Method will typically include 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,
|
465
|
+
"dc:hasVersion": "http://dublincore.org/usage/terms/history/#instructionalMethod-002".freeze,
|
466
|
+
"dc:issued": "2005-06-13".freeze,
|
467
|
+
"dc:modified": "2008-01-14".freeze,
|
468
|
+
isDefinedBy: "dc:".freeze,
|
468
469
|
label: "Instructional Method".freeze,
|
469
470
|
range: "dc:MethodOfInstruction".freeze,
|
470
|
-
:"rdfs:isDefinedBy" => %(dc:).freeze,
|
471
471
|
type: "rdf:Property".freeze
|
472
472
|
property :isFormatOf,
|
473
473
|
comment: %(A related resource that is substantially the same as the described resource, but in another format.).freeze,
|
474
|
-
|
475
|
-
|
476
|
-
|
474
|
+
"dc:hasVersion": "http://dublincore.org/usage/terms/history/#isFormatOf-003".freeze,
|
475
|
+
"dc:issued": "2000-07-11".freeze,
|
476
|
+
"dc:modified": "2008-01-14".freeze,
|
477
|
+
isDefinedBy: "dc:".freeze,
|
477
478
|
label: "Is Format Of".freeze,
|
478
|
-
:
|
479
|
-
:"skos:note" => %(This term is intended to be used with non-literal values as defined in the DCMI Abstract Model \(http://dublincore.org/documents/abstract-model/\). As of December 2007, the DCMI Usage Board is seeking a way to express this intention with a formal range declaration.).freeze,
|
479
|
+
note: %(This term is intended to be used with non-literal values as defined in the DCMI Abstract Model \(http://dublincore.org/documents/abstract-model/\). As of December 2007, the DCMI Usage Board is seeking a way to express this intention with a formal range declaration.).freeze,
|
480
480
|
subPropertyOf: ["dc11:relation".freeze, "dc:relation".freeze],
|
481
481
|
type: "rdf:Property".freeze
|
482
482
|
property :isPartOf,
|
483
483
|
comment: %(A related resource in which the described resource is physically or logically included.).freeze,
|
484
|
-
|
485
|
-
|
486
|
-
|
484
|
+
"dc:hasVersion": "http://dublincore.org/usage/terms/history/#isPartOf-003".freeze,
|
485
|
+
"dc:issued": "2000-07-11".freeze,
|
486
|
+
"dc:modified": "2008-01-14".freeze,
|
487
|
+
isDefinedBy: "dc:".freeze,
|
487
488
|
label: "Is Part Of".freeze,
|
488
|
-
:
|
489
|
-
:"skos:note" => %(This term is intended to be used with non-literal values as defined in the DCMI Abstract Model \(http://dublincore.org/documents/abstract-model/\). As of December 2007, the DCMI Usage Board is seeking a way to express this intention with a formal range declaration.).freeze,
|
489
|
+
note: %(This term is intended to be used with non-literal values as defined in the DCMI Abstract Model \(http://dublincore.org/documents/abstract-model/\). As of December 2007, the DCMI Usage Board is seeking a way to express this intention with a formal range declaration.).freeze,
|
490
490
|
subPropertyOf: ["dc11:relation".freeze, "dc:relation".freeze],
|
491
491
|
type: "rdf:Property".freeze
|
492
492
|
property :isReferencedBy,
|
493
493
|
comment: %(A related resource that references, cites, or otherwise points to the described resource.).freeze,
|
494
|
-
|
495
|
-
|
496
|
-
|
494
|
+
"dc:hasVersion": "http://dublincore.org/usage/terms/history/#isReferencedBy-003".freeze,
|
495
|
+
"dc:issued": "2000-07-11".freeze,
|
496
|
+
"dc:modified": "2008-01-14".freeze,
|
497
|
+
isDefinedBy: "dc:".freeze,
|
497
498
|
label: "Is Referenced By".freeze,
|
498
|
-
:
|
499
|
-
:"skos:note" => %(This term is intended to be used with non-literal values as defined in the DCMI Abstract Model \(http://dublincore.org/documents/abstract-model/\). As of December 2007, the DCMI Usage Board is seeking a way to express this intention with a formal range declaration.).freeze,
|
499
|
+
note: %(This term is intended to be used with non-literal values as defined in the DCMI Abstract Model \(http://dublincore.org/documents/abstract-model/\). As of December 2007, the DCMI Usage Board is seeking a way to express this intention with a formal range declaration.).freeze,
|
500
500
|
subPropertyOf: ["dc11:relation".freeze, "dc:relation".freeze],
|
501
501
|
type: "rdf:Property".freeze
|
502
502
|
property :isReplacedBy,
|
503
503
|
comment: %(A related resource that supplants, displaces, or supersedes the described resource.).freeze,
|
504
|
-
|
505
|
-
|
506
|
-
|
504
|
+
"dc:hasVersion": "http://dublincore.org/usage/terms/history/#isReplacedBy-003".freeze,
|
505
|
+
"dc:issued": "2000-07-11".freeze,
|
506
|
+
"dc:modified": "2008-01-14".freeze,
|
507
|
+
isDefinedBy: "dc:".freeze,
|
507
508
|
label: "Is Replaced By".freeze,
|
508
|
-
:
|
509
|
-
:"skos:note" => %(This term is intended to be used with non-literal values as defined in the DCMI Abstract Model \(http://dublincore.org/documents/abstract-model/\). As of December 2007, the DCMI Usage Board is seeking a way to express this intention with a formal range declaration.).freeze,
|
509
|
+
note: %(This term is intended to be used with non-literal values as defined in the DCMI Abstract Model \(http://dublincore.org/documents/abstract-model/\). As of December 2007, the DCMI Usage Board is seeking a way to express this intention with a formal range declaration.).freeze,
|
510
510
|
subPropertyOf: ["dc11:relation".freeze, "dc:relation".freeze],
|
511
511
|
type: "rdf:Property".freeze
|
512
512
|
property :isRequiredBy,
|
513
513
|
comment: %(A related resource that requires the described resource to support its function, delivery, or coherence.).freeze,
|
514
|
-
|
515
|
-
|
516
|
-
|
514
|
+
"dc:hasVersion": "http://dublincore.org/usage/terms/history/#isRequiredBy-003".freeze,
|
515
|
+
"dc:issued": "2000-07-11".freeze,
|
516
|
+
"dc:modified": "2008-01-14".freeze,
|
517
|
+
isDefinedBy: "dc:".freeze,
|
517
518
|
label: "Is Required By".freeze,
|
518
|
-
:
|
519
|
-
:"skos:note" => %(This term is intended to be used with non-literal values as defined in the DCMI Abstract Model \(http://dublincore.org/documents/abstract-model/\). As of December 2007, the DCMI Usage Board is seeking a way to express this intention with a formal range declaration.).freeze,
|
519
|
+
note: %(This term is intended to be used with non-literal values as defined in the DCMI Abstract Model \(http://dublincore.org/documents/abstract-model/\). As of December 2007, the DCMI Usage Board is seeking a way to express this intention with a formal range declaration.).freeze,
|
520
520
|
subPropertyOf: ["dc11:relation".freeze, "dc:relation".freeze],
|
521
521
|
type: "rdf:Property".freeze
|
522
522
|
property :isVersionOf,
|
523
523
|
comment: %(A related resource of which the described resource is a version, edition, or adaptation.).freeze,
|
524
|
-
|
525
|
-
|
526
|
-
|
527
|
-
|
524
|
+
"dc:description": "Changes in version imply substantive changes in content rather than differences in format.".freeze,
|
525
|
+
"dc:hasVersion": "http://dublincore.org/usage/terms/history/#isVersionOf-003".freeze,
|
526
|
+
"dc:issued": "2000-07-11".freeze,
|
527
|
+
"dc:modified": "2008-01-14".freeze,
|
528
|
+
isDefinedBy: "dc:".freeze,
|
528
529
|
label: "Is Version Of".freeze,
|
529
|
-
:
|
530
|
-
:"skos:note" => %(This term is intended to be used with non-literal values as defined in the DCMI Abstract Model \(http://dublincore.org/documents/abstract-model/\). As of December 2007, the DCMI Usage Board is seeking a way to express this intention with a formal range declaration.).freeze,
|
530
|
+
note: %(This term is intended to be used with non-literal values as defined in the DCMI Abstract Model \(http://dublincore.org/documents/abstract-model/\). As of December 2007, the DCMI Usage Board is seeking a way to express this intention with a formal range declaration.).freeze,
|
531
531
|
subPropertyOf: ["dc11:relation".freeze, "dc:relation".freeze],
|
532
532
|
type: "rdf:Property".freeze
|
533
533
|
property :issued,
|
534
534
|
comment: %(Date of formal issuance \(e.g., publication\) of the resource.).freeze,
|
535
|
-
|
536
|
-
|
537
|
-
|
535
|
+
"dc:hasVersion": "http://dublincore.org/usage/terms/history/#issued-003".freeze,
|
536
|
+
"dc:issued": "2000-07-11".freeze,
|
537
|
+
"dc:modified": "2008-01-14".freeze,
|
538
|
+
isDefinedBy: "dc:".freeze,
|
538
539
|
label: "Date Issued".freeze,
|
539
540
|
range: "rdfs:Literal".freeze,
|
540
|
-
:"rdfs:isDefinedBy" => %(dc:).freeze,
|
541
541
|
subPropertyOf: ["dc11:date".freeze, "dc:date".freeze],
|
542
542
|
type: "rdf:Property".freeze
|
543
543
|
property :language,
|
544
544
|
comment: %(A language of the resource.).freeze,
|
545
|
-
|
546
|
-
|
547
|
-
|
548
|
-
|
545
|
+
"dc:description": "Recommended best practice is to use a controlled vocabulary such as RFC 4646 [RFC4646].".freeze,
|
546
|
+
"dc:hasVersion": "http://dublincore.org/usage/terms/history/#languageT-001".freeze,
|
547
|
+
"dc:issued": "2008-01-14".freeze,
|
548
|
+
"dc:modified": "2008-01-14".freeze,
|
549
|
+
isDefinedBy: "dc:".freeze,
|
549
550
|
label: "Language".freeze,
|
550
551
|
range: "dc:LinguisticSystem".freeze,
|
551
|
-
:"rdfs:isDefinedBy" => %(dc:).freeze,
|
552
552
|
subPropertyOf: "dc11:language".freeze,
|
553
553
|
type: "rdf:Property".freeze
|
554
554
|
property :license,
|
555
555
|
comment: %(A legal document giving official permission to do something with the resource.).freeze,
|
556
|
-
|
557
|
-
|
558
|
-
|
556
|
+
"dc:hasVersion": "http://dublincore.org/usage/terms/history/#license-002".freeze,
|
557
|
+
"dc:issued": "2004-06-14".freeze,
|
558
|
+
"dc:modified": "2008-01-14".freeze,
|
559
|
+
isDefinedBy: "dc:".freeze,
|
559
560
|
label: "License".freeze,
|
560
561
|
range: "dc:LicenseDocument".freeze,
|
561
|
-
:"rdfs:isDefinedBy" => %(dc:).freeze,
|
562
562
|
subPropertyOf: ["dc11:rights".freeze, "dc:rights".freeze],
|
563
563
|
type: "rdf:Property".freeze
|
564
564
|
property :mediator,
|
565
565
|
comment: %(An entity that mediates access to the resource and for whom the resource is intended or useful.).freeze,
|
566
|
-
|
567
|
-
|
568
|
-
|
569
|
-
|
566
|
+
"dc:description": "In an educational context, a mediator might be a parent, teacher, teaching assistant, or care-giver.".freeze,
|
567
|
+
"dc:hasVersion": "http://dublincore.org/usage/terms/history/#mediator-003".freeze,
|
568
|
+
"dc:issued": "2001-05-21".freeze,
|
569
|
+
"dc:modified": "2008-01-14".freeze,
|
570
|
+
isDefinedBy: "dc:".freeze,
|
570
571
|
label: "Mediator".freeze,
|
571
572
|
range: "dc:AgentClass".freeze,
|
572
|
-
:"rdfs:isDefinedBy" => %(dc:).freeze,
|
573
573
|
subPropertyOf: "dc:audience".freeze,
|
574
574
|
type: "rdf:Property".freeze
|
575
575
|
property :medium,
|
576
576
|
comment: %(The material or physical carrier of the resource.).freeze,
|
577
|
-
|
578
|
-
|
579
|
-
|
577
|
+
"dc:hasVersion": "http://dublincore.org/usage/terms/history/#medium-003".freeze,
|
578
|
+
"dc:issued": "2000-07-11".freeze,
|
579
|
+
"dc:modified": "2008-01-14".freeze,
|
580
580
|
domain: "dc:PhysicalResource".freeze,
|
581
|
+
isDefinedBy: "dc:".freeze,
|
581
582
|
label: "Medium".freeze,
|
582
583
|
range: "dc:PhysicalMedium".freeze,
|
583
|
-
:"rdfs:isDefinedBy" => %(dc:).freeze,
|
584
584
|
subPropertyOf: ["dc11:format".freeze, "dc:format".freeze],
|
585
585
|
type: "rdf:Property".freeze
|
586
586
|
property :modified,
|
587
587
|
comment: %(Date on which the resource was changed.).freeze,
|
588
|
-
|
589
|
-
|
590
|
-
|
588
|
+
"dc:hasVersion": "http://dublincore.org/usage/terms/history/#modified-003".freeze,
|
589
|
+
"dc:issued": "2000-07-11".freeze,
|
590
|
+
"dc:modified": "2008-01-14".freeze,
|
591
|
+
isDefinedBy: "dc:".freeze,
|
591
592
|
label: "Date Modified".freeze,
|
592
593
|
range: "rdfs:Literal".freeze,
|
593
|
-
:"rdfs:isDefinedBy" => %(dc:).freeze,
|
594
594
|
subPropertyOf: ["dc11:date".freeze, "dc:date".freeze],
|
595
595
|
type: "rdf:Property".freeze
|
596
596
|
property :provenance,
|
597
597
|
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,
|
598
|
-
|
599
|
-
|
600
|
-
|
601
|
-
|
598
|
+
"dc:description": "The statement may include a description of any changes successive custodians made to the resource.".freeze,
|
599
|
+
"dc:hasVersion": "http://dublincore.org/usage/terms/history/#provenance-002".freeze,
|
600
|
+
"dc:issued": "2004-09-20".freeze,
|
601
|
+
"dc:modified": "2008-01-14".freeze,
|
602
|
+
isDefinedBy: "dc:".freeze,
|
602
603
|
label: "Provenance".freeze,
|
603
604
|
range: "dc:ProvenanceStatement".freeze,
|
604
|
-
:"rdfs:isDefinedBy" => %(dc:).freeze,
|
605
605
|
type: "rdf:Property".freeze
|
606
606
|
property :publisher,
|
607
607
|
comment: %(An entity responsible for making the resource available.).freeze,
|
608
|
-
|
609
|
-
|
610
|
-
|
611
|
-
|
608
|
+
"dc:description": "Examples of a Publisher include a person, an organization, or a service.".freeze,
|
609
|
+
"dc:hasVersion": "http://dublincore.org/usage/terms/history/#publisherT-001".freeze,
|
610
|
+
"dc:issued": "2008-01-14".freeze,
|
611
|
+
"dc:modified": "2010-10-11".freeze,
|
612
|
+
isDefinedBy: "dc:".freeze,
|
612
613
|
label: "Publisher".freeze,
|
613
614
|
range: "dc:Agent".freeze,
|
614
|
-
:"rdfs:isDefinedBy" => %(dc:).freeze,
|
615
615
|
subPropertyOf: "dc11:publisher".freeze,
|
616
616
|
type: "rdf:Property".freeze
|
617
617
|
property :references,
|
618
618
|
comment: %(A related resource that is referenced, cited, or otherwise pointed to by the described resource.).freeze,
|
619
|
-
|
620
|
-
|
621
|
-
|
619
|
+
"dc:hasVersion": "http://dublincore.org/usage/terms/history/#references-003".freeze,
|
620
|
+
"dc:issued": "2000-07-11".freeze,
|
621
|
+
"dc:modified": "2008-01-14".freeze,
|
622
|
+
isDefinedBy: "dc:".freeze,
|
622
623
|
label: "References".freeze,
|
623
|
-
:
|
624
|
-
:"skos:note" => %(This term is intended to be used with non-literal values as defined in the DCMI Abstract Model \(http://dublincore.org/documents/abstract-model/\). As of December 2007, the DCMI Usage Board is seeking a way to express this intention with a formal range declaration.).freeze,
|
624
|
+
note: %(This term is intended to be used with non-literal values as defined in the DCMI Abstract Model \(http://dublincore.org/documents/abstract-model/\). As of December 2007, the DCMI Usage Board is seeking a way to express this intention with a formal range declaration.).freeze,
|
625
625
|
subPropertyOf: ["dc11:relation".freeze, "dc:relation".freeze],
|
626
626
|
type: "rdf:Property".freeze
|
627
627
|
property :relation,
|
628
628
|
comment: %(A related resource.).freeze,
|
629
|
-
|
630
|
-
|
631
|
-
|
632
|
-
|
629
|
+
"dc:description": "Recommended best practice is to identify the related resource by means of a string conforming to a formal identification system. ".freeze,
|
630
|
+
"dc:hasVersion": "http://dublincore.org/usage/terms/history/#relationT-001".freeze,
|
631
|
+
"dc:issued": "2008-01-14".freeze,
|
632
|
+
"dc:modified": "2008-01-14".freeze,
|
633
|
+
isDefinedBy: "dc:".freeze,
|
633
634
|
label: "Relation".freeze,
|
634
|
-
:
|
635
|
-
:"skos:note" => %(This term is intended to be used with non-literal values as defined in the DCMI Abstract Model \(http://dublincore.org/documents/abstract-model/\). As of December 2007, the DCMI Usage Board is seeking a way to express this intention with a formal range declaration.).freeze,
|
635
|
+
note: %(This term is intended to be used with non-literal values as defined in the DCMI Abstract Model \(http://dublincore.org/documents/abstract-model/\). As of December 2007, the DCMI Usage Board is seeking a way to express this intention with a formal range declaration.).freeze,
|
636
636
|
subPropertyOf: "dc11:relation".freeze,
|
637
637
|
type: "rdf:Property".freeze
|
638
638
|
property :replaces,
|
639
639
|
comment: %(A related resource that is supplanted, displaced, or superseded by the described resource.).freeze,
|
640
|
-
|
641
|
-
|
642
|
-
|
640
|
+
"dc:hasVersion": "http://dublincore.org/usage/terms/history/#replaces-003".freeze,
|
641
|
+
"dc:issued": "2000-07-11".freeze,
|
642
|
+
"dc:modified": "2008-01-14".freeze,
|
643
|
+
isDefinedBy: "dc:".freeze,
|
643
644
|
label: "Replaces".freeze,
|
644
|
-
:
|
645
|
-
:"skos:note" => %(This term is intended to be used with non-literal values as defined in the DCMI Abstract Model \(http://dublincore.org/documents/abstract-model/\). As of December 2007, the DCMI Usage Board is seeking a way to express this intention with a formal range declaration.).freeze,
|
645
|
+
note: %(This term is intended to be used with non-literal values as defined in the DCMI Abstract Model \(http://dublincore.org/documents/abstract-model/\). As of December 2007, the DCMI Usage Board is seeking a way to express this intention with a formal range declaration.).freeze,
|
646
646
|
subPropertyOf: ["dc11:relation".freeze, "dc:relation".freeze],
|
647
647
|
type: "rdf:Property".freeze
|
648
648
|
property :requires,
|
649
649
|
comment: %(A related resource that is required by the described resource to support its function, delivery, or coherence.).freeze,
|
650
|
-
|
651
|
-
|
652
|
-
|
650
|
+
"dc:hasVersion": "http://dublincore.org/usage/terms/history/#requires-003".freeze,
|
651
|
+
"dc:issued": "2000-07-11".freeze,
|
652
|
+
"dc:modified": "2008-01-14".freeze,
|
653
|
+
isDefinedBy: "dc:".freeze,
|
653
654
|
label: "Requires".freeze,
|
654
|
-
:
|
655
|
-
:"skos:note" => %(This term is intended to be used with non-literal values as defined in the DCMI Abstract Model \(http://dublincore.org/documents/abstract-model/\). As of December 2007, the DCMI Usage Board is seeking a way to express this intention with a formal range declaration.).freeze,
|
655
|
+
note: %(This term is intended to be used with non-literal values as defined in the DCMI Abstract Model \(http://dublincore.org/documents/abstract-model/\). As of December 2007, the DCMI Usage Board is seeking a way to express this intention with a formal range declaration.).freeze,
|
656
656
|
subPropertyOf: ["dc11:relation".freeze, "dc:relation".freeze],
|
657
657
|
type: "rdf:Property".freeze
|
658
658
|
property :rights,
|
659
659
|
comment: %(Information about rights held in and over the resource.).freeze,
|
660
|
-
|
661
|
-
|
662
|
-
|
663
|
-
|
660
|
+
"dc:description": "Typically, rights information includes a statement about various property rights associated with the resource, including intellectual property rights.".freeze,
|
661
|
+
"dc:hasVersion": "http://dublincore.org/usage/terms/history/#rightsT-001".freeze,
|
662
|
+
"dc:issued": "2008-01-14".freeze,
|
663
|
+
"dc:modified": "2008-01-14".freeze,
|
664
|
+
isDefinedBy: "dc:".freeze,
|
664
665
|
label: "Rights".freeze,
|
665
666
|
range: "dc:RightsStatement".freeze,
|
666
|
-
:"rdfs:isDefinedBy" => %(dc:).freeze,
|
667
667
|
subPropertyOf: "dc11:rights".freeze,
|
668
668
|
type: "rdf:Property".freeze
|
669
669
|
property :rightsHolder,
|
670
670
|
comment: %(A person or organization owning or managing rights over the resource.).freeze,
|
671
|
-
|
672
|
-
|
673
|
-
|
671
|
+
"dc:hasVersion": "http://dublincore.org/usage/terms/history/#rightsHolder-002".freeze,
|
672
|
+
"dc:issued": "2004-06-14".freeze,
|
673
|
+
"dc:modified": "2008-01-14".freeze,
|
674
|
+
isDefinedBy: "dc:".freeze,
|
674
675
|
label: "Rights Holder".freeze,
|
675
676
|
range: "dc:Agent".freeze,
|
676
|
-
:"rdfs:isDefinedBy" => %(dc:).freeze,
|
677
677
|
type: "rdf:Property".freeze
|
678
678
|
property :source,
|
679
679
|
comment: %(A related resource from which the described resource is derived.).freeze,
|
680
|
-
|
681
|
-
|
682
|
-
|
683
|
-
|
680
|
+
"dc:description": "The described resource may be derived from the related resource in whole or in part. Recommended best practice is to identify the related resource by means of a string conforming to a formal identification system.".freeze,
|
681
|
+
"dc:hasVersion": "http://dublincore.org/usage/terms/history/#sourceT-001".freeze,
|
682
|
+
"dc:issued": "2008-01-14".freeze,
|
683
|
+
"dc:modified": "2008-01-14".freeze,
|
684
|
+
isDefinedBy: "dc:".freeze,
|
684
685
|
label: "Source".freeze,
|
685
|
-
:
|
686
|
-
:"skos:note" => %(This term is intended to be used with non-literal values as defined in the DCMI Abstract Model \(http://dublincore.org/documents/abstract-model/\). As of December 2007, the DCMI Usage Board is seeking a way to express this intention with a formal range declaration.).freeze,
|
686
|
+
note: %(This term is intended to be used with non-literal values as defined in the DCMI Abstract Model \(http://dublincore.org/documents/abstract-model/\). As of December 2007, the DCMI Usage Board is seeking a way to express this intention with a formal range declaration.).freeze,
|
687
687
|
subPropertyOf: ["dc11:source".freeze, "dc:relation".freeze],
|
688
688
|
type: "rdf:Property".freeze
|
689
689
|
property :spatial,
|
690
690
|
comment: %(Spatial characteristics of the resource.).freeze,
|
691
|
-
|
692
|
-
|
693
|
-
|
691
|
+
"dc:hasVersion": "http://dublincore.org/usage/terms/history/#spatial-003".freeze,
|
692
|
+
"dc:issued": "2000-07-11".freeze,
|
693
|
+
"dc:modified": "2008-01-14".freeze,
|
694
|
+
isDefinedBy: "dc:".freeze,
|
694
695
|
label: "Spatial Coverage".freeze,
|
695
696
|
range: "dc:Location".freeze,
|
696
|
-
:"rdfs:isDefinedBy" => %(dc:).freeze,
|
697
697
|
subPropertyOf: ["dc11:coverage".freeze, "dc:coverage".freeze],
|
698
698
|
type: "rdf:Property".freeze
|
699
699
|
property :subject,
|
700
700
|
comment: %(The topic of the resource.).freeze,
|
701
|
-
|
702
|
-
|
703
|
-
|
704
|
-
|
701
|
+
"dc:description": "Typically, the subject will be represented using keywords, key phrases, or classification codes. Recommended best practice is to use a controlled vocabulary.".freeze,
|
702
|
+
"dc:hasVersion": "http://dublincore.org/usage/terms/history/#subjectT-002".freeze,
|
703
|
+
"dc:issued": "2008-01-14".freeze,
|
704
|
+
"dc:modified": "2012-06-14".freeze,
|
705
|
+
isDefinedBy: "dc:".freeze,
|
705
706
|
label: "Subject".freeze,
|
706
|
-
:
|
707
|
-
:"skos:note" => %(This term is intended to be used with non-literal values as defined in the DCMI Abstract Model \(http://dublincore.org/documents/abstract-model/\). As of December 2007, the DCMI Usage Board is seeking a way to express this intention with a formal range declaration.).freeze,
|
707
|
+
note: %(This term is intended to be used with non-literal values as defined in the DCMI Abstract Model \(http://dublincore.org/documents/abstract-model/\). As of December 2007, the DCMI Usage Board is seeking a way to express this intention with a formal range declaration.).freeze,
|
708
708
|
subPropertyOf: "dc11:subject".freeze,
|
709
709
|
type: "rdf:Property".freeze
|
710
710
|
property :tableOfContents,
|
711
711
|
comment: %(A list of subunits of the resource.).freeze,
|
712
|
-
|
713
|
-
|
714
|
-
|
712
|
+
"dc:hasVersion": "http://dublincore.org/usage/terms/history/#tableOfContents-003".freeze,
|
713
|
+
"dc:issued": "2000-07-11".freeze,
|
714
|
+
"dc:modified": "2008-01-14".freeze,
|
715
|
+
isDefinedBy: "dc:".freeze,
|
715
716
|
label: "Table Of Contents".freeze,
|
716
|
-
:"rdfs:isDefinedBy" => %(dc:).freeze,
|
717
717
|
subPropertyOf: ["dc11:description".freeze, "dc:description".freeze],
|
718
718
|
type: "rdf:Property".freeze
|
719
719
|
property :temporal,
|
720
720
|
comment: %(Temporal characteristics of the resource.).freeze,
|
721
|
-
|
722
|
-
|
723
|
-
|
721
|
+
"dc:hasVersion": "http://dublincore.org/usage/terms/history/#temporal-003".freeze,
|
722
|
+
"dc:issued": "2000-07-11".freeze,
|
723
|
+
"dc:modified": "2008-01-14".freeze,
|
724
|
+
isDefinedBy: "dc:".freeze,
|
724
725
|
label: "Temporal Coverage".freeze,
|
725
726
|
range: "dc:PeriodOfTime".freeze,
|
726
|
-
:"rdfs:isDefinedBy" => %(dc:).freeze,
|
727
727
|
subPropertyOf: ["dc11:coverage".freeze, "dc:coverage".freeze],
|
728
728
|
type: "rdf:Property".freeze
|
729
729
|
property :title,
|
730
730
|
comment: %(A name given to the resource.).freeze,
|
731
|
-
|
732
|
-
|
733
|
-
|
731
|
+
"dc:hasVersion": "http://dublincore.org/usage/terms/history/#titleT-002".freeze,
|
732
|
+
"dc:issued": "2008-01-14".freeze,
|
733
|
+
"dc:modified": "2010-10-11".freeze,
|
734
|
+
isDefinedBy: "dc:".freeze,
|
734
735
|
label: "Title".freeze,
|
735
736
|
range: "rdfs:Literal".freeze,
|
736
|
-
:"rdfs:isDefinedBy" => %(dc:).freeze,
|
737
737
|
subPropertyOf: "dc11:title".freeze,
|
738
738
|
type: "rdf:Property".freeze
|
739
739
|
property :type,
|
740
740
|
comment: %(The nature or genre of the resource.).freeze,
|
741
|
-
|
742
|
-
|
743
|
-
|
744
|
-
|
741
|
+
"dc:description": "Recommended best practice is to use a controlled vocabulary such as the DCMI Type Vocabulary [DCMITYPE]. To describe the file format, physical medium, or dimensions of the resource, use the Format element.".freeze,
|
742
|
+
"dc:hasVersion": "http://dublincore.org/usage/terms/history/#typeT-001".freeze,
|
743
|
+
"dc:issued": "2008-01-14".freeze,
|
744
|
+
"dc:modified": "2008-01-14".freeze,
|
745
|
+
isDefinedBy: "dc:".freeze,
|
745
746
|
label: "Type".freeze,
|
746
747
|
range: "rdfs:Class".freeze,
|
747
|
-
:"rdfs:isDefinedBy" => %(dc:).freeze,
|
748
748
|
subPropertyOf: "dc11:type".freeze,
|
749
749
|
type: "rdf:Property".freeze
|
750
750
|
property :valid,
|
751
751
|
comment: %(Date \(often a range\) of validity of a resource.).freeze,
|
752
|
-
|
753
|
-
|
754
|
-
|
752
|
+
"dc:hasVersion": "http://dublincore.org/usage/terms/history/#valid-003".freeze,
|
753
|
+
"dc:issued": "2000-07-11".freeze,
|
754
|
+
"dc:modified": "2008-01-14".freeze,
|
755
|
+
isDefinedBy: "dc:".freeze,
|
755
756
|
label: "Date Valid".freeze,
|
756
757
|
range: "rdfs:Literal".freeze,
|
757
|
-
:"rdfs:isDefinedBy" => %(dc:).freeze,
|
758
758
|
subPropertyOf: ["dc11:date".freeze, "dc:date".freeze],
|
759
759
|
type: "rdf:Property".freeze
|
760
760
|
|
761
761
|
# Datatype definitions
|
762
762
|
term :Box,
|
763
763
|
comment: %(The set of regions in space defined by their geographic coordinates according to the DCMI Box Encoding Scheme.).freeze,
|
764
|
-
|
765
|
-
|
766
|
-
|
764
|
+
"dc:hasVersion": "http://dublincore.org/usage/terms/history/#Box-003".freeze,
|
765
|
+
"dc:issued": "2000-07-11".freeze,
|
766
|
+
"dc:modified": "2008-01-14".freeze,
|
767
|
+
isDefinedBy: "dc:".freeze,
|
767
768
|
label: "DCMI Box".freeze,
|
768
|
-
|
769
|
-
:"rdfs:seeAlso" => %(http://dublincore.org/documents/dcmi-box/).freeze,
|
769
|
+
"rdfs:seeAlso": "http://dublincore.org/documents/dcmi-box/".freeze,
|
770
770
|
type: "rdfs:Datatype".freeze
|
771
771
|
term :ISO3166,
|
772
772
|
comment: %(The set of codes listed in ISO 3166-1 for the representation of names of countries.).freeze,
|
773
|
-
|
774
|
-
|
775
|
-
|
773
|
+
"dc:hasVersion": "http://dublincore.org/usage/terms/history/#ISO3166-004".freeze,
|
774
|
+
"dc:issued": "2000-07-11".freeze,
|
775
|
+
"dc:modified": "2008-01-14".freeze,
|
776
|
+
isDefinedBy: "dc:".freeze,
|
776
777
|
label: "ISO 3166".freeze,
|
777
|
-
|
778
|
-
:"rdfs:seeAlso" => %(http://www.iso.org/iso/en/prods-services/iso3166ma/02iso-3166-code-lists/list-en1.html).freeze,
|
778
|
+
"rdfs:seeAlso": "http://www.iso.org/iso/en/prods-services/iso3166ma/02iso-3166-code-lists/list-en1.html".freeze,
|
779
779
|
type: "rdfs:Datatype".freeze
|
780
780
|
term :"ISO639-2",
|
781
781
|
comment: %(The three-letter alphabetic codes listed in ISO639-2 for the representation of names of languages.).freeze,
|
782
|
-
|
783
|
-
|
784
|
-
|
782
|
+
"dc:hasVersion": "http://dublincore.org/usage/terms/history/#ISO639-2-003".freeze,
|
783
|
+
"dc:issued": "2000-07-11".freeze,
|
784
|
+
"dc:modified": "2008-01-14".freeze,
|
785
|
+
isDefinedBy: "dc:".freeze,
|
785
786
|
label: "ISO 639-2".freeze,
|
786
|
-
|
787
|
-
:"rdfs:seeAlso" => %(http://lcweb.loc.gov/standards/iso639-2/langhome.html).freeze,
|
787
|
+
"rdfs:seeAlso": "http://lcweb.loc.gov/standards/iso639-2/langhome.html".freeze,
|
788
788
|
type: "rdfs:Datatype".freeze
|
789
789
|
term :"ISO639-3",
|
790
790
|
comment: %(The set of three-letter codes listed in ISO 639-3 for the representation of names of languages.).freeze,
|
791
|
-
|
792
|
-
|
791
|
+
"dc:hasVersion": "http://dublincore.org/usage/terms/history/#ISO639-3-001".freeze,
|
792
|
+
"dc:issued": "2008-01-14".freeze,
|
793
|
+
isDefinedBy: "dc:".freeze,
|
793
794
|
label: "ISO 639-3".freeze,
|
794
|
-
|
795
|
-
:"rdfs:seeAlso" => %(http://www.sil.org/iso639-3/).freeze,
|
795
|
+
"rdfs:seeAlso": "http://www.sil.org/iso639-3/".freeze,
|
796
796
|
type: "rdfs:Datatype".freeze
|
797
797
|
term :Period,
|
798
798
|
comment: %(The set of time intervals defined by their limits according to the DCMI Period Encoding Scheme.).freeze,
|
799
|
-
|
800
|
-
|
801
|
-
|
799
|
+
"dc:hasVersion": "http://dublincore.org/usage/terms/history/#Period-003".freeze,
|
800
|
+
"dc:issued": "2000-07-11".freeze,
|
801
|
+
"dc:modified": "2008-01-14".freeze,
|
802
|
+
isDefinedBy: "dc:".freeze,
|
802
803
|
label: "DCMI Period".freeze,
|
803
|
-
|
804
|
-
:"rdfs:seeAlso" => %(http://dublincore.org/documents/dcmi-period/).freeze,
|
804
|
+
"rdfs:seeAlso": "http://dublincore.org/documents/dcmi-period/".freeze,
|
805
805
|
type: "rdfs:Datatype".freeze
|
806
806
|
term :Point,
|
807
807
|
comment: %(The set of points in space defined by their geographic coordinates according to the DCMI Point Encoding Scheme.).freeze,
|
808
|
-
|
809
|
-
|
810
|
-
|
808
|
+
"dc:hasVersion": "http://dublincore.org/usage/terms/history/#Point-003".freeze,
|
809
|
+
"dc:issued": "2000-07-11".freeze,
|
810
|
+
"dc:modified": "2008-01-14".freeze,
|
811
|
+
isDefinedBy: "dc:".freeze,
|
811
812
|
label: "DCMI Point".freeze,
|
812
|
-
|
813
|
-
:"rdfs:seeAlso" => %(http://dublincore.org/documents/dcmi-point/).freeze,
|
813
|
+
"rdfs:seeAlso": "http://dublincore.org/documents/dcmi-point/".freeze,
|
814
814
|
type: "rdfs:Datatype".freeze
|
815
815
|
term :RFC1766,
|
816
816
|
comment: %(The set of tags, constructed according to RFC 1766, for the identification of languages.).freeze,
|
817
|
-
|
818
|
-
|
819
|
-
|
817
|
+
"dc:hasVersion": "http://dublincore.org/usage/terms/history/#RFC1766-003".freeze,
|
818
|
+
"dc:issued": "2000-07-11".freeze,
|
819
|
+
"dc:modified": "2008-01-14".freeze,
|
820
|
+
isDefinedBy: "dc:".freeze,
|
820
821
|
label: "RFC 1766".freeze,
|
821
|
-
|
822
|
-
:"rdfs:seeAlso" => %(http://www.ietf.org/rfc/rfc1766.txt).freeze,
|
822
|
+
"rdfs:seeAlso": "http://www.ietf.org/rfc/rfc1766.txt".freeze,
|
823
823
|
type: "rdfs:Datatype".freeze
|
824
824
|
term :RFC3066,
|
825
825
|
comment: %(The set of tags constructed according to RFC 3066 for the identification of languages.).freeze,
|
826
|
-
|
827
|
-
|
828
|
-
|
829
|
-
|
826
|
+
"dc:description": "RFC 3066 has been obsoleted by RFC 4646.".freeze,
|
827
|
+
"dc:hasVersion": "http://dublincore.org/usage/terms/history/#RFC3066-002".freeze,
|
828
|
+
"dc:issued": "2002-07-13".freeze,
|
829
|
+
"dc:modified": "2008-01-14".freeze,
|
830
|
+
isDefinedBy: "dc:".freeze,
|
830
831
|
label: "RFC 3066".freeze,
|
831
|
-
|
832
|
-
:"rdfs:seeAlso" => %(http://www.ietf.org/rfc/rfc3066.txt).freeze,
|
832
|
+
"rdfs:seeAlso": "http://www.ietf.org/rfc/rfc3066.txt".freeze,
|
833
833
|
type: "rdfs:Datatype".freeze
|
834
834
|
term :RFC4646,
|
835
835
|
comment: %(The set of tags constructed according to RFC 4646 for the identification of languages.).freeze,
|
836
|
-
|
837
|
-
|
838
|
-
|
836
|
+
"dc:description": "RFC 4646 obsoletes RFC 3066.".freeze,
|
837
|
+
"dc:hasVersion": "http://dublincore.org/usage/terms/history/#RFC4646-001".freeze,
|
838
|
+
"dc:issued": "2008-01-14".freeze,
|
839
|
+
isDefinedBy: "dc:".freeze,
|
839
840
|
label: "RFC 4646".freeze,
|
840
|
-
|
841
|
-
:"rdfs:seeAlso" => %(http://www.ietf.org/rfc/rfc4646.txt).freeze,
|
841
|
+
"rdfs:seeAlso": "http://www.ietf.org/rfc/rfc4646.txt".freeze,
|
842
842
|
type: "rdfs:Datatype".freeze
|
843
843
|
term :RFC5646,
|
844
844
|
comment: %(The set of tags constructed according to RFC 5646 for the identification of languages.).freeze,
|
845
|
-
|
846
|
-
|
847
|
-
|
845
|
+
"dc:description": "RFC 5646 obsoletes RFC 4646.".freeze,
|
846
|
+
"dc:hasVersion": "http://dublincore.org/usage/terms/history/#RFC5646-001".freeze,
|
847
|
+
"dc:issued": "2010-10-11".freeze,
|
848
|
+
isDefinedBy: "dc:".freeze,
|
848
849
|
label: "RFC 5646".freeze,
|
849
|
-
|
850
|
-
:"rdfs:seeAlso" => %(http://www.ietf.org/rfc/rfc5646.txt).freeze,
|
850
|
+
"rdfs:seeAlso": "http://www.ietf.org/rfc/rfc5646.txt".freeze,
|
851
851
|
type: "rdfs:Datatype".freeze
|
852
852
|
term :URI,
|
853
853
|
comment: %(The set of identifiers constructed according to the generic syntax for Uniform Resource Identifiers as specified by the Internet Engineering Task Force.).freeze,
|
854
|
-
|
855
|
-
|
856
|
-
|
854
|
+
"dc:hasVersion": "http://dublincore.org/usage/terms/history/#URI-003".freeze,
|
855
|
+
"dc:issued": "2000-07-11".freeze,
|
856
|
+
"dc:modified": "2008-01-14".freeze,
|
857
|
+
isDefinedBy: "dc:".freeze,
|
857
858
|
label: "URI".freeze,
|
858
|
-
|
859
|
-
:"rdfs:seeAlso" => %(http://www.ietf.org/rfc/rfc3986.txt).freeze,
|
859
|
+
"rdfs:seeAlso": "http://www.ietf.org/rfc/rfc3986.txt".freeze,
|
860
860
|
type: "rdfs:Datatype".freeze
|
861
861
|
term :W3CDTF,
|
862
862
|
comment: %(The set of dates and times constructed according to the W3C Date and Time Formats Specification.).freeze,
|
863
|
-
|
864
|
-
|
865
|
-
|
863
|
+
"dc:hasVersion": "http://dublincore.org/usage/terms/history/#W3CDTF-003".freeze,
|
864
|
+
"dc:issued": "2000-07-11".freeze,
|
865
|
+
"dc:modified": "2008-01-14".freeze,
|
866
|
+
isDefinedBy: "dc:".freeze,
|
866
867
|
label: "W3C-DTF".freeze,
|
867
|
-
|
868
|
-
:"rdfs:seeAlso" => %(http://www.w3.org/TR/NOTE-datetime).freeze,
|
868
|
+
"rdfs:seeAlso": "http://www.w3.org/TR/NOTE-datetime".freeze,
|
869
869
|
type: "rdfs:Datatype".freeze
|
870
870
|
|
871
871
|
# Extra definitions
|
872
872
|
term :DCMIType,
|
873
873
|
comment: %(The set of classes specified by the DCMI Type Vocabulary, used to categorize the nature or genre of the resource.).freeze,
|
874
|
-
|
875
|
-
|
876
|
-
|
874
|
+
"dc:hasVersion": "http://dublincore.org/usage/terms/history/#DCMIType-005".freeze,
|
875
|
+
"dc:issued": "2000-07-11".freeze,
|
876
|
+
"dc:modified": "2012-06-14".freeze,
|
877
|
+
isDefinedBy: "dc:".freeze,
|
877
878
|
label: "DCMI Type Vocabulary".freeze,
|
878
|
-
|
879
|
-
:"rdfs:seeAlso" => %(dcmitype:).freeze,
|
879
|
+
"rdfs:seeAlso": "dcmitype:".freeze,
|
880
880
|
type: "http://purl.org/dc/dcam/VocabularyEncodingScheme".freeze
|
881
881
|
term :DDC,
|
882
882
|
comment: %(The set of conceptual resources specified by the Dewey Decimal Classification.).freeze,
|
883
|
-
|
884
|
-
|
885
|
-
|
883
|
+
"dc:hasVersion": "http://dublincore.org/usage/terms/history/#DDC-003".freeze,
|
884
|
+
"dc:issued": "2000-07-11".freeze,
|
885
|
+
"dc:modified": "2008-01-14".freeze,
|
886
|
+
isDefinedBy: "dc:".freeze,
|
886
887
|
label: "DDC".freeze,
|
887
|
-
|
888
|
-
:"rdfs:seeAlso" => %(http://www.oclc.org/dewey/).freeze,
|
888
|
+
"rdfs:seeAlso": "http://www.oclc.org/dewey/".freeze,
|
889
889
|
type: "http://purl.org/dc/dcam/VocabularyEncodingScheme".freeze
|
890
890
|
term :IMT,
|
891
891
|
comment: %(The set of media types specified by the Internet Assigned Numbers Authority.).freeze,
|
892
|
-
|
893
|
-
|
894
|
-
|
892
|
+
"dc:hasVersion": "http://dublincore.org/usage/terms/history/#IMT-004".freeze,
|
893
|
+
"dc:issued": "2000-07-11".freeze,
|
894
|
+
"dc:modified": "2008-01-14".freeze,
|
895
|
+
isDefinedBy: "dc:".freeze,
|
895
896
|
label: "IMT".freeze,
|
896
|
-
|
897
|
-
:"rdfs:seeAlso" => %(http://www.iana.org/assignments/media-types/).freeze,
|
897
|
+
"rdfs:seeAlso": "http://www.iana.org/assignments/media-types/".freeze,
|
898
898
|
type: "http://purl.org/dc/dcam/VocabularyEncodingScheme".freeze
|
899
899
|
term :LCC,
|
900
900
|
comment: %(The set of conceptual resources specified by the Library of Congress Classification.).freeze,
|
901
|
-
|
902
|
-
|
903
|
-
|
901
|
+
"dc:hasVersion": "http://dublincore.org/usage/terms/history/#LCC-003".freeze,
|
902
|
+
"dc:issued": "2000-07-11".freeze,
|
903
|
+
"dc:modified": "2008-01-14".freeze,
|
904
|
+
isDefinedBy: "dc:".freeze,
|
904
905
|
label: "LCC".freeze,
|
905
|
-
|
906
|
-
:"rdfs:seeAlso" => %(http://lcweb.loc.gov/catdir/cpso/lcco/lcco.html).freeze,
|
906
|
+
"rdfs:seeAlso": "http://lcweb.loc.gov/catdir/cpso/lcco/lcco.html".freeze,
|
907
907
|
type: "http://purl.org/dc/dcam/VocabularyEncodingScheme".freeze
|
908
908
|
term :LCSH,
|
909
909
|
comment: %(The set of labeled concepts specified by the Library of Congress Subject Headings.).freeze,
|
910
|
-
|
911
|
-
|
912
|
-
|
910
|
+
"dc:hasVersion": "http://dublincore.org/usage/terms/history/#LCSH-003".freeze,
|
911
|
+
"dc:issued": "2000-07-11".freeze,
|
912
|
+
"dc:modified": "2008-01-14".freeze,
|
913
|
+
isDefinedBy: "dc:".freeze,
|
913
914
|
label: "LCSH".freeze,
|
914
|
-
:"rdfs:isDefinedBy" => %(dc:).freeze,
|
915
915
|
type: "http://purl.org/dc/dcam/VocabularyEncodingScheme".freeze
|
916
916
|
term :MESH,
|
917
917
|
comment: %(The set of labeled concepts specified by the Medical Subject Headings.).freeze,
|
918
|
-
|
919
|
-
|
920
|
-
|
918
|
+
"dc:hasVersion": "http://dublincore.org/usage/terms/history/#MESH-003".freeze,
|
919
|
+
"dc:issued": "2000-07-11".freeze,
|
920
|
+
"dc:modified": "2008-01-14".freeze,
|
921
|
+
isDefinedBy: "dc:".freeze,
|
921
922
|
label: "MeSH".freeze,
|
922
|
-
|
923
|
-
:"rdfs:seeAlso" => %(http://www.nlm.nih.gov/mesh/meshhome.html).freeze,
|
923
|
+
"rdfs:seeAlso": "http://www.nlm.nih.gov/mesh/meshhome.html".freeze,
|
924
924
|
type: "http://purl.org/dc/dcam/VocabularyEncodingScheme".freeze
|
925
925
|
term :NLM,
|
926
926
|
comment: %(The set of conceptual resources specified by the National Library of Medicine Classification.).freeze,
|
927
|
-
|
928
|
-
|
929
|
-
|
927
|
+
"dc:hasVersion": "http://dublincore.org/usage/terms/history/#NLM-002".freeze,
|
928
|
+
"dc:issued": "2005-06-13".freeze,
|
929
|
+
"dc:modified": "2008-01-14".freeze,
|
930
|
+
isDefinedBy: "dc:".freeze,
|
930
931
|
label: "NLM".freeze,
|
931
|
-
|
932
|
-
:"rdfs:seeAlso" => %(http://wwwcf.nlm.nih.gov/class/).freeze,
|
932
|
+
"rdfs:seeAlso": "http://wwwcf.nlm.nih.gov/class/".freeze,
|
933
933
|
type: "http://purl.org/dc/dcam/VocabularyEncodingScheme".freeze
|
934
934
|
term :TGN,
|
935
935
|
comment: %(The set of places specified by the Getty Thesaurus of Geographic Names.).freeze,
|
936
|
-
|
937
|
-
|
938
|
-
|
936
|
+
"dc:hasVersion": "http://dublincore.org/usage/terms/history/#TGN-003".freeze,
|
937
|
+
"dc:issued": "2000-07-11".freeze,
|
938
|
+
"dc:modified": "2008-01-14".freeze,
|
939
|
+
isDefinedBy: "dc:".freeze,
|
939
940
|
label: "TGN".freeze,
|
940
|
-
|
941
|
-
:"rdfs:seeAlso" => %(http://www.getty.edu/research/tools/vocabulary/tgn/index.html).freeze,
|
941
|
+
"rdfs:seeAlso": "http://www.getty.edu/research/tools/vocabulary/tgn/index.html".freeze,
|
942
942
|
type: "http://purl.org/dc/dcam/VocabularyEncodingScheme".freeze
|
943
943
|
term :UDC,
|
944
944
|
comment: %(The set of conceptual resources specified by the Universal Decimal Classification.).freeze,
|
945
|
-
|
946
|
-
|
947
|
-
|
945
|
+
"dc:hasVersion": "http://dublincore.org/usage/terms/history/#UDC-003".freeze,
|
946
|
+
"dc:issued": "2000-07-11".freeze,
|
947
|
+
"dc:modified": "2008-01-14".freeze,
|
948
|
+
isDefinedBy: "dc:".freeze,
|
948
949
|
label: "UDC".freeze,
|
949
|
-
|
950
|
-
:"rdfs:seeAlso" => %(http://www.udcc.org/).freeze,
|
950
|
+
"rdfs:seeAlso": "http://www.udcc.org/".freeze,
|
951
951
|
type: "http://purl.org/dc/dcam/VocabularyEncodingScheme".freeze
|
952
952
|
end
|
953
953
|
end
|