rdf-vocab 3.1.1 → 3.1.7
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/LICENSE +1 -1
- data/README.md +69 -45
- data/VERSION +1 -1
- data/lib/rdf/vocab.rb +55 -39
- data/lib/rdf/vocab/acl.rb +84 -1
- data/lib/rdf/vocab/as.rb +466 -1
- data/lib/rdf/vocab/bf2.rb +1317 -1
- data/lib/rdf/vocab/bibframe.rb +1 -2
- data/lib/rdf/vocab/bibo.rb +496 -1
- data/lib/rdf/vocab/cc.rb +107 -1
- data/lib/rdf/vocab/cert.rb +68 -1
- data/lib/rdf/vocab/cnt.rb +79 -1
- data/lib/rdf/vocab/crm.rb +1303 -1
- data/lib/rdf/vocab/datacite.rb +1 -1
- data/lib/rdf/vocab/dbo.rb +10463 -1
- data/lib/rdf/vocab/dc.rb +470 -301
- data/lib/rdf/vocab/dc11.rb +88 -57
- data/lib/rdf/vocab/dcat.rb +153 -5
- data/lib/rdf/vocab/dcmitype.rb +51 -25
- data/lib/rdf/vocab/disco.rb +228 -1
- data/lib/rdf/vocab/doap.rb +175 -1
- data/lib/rdf/vocab/dwc.rb +753 -1
- data/lib/rdf/vocab/earl.rb +324 -0
- data/lib/rdf/vocab/ebucore.rb +7335 -1974
- data/lib/rdf/vocab/edm.rb +150 -1
- data/lib/rdf/vocab/exif.rb +650 -1
- data/lib/rdf/vocab/extensions.rb +265 -212
- data/lib/rdf/vocab/fcrepo4.rb +377 -1
- data/lib/rdf/vocab/foaf.rb +305 -1
- data/lib/rdf/vocab/geo.rb +39 -1
- data/lib/rdf/vocab/geojson.rb +66 -1
- data/lib/rdf/vocab/geonames.rb +166 -1
- data/lib/rdf/vocab/gr.rb +684 -1
- data/lib/rdf/vocab/gs1.rb +1597 -1
- data/lib/rdf/vocab/ht.rb +164 -1
- data/lib/rdf/vocab/hydra.rb +238 -4
- data/lib/rdf/vocab/iana.rb +230 -1
- data/lib/rdf/vocab/ical.rb +462 -1
- data/lib/rdf/vocab/identifiers.rb +462 -1
- data/lib/rdf/vocab/iiif.rb +136 -1
- data/lib/rdf/vocab/jsonld.rb +147 -3
- data/lib/rdf/vocab/ldp.rb +130 -1
- data/lib/rdf/vocab/lrmi.rb +69 -1
- data/lib/rdf/vocab/ma.rb +381 -1
- data/lib/rdf/vocab/mads.rb +610 -22
- data/lib/rdf/vocab/{marc_relators.rb → marcrelators.rb} +809 -1
- data/lib/rdf/vocab/mo.rb +919 -1
- data/lib/rdf/vocab/mods.rb +516 -1
- data/lib/rdf/vocab/nfo.rb +1 -1
- data/lib/rdf/vocab/oa.rb +275 -1
- data/lib/rdf/vocab/og.rb +100 -1
- data/lib/rdf/vocab/ogc.rb +34 -1
- data/lib/rdf/vocab/ore.rb +56 -1
- data/lib/rdf/vocab/org.rb +189 -1
- data/lib/rdf/vocab/pcdm.rb +47 -1
- data/lib/rdf/vocab/pplan.rb +64 -1
- data/lib/rdf/vocab/premis.rb +1266 -779
- data/lib/rdf/vocab/{premis_event_type.rb → premiseventtype.rb} +155 -1
- data/lib/rdf/vocab/prov.rb +619 -1
- data/lib/rdf/vocab/ptr.rb +138 -1
- data/lib/rdf/vocab/rightsstatements.rb +5 -1
- data/lib/rdf/vocab/rsa.rb +30 -1
- data/lib/rdf/vocab/rss.rb +42 -1
- data/lib/rdf/vocab/schema.rb +12470 -804
- data/lib/rdf/vocab/sd.rb +372 -0
- data/lib/rdf/vocab/sh.rb +736 -1
- data/lib/rdf/vocab/sioc.rb +401 -1
- data/lib/rdf/vocab/{sioc_services.rb → siocservices.rb} +38 -1
- data/lib/rdf/vocab/{sioct.rb → sioctypes.rb} +158 -1
- data/lib/rdf/vocab/skos.rb +119 -1
- data/lib/rdf/vocab/skosxl.rb +30 -1
- data/lib/rdf/vocab/v.rb +291 -1
- data/lib/rdf/vocab/vcard.rb +508 -1
- data/lib/rdf/vocab/vmd.rb +291 -1
- data/lib/rdf/vocab/void.rb +121 -1
- data/lib/rdf/vocab/vs.rb +19 -1
- data/lib/rdf/vocab/wdrs.rb +90 -1
- data/lib/rdf/vocab/wot.rb +78 -1
- data/lib/rdf/vocab/xhtml.rb +2 -1
- data/lib/rdf/vocab/xhv.rb +338 -1
- data/lib/rdf/vocab/xkos.rb +150 -1
- data/spec/extensions_spec.rb +68 -0
- data/spec/vocab_spec.rb +10 -0
- metadata +16 -8
data/lib/rdf/vocab/dc11.rb
CHANGED
@@ -5,9 +5,71 @@ require 'rdf'
|
|
5
5
|
module RDF::Vocab
|
6
6
|
# @!parse
|
7
7
|
# # Vocabulary for <http://purl.org/dc/elements/1.1/>
|
8
|
+
# #
|
9
|
+
# # Dublin Core Metadata Element Set, Version 1.1
|
8
10
|
# class DC11 < RDF::StrictVocabulary
|
11
|
+
# # An entity responsible for making contributions to the resource.
|
12
|
+
# # @return [RDF::Vocabulary::Term]
|
13
|
+
# attr_reader :contributor
|
14
|
+
#
|
15
|
+
# # The spatial or temporal topic of the resource, spatial applicability of the resource, or jurisdiction under which the resource is relevant.
|
16
|
+
# # @return [RDF::Vocabulary::Term]
|
17
|
+
# attr_reader :coverage
|
18
|
+
#
|
19
|
+
# # An entity primarily responsible for making the resource.
|
20
|
+
# # @return [RDF::Vocabulary::Term]
|
21
|
+
# attr_reader :creator
|
22
|
+
#
|
23
|
+
# # A point or period of time associated with an event in the lifecycle of the resource.
|
24
|
+
# # @return [RDF::Vocabulary::Term]
|
25
|
+
# attr_reader :date
|
26
|
+
#
|
27
|
+
# # An account of the resource.
|
28
|
+
# # @return [RDF::Vocabulary::Term]
|
29
|
+
# attr_reader :description
|
30
|
+
#
|
31
|
+
# # The file format, physical medium, or dimensions of the resource.
|
32
|
+
# # @return [RDF::Vocabulary::Term]
|
33
|
+
# attr_reader :format
|
34
|
+
#
|
35
|
+
# # An unambiguous reference to the resource within a given context.
|
36
|
+
# # @return [RDF::Vocabulary::Term]
|
37
|
+
# attr_reader :identifier
|
38
|
+
#
|
39
|
+
# # A language of the resource.
|
40
|
+
# # @return [RDF::Vocabulary::Term]
|
41
|
+
# attr_reader :language
|
42
|
+
#
|
43
|
+
# # An entity responsible for making the resource available.
|
44
|
+
# # @return [RDF::Vocabulary::Term]
|
45
|
+
# attr_reader :publisher
|
46
|
+
#
|
47
|
+
# # A related resource.
|
48
|
+
# # @return [RDF::Vocabulary::Term]
|
49
|
+
# attr_reader :relation
|
50
|
+
#
|
51
|
+
# # Information about rights held in and over the resource.
|
52
|
+
# # @return [RDF::Vocabulary::Term]
|
53
|
+
# attr_reader :rights
|
54
|
+
#
|
55
|
+
# # A related resource from which the described resource is derived.
|
56
|
+
# # @return [RDF::Vocabulary::Term]
|
57
|
+
# attr_reader :source
|
58
|
+
#
|
59
|
+
# # The topic of the resource.
|
60
|
+
# # @return [RDF::Vocabulary::Term]
|
61
|
+
# attr_reader :subject
|
62
|
+
#
|
63
|
+
# # A name given to the resource.
|
64
|
+
# # @return [RDF::Vocabulary::Term]
|
65
|
+
# attr_reader :title
|
66
|
+
#
|
67
|
+
# # The nature or genre of the resource.
|
68
|
+
# # @return [RDF::Vocabulary::Term]
|
69
|
+
# attr_reader :type
|
70
|
+
#
|
9
71
|
# end
|
10
|
-
|
72
|
+
DC11 = Class.new(RDF::StrictVocabulary("http://purl.org/dc/elements/1.1/")) do
|
11
73
|
|
12
74
|
# Ontology definition
|
13
75
|
ontology :"http://purl.org/dc/elements/1.1/",
|
@@ -18,153 +80,122 @@ module RDF::Vocab
|
|
18
80
|
# Property definitions
|
19
81
|
property :contributor,
|
20
82
|
comment: %(An entity responsible for making contributions to the resource.).freeze,
|
21
|
-
"dc:description": "
|
22
|
-
"dc:hasVersion": "http://dublincore.org/usage/terms/history/#contributor-006".freeze,
|
83
|
+
"dc:description": "The guidelines for using names of persons or organizations as creators also apply to contributors. Typically, the name of a Contributor should be used to indicate the entity.".freeze,
|
23
84
|
"dc:issued": "1999-07-02".freeze,
|
24
|
-
"dc:modified": "2008-01-14".freeze,
|
25
85
|
isDefinedBy: "dc11:".freeze,
|
26
86
|
label: "Contributor".freeze,
|
27
|
-
note: %(A second property with the same name as this property has been declared in the dcterms: namespace
|
87
|
+
note: %(A [second property]\(/specifications/dublin-core/dcmi-terms/#http://purl.org/dc/terms/contributor\) with the same name as this property has been declared in the [dcterms: namespace]\(http://purl.org/dc/terms/\). See the Introduction to the document [DCMI Metadata Terms]\(/specifications/dublin-core/dcmi-terms/\) for an explanation.).freeze,
|
28
88
|
type: "rdf:Property".freeze
|
29
89
|
property :coverage,
|
30
|
-
comment: %(The spatial or temporal topic of the resource,
|
31
|
-
"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
|
32
|
-
"dc:hasVersion": "http://dublincore.org/usage/terms/history/#coverage-006".freeze,
|
90
|
+
comment: %(The spatial or temporal topic of the resource, spatial applicability of the resource, or jurisdiction under which the resource is relevant.).freeze,
|
91
|
+
"dc:description": "Spatial topic and spatial applicability may be a named place or a location specified by its geographic coordinates. Temporal topic may be a named period, date, or date range. A jurisdiction may be a named administrative entity or a geographic place to which the resource applies. Recommended practice is to use a controlled vocabulary such as the Getty Thesaurus of Geographic Names [[TGN](https://www.getty.edu/research/tools/vocabulary/tgn/index.html)]. Where appropriate, named places or time periods may be used in preference to numeric identifiers such as sets of coordinates or date ranges.".freeze,
|
33
92
|
"dc:issued": "1999-07-02".freeze,
|
34
|
-
"dc:modified": "2008-01-14".freeze,
|
35
93
|
isDefinedBy: "dc11:".freeze,
|
36
94
|
label: "Coverage".freeze,
|
37
|
-
note: %(A second property with the same name as this property has been declared in the dcterms: namespace
|
95
|
+
note: %(A [second property]\(/specifications/dublin-core/dcmi-terms/#http://purl.org/dc/terms/coverage\) with the same name as this property has been declared in the [dcterms: namespace]\(http://purl.org/dc/terms/\). See the Introduction to the document [DCMI Metadata Terms]\(/specifications/dublin-core/dcmi-terms/\) for an explanation.).freeze,
|
38
96
|
type: "rdf:Property".freeze
|
39
97
|
property :creator,
|
40
98
|
comment: %(An entity primarily responsible for making the resource.).freeze,
|
41
99
|
"dc:description": "Examples of a Creator include a person, an organization, or a service. Typically, the name of a Creator should be used to indicate the entity.".freeze,
|
42
|
-
"dc:hasVersion": "http://dublincore.org/usage/terms/history/#creator-006".freeze,
|
43
100
|
"dc:issued": "1999-07-02".freeze,
|
44
|
-
"dc:modified": "2008-01-14".freeze,
|
45
101
|
isDefinedBy: "dc11:".freeze,
|
46
102
|
label: "Creator".freeze,
|
47
|
-
note: %(A second property with the same name as this property has been declared in the dcterms: namespace
|
103
|
+
note: %(A [second property]\(/specifications/dublin-core/dcmi-terms/#http://purl.org/dc/terms/creator\) with the same name as this property has been declared in the [dcterms: namespace]\(http://purl.org/dc/terms/\). See the Introduction to the document [DCMI Metadata Terms]\(/specifications/dublin-core/dcmi-terms/\) for an explanation.).freeze,
|
48
104
|
type: "rdf:Property".freeze
|
49
105
|
property :date,
|
50
106
|
comment: %(A point or period of time associated with an event in the lifecycle of the resource.).freeze,
|
51
|
-
"dc:description": "Date may be used to express temporal information at any level of granularity. Recommended
|
52
|
-
"dc:hasVersion": "http://dublincore.org/usage/terms/history/#date-006".freeze,
|
107
|
+
"dc:description": "Date may be used to express temporal information at any level of granularity. Recommended practice is to express the date, date/time, or period of time according to ISO 8601-1 [[ISO 8601-1](https://www.iso.org/iso-8601-date-and-time-format.html)] or a published profile of the ISO standard, such as the W3C Note on Date and Time Formats [[W3CDTF](https://www.w3.org/TR/NOTE-datetime)] or the Extended Date/Time Format Specification [[EDTF](http://www.loc.gov/standards/datetime/)]. If the full date is unknown, month and year (YYYY-MM) or just year (YYYY) may be used. Date ranges may be specified using ISO 8601 period of time specification in which start and end dates are separated by a '/' (slash) character. Either the start or end date may be missing.".freeze,
|
53
108
|
"dc:issued": "1999-07-02".freeze,
|
54
|
-
"dc:modified": "2008-01-14".freeze,
|
55
109
|
isDefinedBy: "dc11:".freeze,
|
56
110
|
label: "Date".freeze,
|
57
|
-
note: %(A second property with the same name as this property has been declared in the dcterms: namespace
|
111
|
+
note: %(A [second property]\(/specifications/dublin-core/dcmi-terms/#http://purl.org/dc/terms/date\) with the same name as this property has been declared in the [dcterms: namespace]\(http://purl.org/dc/terms/\). See the Introduction to the document [DCMI Metadata Terms]\(/specifications/dublin-core/dcmi-terms/\) for an explanation.).freeze,
|
58
112
|
type: "rdf:Property".freeze
|
59
113
|
property :description,
|
60
114
|
comment: %(An account of the resource.).freeze,
|
61
115
|
"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,
|
62
|
-
"dc:hasVersion": "http://dublincore.org/usage/terms/history/#description-006".freeze,
|
63
116
|
"dc:issued": "1999-07-02".freeze,
|
64
|
-
"dc:modified": "2008-01-14".freeze,
|
65
117
|
isDefinedBy: "dc11:".freeze,
|
66
118
|
label: "Description".freeze,
|
67
|
-
note: %(A second property with the same name as this property has been declared in the dcterms: namespace
|
119
|
+
note: %(A [second property]\(/specifications/dublin-core/dcmi-terms/#http://purl.org/dc/terms/description\) with the same name as this property has been declared in the [dcterms: namespace]\(http://purl.org/dc/terms/\). See the Introduction to the document [DCMI Metadata Terms]\(/specifications/dublin-core/dcmi-terms/\) for an explanation.).freeze,
|
68
120
|
type: "rdf:Property".freeze
|
69
121
|
property :format,
|
70
122
|
comment: %(The file format, physical medium, or dimensions of the resource.).freeze,
|
71
|
-
"dc:description": "
|
72
|
-
"dc:hasVersion": "http://dublincore.org/usage/terms/history/#format-007".freeze,
|
123
|
+
"dc:description": "Recommended practice is to use a controlled vocabulary where available. For example, for file formats one could use the list of Internet Media Types [[MIME](https://www.iana.org/assignments/media-types/media-types.xhtml)].".freeze,
|
73
124
|
"dc:issued": "1999-07-02".freeze,
|
74
|
-
"dc:modified": "2008-01-14".freeze,
|
75
125
|
isDefinedBy: "dc11:".freeze,
|
76
126
|
label: "Format".freeze,
|
77
|
-
note: %(A second property with the same name as this property has been declared in the dcterms: namespace
|
127
|
+
note: %(A [second property]\(/specifications/dublin-core/dcmi-terms/#http://purl.org/dc/terms/format\) with the same name as this property has been declared in the [dcterms: namespace]\(http://purl.org/dc/terms/\). See the Introduction to the document [DCMI Metadata Terms]\(/specifications/dublin-core/dcmi-terms/\) for an explanation.).freeze,
|
78
128
|
type: "rdf:Property".freeze
|
79
129
|
property :identifier,
|
80
130
|
comment: %(An unambiguous reference to the resource within a given context.).freeze,
|
81
|
-
"dc:description": "Recommended
|
82
|
-
"dc:hasVersion": "http://dublincore.org/usage/terms/history/#identifier-006".freeze,
|
131
|
+
"dc:description": "Recommended practice is to identify the resource by means of a string conforming to an identification system.".freeze,
|
83
132
|
"dc:issued": "1999-07-02".freeze,
|
84
|
-
"dc:modified": "2008-01-14".freeze,
|
85
133
|
isDefinedBy: "dc11:".freeze,
|
86
134
|
label: "Identifier".freeze,
|
87
|
-
note: %(A second property with the same name as this property has been declared in the dcterms: namespace
|
135
|
+
note: %(A [second property]\(/specifications/dublin-core/dcmi-terms/#http://purl.org/dc/terms/identifier\) with the same name as this property has been declared in the [dcterms: namespace]\(http://purl.org/dc/terms/\). See the Introduction to the document [DCMI Metadata Terms]\(/specifications/dublin-core/dcmi-terms/\) for an explanation.).freeze,
|
88
136
|
type: "rdf:Property".freeze
|
89
137
|
property :language,
|
90
138
|
comment: %(A language of the resource.).freeze,
|
91
|
-
"dc:description": "Recommended
|
92
|
-
"dc:hasVersion": "http://dublincore.org/usage/terms/history/#language-007".freeze,
|
139
|
+
"dc:description": "Recommended practice is to use either a non-literal value representing a language from a controlled vocabulary such as ISO 639-2 or ISO 639-3, or a literal value consisting of an IETF Best Current Practice 47 [[IETF-BCP47](https://tools.ietf.org/html/bcp47)] language tag.".freeze,
|
93
140
|
"dc:issued": "1999-07-02".freeze,
|
94
|
-
"dc:modified": "2008-01-14".freeze,
|
95
141
|
isDefinedBy: "dc11:".freeze,
|
96
142
|
label: "Language".freeze,
|
97
|
-
note: %(A second property with the same name as this property has been declared in the dcterms: namespace
|
98
|
-
"rdfs:seeAlso": "http://www.ietf.org/rfc/rfc4646.txt".freeze,
|
143
|
+
note: %(A [second property]\(/specifications/dublin-core/dcmi-terms/#http://purl.org/dc/terms/language\) with the same name as this property has been declared in the [dcterms: namespace]\(http://purl.org/dc/terms/\). See the Introduction to the document [DCMI Metadata Terms]\(/specifications/dublin-core/dcmi-terms/\) for an explanation.).freeze,
|
99
144
|
type: "rdf:Property".freeze
|
100
145
|
property :publisher,
|
101
146
|
comment: %(An entity responsible for making the resource available.).freeze,
|
102
147
|
"dc:description": "Examples of a Publisher include a person, an organization, or a service. Typically, the name of a Publisher should be used to indicate the entity.".freeze,
|
103
|
-
"dc:hasVersion": "http://dublincore.org/usage/terms/history/#publisher-006".freeze,
|
104
148
|
"dc:issued": "1999-07-02".freeze,
|
105
|
-
"dc:modified": "2008-01-14".freeze,
|
106
149
|
isDefinedBy: "dc11:".freeze,
|
107
150
|
label: "Publisher".freeze,
|
108
|
-
note: %(A second property with the same name as this property has been declared in the dcterms: namespace
|
151
|
+
note: %(A [second property]\(/specifications/dublin-core/dcmi-terms/#http://purl.org/dc/terms/publisher\) with the same name as this property has been declared in the [dcterms: namespace]\(http://purl.org/dc/terms/\). See the Introduction to the document [DCMI Metadata Terms]\(/specifications/dublin-core/dcmi-terms/\) for an explanation.).freeze,
|
109
152
|
type: "rdf:Property".freeze
|
110
153
|
property :relation,
|
111
154
|
comment: %(A related resource.).freeze,
|
112
|
-
"dc:description": "Recommended
|
113
|
-
"dc:hasVersion": "http://dublincore.org/usage/terms/history/#relation-006".freeze,
|
155
|
+
"dc:description": "Recommended practice is to identify the related resource by means of a URI. If this is not possible or feasible, a string conforming to a formal identification system may be provided.".freeze,
|
114
156
|
"dc:issued": "1999-07-02".freeze,
|
115
|
-
"dc:modified": "2008-01-14".freeze,
|
116
157
|
isDefinedBy: "dc11:".freeze,
|
117
158
|
label: "Relation".freeze,
|
118
|
-
note: %(A second property with the same name as this property has been declared in the dcterms: namespace
|
159
|
+
note: %(A [second property]\(/specifications/dublin-core/dcmi-terms/#http://purl.org/dc/terms/relation\) with the same name as this property has been declared in the [dcterms: namespace]\(http://purl.org/dc/terms/\). See the Introduction to the document [DCMI Metadata Terms]\(/specifications/dublin-core/dcmi-terms/\) for an explanation.).freeze,
|
119
160
|
type: "rdf:Property".freeze
|
120
161
|
property :rights,
|
121
162
|
comment: %(Information about rights held in and over the resource.).freeze,
|
122
163
|
"dc:description": "Typically, rights information includes a statement about various property rights associated with the resource, including intellectual property rights.".freeze,
|
123
|
-
"dc:hasVersion": "http://dublincore.org/usage/terms/history/#rights-006".freeze,
|
124
164
|
"dc:issued": "1999-07-02".freeze,
|
125
|
-
"dc:modified": "2008-01-14".freeze,
|
126
165
|
isDefinedBy: "dc11:".freeze,
|
127
166
|
label: "Rights".freeze,
|
128
|
-
note: %(A second property with the same name as this property has been declared in the dcterms: namespace
|
167
|
+
note: %(A [second property]\(/specifications/dublin-core/dcmi-terms/#http://purl.org/dc/terms/rights\) with the same name as this property has been declared in the [dcterms: namespace]\(http://purl.org/dc/terms/\). See the Introduction to the document [DCMI Metadata Terms]\(/specifications/dublin-core/dcmi-terms/\) for an explanation.).freeze,
|
129
168
|
type: "rdf:Property".freeze
|
130
169
|
property :source,
|
131
170
|
comment: %(A related resource from which the described resource is derived.).freeze,
|
132
171
|
"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,
|
133
|
-
"dc:hasVersion": "http://dublincore.org/usage/terms/history/#source-006".freeze,
|
134
172
|
"dc:issued": "1999-07-02".freeze,
|
135
|
-
"dc:modified": "2008-01-14".freeze,
|
136
173
|
isDefinedBy: "dc11:".freeze,
|
137
174
|
label: "Source".freeze,
|
138
|
-
note: %(A second property with the same name as this property has been declared in the dcterms: namespace
|
175
|
+
note: %(A [second property]\(/specifications/dublin-core/dcmi-terms/#http://purl.org/dc/terms/source\) with the same name as this property has been declared in the [dcterms: namespace]\(http://purl.org/dc/terms/\). See the Introduction to the document [DCMI Metadata Terms]\(/specifications/dublin-core/dcmi-terms/\) for an explanation.).freeze,
|
139
176
|
type: "rdf:Property".freeze
|
140
177
|
property :subject,
|
141
178
|
comment: %(The topic of the resource.).freeze,
|
142
|
-
"dc:description": "Typically, the subject will be represented using keywords, key phrases, or classification codes.
|
143
|
-
"dc:hasVersion": "http://dublincore.org/usage/terms/history/#subject-007".freeze,
|
179
|
+
"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,
|
144
180
|
"dc:issued": "1999-07-02".freeze,
|
145
|
-
"dc:modified": "2012-06-14".freeze,
|
146
181
|
isDefinedBy: "dc11:".freeze,
|
147
182
|
label: "Subject".freeze,
|
148
|
-
note: %(A second property with the same name as this property has been declared in the dcterms: namespace
|
183
|
+
note: %(A [second property]\(/specifications/dublin-core/dcmi-terms/#http://purl.org/dc/terms/subject\) with the same name as this property has been declared in the [dcterms: namespace]\(http://purl.org/dc/terms/\). See the Introduction to the document [DCMI Metadata Terms]\(/specifications/dublin-core/dcmi-terms/\) for an explanation.).freeze,
|
149
184
|
type: "rdf:Property".freeze
|
150
185
|
property :title,
|
151
186
|
comment: %(A name given to the resource.).freeze,
|
152
|
-
"dc:hasVersion": "http://dublincore.org/usage/terms/history/#title-006".freeze,
|
153
187
|
"dc:issued": "1999-07-02".freeze,
|
154
|
-
"dc:modified": "2008-01-14".freeze,
|
155
188
|
isDefinedBy: "dc11:".freeze,
|
156
189
|
label: "Title".freeze,
|
157
|
-
note: %(A second property with the same name as this property has been declared in the dcterms: namespace
|
190
|
+
note: %(A [second property]\(/specifications/dublin-core/dcmi-terms/#http://purl.org/dc/terms/title\) with the same name as this property has been declared in the [dcterms: namespace]\(http://purl.org/dc/terms/\). See the Introduction to the document [DCMI Metadata Terms]\(/specifications/dublin-core/dcmi-terms/\) for an explanation.).freeze,
|
158
191
|
type: "rdf:Property".freeze
|
159
192
|
property :type,
|
160
193
|
comment: %(The nature or genre of the resource.).freeze,
|
161
|
-
"dc:description": "Recommended
|
162
|
-
"dc:hasVersion": "http://dublincore.org/usage/terms/history/#type-006".freeze,
|
194
|
+
"dc:description": "Recommended practice is to use a controlled vocabulary such as the DCMI Type Vocabulary [[DCMI-TYPE](http://dublincore.org/documents/dcmi-type-vocabulary/)]. To describe the file format, physical medium, or dimensions of the resource, use the Format element.".freeze,
|
163
195
|
"dc:issued": "1999-07-02".freeze,
|
164
|
-
"dc:modified": "2008-01-14".freeze,
|
165
196
|
isDefinedBy: "dc11:".freeze,
|
166
197
|
label: "Type".freeze,
|
167
|
-
note: %(A second property with the same name as this property has been declared in the dcterms: namespace
|
198
|
+
note: %(A [second property]\(/specifications/dublin-core/dcmi-terms/#http://purl.org/dc/terms/type\) with the same name as this property has been declared in the [dcterms: namespace]\(http://purl.org/dc/terms/\). See the Introduction to the document [DCMI Metadata Terms]\(/specifications/dublin-core/dcmi-terms/\) for an explanation.).freeze,
|
168
199
|
type: "rdf:Property".freeze
|
169
200
|
end
|
170
201
|
end
|
data/lib/rdf/vocab/dcat.rb
CHANGED
@@ -5,9 +5,157 @@ require 'rdf'
|
|
5
5
|
module RDF::Vocab
|
6
6
|
# @!parse
|
7
7
|
# # Vocabulary for <http://www.w3.org/ns/dcat#>
|
8
|
+
# #
|
9
|
+
# # The data catalog vocabulary
|
10
|
+
# #
|
11
|
+
# # DCAT is an RDF vocabulary designed to facilitate interoperability between data catalogs published on the Web. By using DCAT to describe datasets in data catalogs, publishers increase discoverability and enable applications easily to consume metadata from multiple catalogs. It further enables decentralized publishing of catalogs and facilitates federated dataset search across sites. Aggregated DCAT metadata can serve as a manifest file to facilitate digital preservation. DCAT is defined at http://www.w3.org/TR/vocab-dcat/. Any variance between that normative document and this schema is an error in this schema.
|
12
|
+
# # @version Questa è una copia aggiornata del vocabolario DCAT v2.0 disponibile in https://www.w3.org/ns/dcat.ttl
|
13
|
+
# # @version This is an updated copy of v2.0 of the DCAT vocabulary, taken from https://www.w3.org/ns/dcat.ttl
|
8
14
|
# class DCAT < RDF::StrictVocabulary
|
15
|
+
# # A curated collection of metadata about resources (e.g., datasets and data services in the context of a data catalog).
|
16
|
+
# # @return [RDF::Vocabulary::Term]
|
17
|
+
# attr_reader :Catalog
|
18
|
+
#
|
19
|
+
# # A record in a data catalog, describing the registration of a single dataset or data service.
|
20
|
+
# # @return [RDF::Vocabulary::Term]
|
21
|
+
# attr_reader :CatalogRecord
|
22
|
+
#
|
23
|
+
# # A site or end-point providing operations related to the discovery of, access to, or processing functions on, data or related resources.
|
24
|
+
# # @return [RDF::Vocabulary::Term]
|
25
|
+
# attr_reader :DataService
|
26
|
+
#
|
27
|
+
# # A collection of data, published or curated by a single source, and available for access or download in one or more represenations.
|
28
|
+
# # @return [RDF::Vocabulary::Term]
|
29
|
+
# attr_reader :Dataset
|
30
|
+
#
|
31
|
+
# # A specific representation of a dataset. A dataset might be available in multiple serializations that may differ in various ways, including natural language, media-type or format, schematic organization, temporal and spatial resolution, level of detail or profiles (which might specify any or all of the above).
|
32
|
+
# # @return [RDF::Vocabulary::Term]
|
33
|
+
# attr_reader :Distribution
|
34
|
+
#
|
35
|
+
# # An association class for attaching additional information to a relationship between DCAT Resources.
|
36
|
+
# # @return [RDF::Vocabulary::Term]
|
37
|
+
# attr_reader :Relationship
|
38
|
+
#
|
39
|
+
# # Resource published or curated by a single agent.
|
40
|
+
# # @return [RDF::Vocabulary::Term]
|
41
|
+
# attr_reader :Resource
|
42
|
+
#
|
43
|
+
# # A role is the function of a resource or agent with respect to another resource, in the context of resource attribution or resource relationships.
|
44
|
+
# # @return [RDF::Vocabulary::Term]
|
45
|
+
# attr_reader :Role
|
46
|
+
#
|
47
|
+
# # A site or end-point that gives access to the distribution of the dataset.
|
48
|
+
# # @return [RDF::Vocabulary::Term]
|
49
|
+
# attr_reader :accessService
|
50
|
+
#
|
51
|
+
# # A URL of a resource that gives access to a distribution of the dataset. E.g. landing page, feed, SPARQL endpoint. Use for all cases except a simple download link, in which case downloadURL is preferred.
|
52
|
+
# # @return [RDF::Vocabulary::Term]
|
53
|
+
# attr_reader :accessURL
|
54
|
+
#
|
55
|
+
# # @return [RDF::Vocabulary::Term]
|
56
|
+
# attr_reader :bbox
|
57
|
+
#
|
58
|
+
# # The size of a distribution in bytes.
|
59
|
+
# # @return [RDF::Vocabulary::Term]
|
60
|
+
# attr_reader :byteSize
|
61
|
+
#
|
62
|
+
# # A catalog whose contents are of interest in the context of this catalog.
|
63
|
+
# # @return [RDF::Vocabulary::Term]
|
64
|
+
# attr_reader :catalog
|
65
|
+
#
|
66
|
+
# # @return [RDF::Vocabulary::Term]
|
67
|
+
# attr_reader :centroid
|
68
|
+
#
|
69
|
+
# # The compression format of the distribution in which the data is contained in a compressed form, e.g. to reduce the size of the downloadable file.
|
70
|
+
# # @return [RDF::Vocabulary::Term]
|
71
|
+
# attr_reader :compressFormat
|
72
|
+
#
|
73
|
+
# # Relevant contact information for the catalogued resource. Use of vCard is recommended.
|
74
|
+
# # @return [RDF::Vocabulary::Term]
|
75
|
+
# attr_reader :contactPoint
|
76
|
+
#
|
77
|
+
# # A collection of data that is listed in the catalog.
|
78
|
+
# # @return [RDF::Vocabulary::Term]
|
79
|
+
# attr_reader :dataset
|
80
|
+
#
|
81
|
+
# # An available distribution of the dataset.
|
82
|
+
# # @return [RDF::Vocabulary::Term]
|
83
|
+
# attr_reader :distribution
|
84
|
+
#
|
85
|
+
# # The URL of the downloadable file in a given format. E.g. CSV file or RDF file. The format is indicated by the distribution's dct:format and/or dcat:mediaType.
|
86
|
+
# # @return [RDF::Vocabulary::Term]
|
87
|
+
# attr_reader :downloadURL
|
88
|
+
#
|
89
|
+
# # @return [RDF::Vocabulary::Term]
|
90
|
+
# attr_reader :endDate
|
91
|
+
#
|
92
|
+
# # A description of the service end-point, including its operations, parameters etc.
|
93
|
+
# # @return [RDF::Vocabulary::Term]
|
94
|
+
# attr_reader :endpointDescription
|
95
|
+
#
|
96
|
+
# # The root location or primary endpoint of the service (a web-resolvable IRI).
|
97
|
+
# # @return [RDF::Vocabulary::Term]
|
98
|
+
# attr_reader :endpointURL
|
99
|
+
#
|
100
|
+
# # The function of an entity or agent with respect to another entity or resource.
|
101
|
+
# # @return [RDF::Vocabulary::Term]
|
102
|
+
# attr_reader :hadRole
|
103
|
+
#
|
104
|
+
# # A keyword or tag describing a resource.
|
105
|
+
# # @return [RDF::Vocabulary::Term]
|
106
|
+
# attr_reader :keyword
|
107
|
+
#
|
108
|
+
# # A Web page that can be navigated to in a Web browser to gain access to the catalog, a dataset, its distributions and/or additional information.
|
109
|
+
# # @return [RDF::Vocabulary::Term]
|
110
|
+
# attr_reader :landingPage
|
111
|
+
#
|
112
|
+
# # The media type of the distribution as defined by IANA
|
113
|
+
# # @return [RDF::Vocabulary::Term]
|
114
|
+
# attr_reader :mediaType
|
115
|
+
#
|
116
|
+
# # The package format of the distribution in which one or more data files are grouped together, e.g. to enable a set of related files to be downloaded together.
|
117
|
+
# # @return [RDF::Vocabulary::Term]
|
118
|
+
# attr_reader :packageFormat
|
119
|
+
#
|
120
|
+
# # Link to a description of a relationship with another resource.
|
121
|
+
# # @return [RDF::Vocabulary::Term]
|
122
|
+
# attr_reader :qualifiedRelation
|
123
|
+
#
|
124
|
+
# # A record describing the registration of a single dataset or data service that is part of the catalog.
|
125
|
+
# # @return [RDF::Vocabulary::Term]
|
126
|
+
# attr_reader :record
|
127
|
+
#
|
128
|
+
# # A collection of data that this DataService can distribute.
|
129
|
+
# # @return [RDF::Vocabulary::Term]
|
130
|
+
# attr_reader :servesDataset
|
131
|
+
#
|
132
|
+
# # A site or endpoint that is listed in the catalog.
|
133
|
+
# # @return [RDF::Vocabulary::Term]
|
134
|
+
# attr_reader :service
|
135
|
+
#
|
136
|
+
# # minimum spatial separation resolvable in a dataset, measured in meters.
|
137
|
+
# #
|
138
|
+
# # minimum spatial separation resolvable in a dataset, measured in metres.
|
139
|
+
# # @return [RDF::Vocabulary::Term]
|
140
|
+
# attr_reader :spatialResolutionInMeters
|
141
|
+
#
|
142
|
+
# # @return [RDF::Vocabulary::Term]
|
143
|
+
# attr_reader :startDate
|
144
|
+
#
|
145
|
+
# # minimum time period resolvable in a dataset.
|
146
|
+
# # @return [RDF::Vocabulary::Term]
|
147
|
+
# attr_reader :temporalResolution
|
148
|
+
#
|
149
|
+
# # A main category of the resource. A resource can have multiple themes.
|
150
|
+
# # @return [RDF::Vocabulary::Term]
|
151
|
+
# attr_reader :theme
|
152
|
+
#
|
153
|
+
# # The knowledge organization system (KOS) used to classify catalog's datasets.
|
154
|
+
# # @return [RDF::Vocabulary::Term]
|
155
|
+
# attr_reader :themeTaxonomy
|
156
|
+
#
|
9
157
|
# end
|
10
|
-
|
158
|
+
DCAT = Class.new(RDF::StrictVocabulary("http://www.w3.org/ns/dcat#")) do
|
11
159
|
|
12
160
|
# Ontology definition
|
13
161
|
ontology :"http://www.w3.org/ns/dcat#",
|
@@ -41,7 +189,7 @@ module RDF::Vocab
|
|
41
189
|
"foaf:name": "Jakub Klímek".freeze,
|
42
190
|
"rdfs:seeAlso": "https://jakub.klímek.com/#me".freeze
|
43
191
|
), term(
|
44
|
-
"foaf:homepage": ["http://www.imati.cnr.it/index.php/people/8-curricula/178-riccardo-albertoni".freeze
|
192
|
+
"foaf:homepage": ["https://w3id.org/people/ralbertoni/".freeze,"http://www.imati.cnr.it/index.php/people/8-curricula/178-riccardo-albertoni".freeze],
|
45
193
|
"foaf:name": "Riccardo Albertoni".freeze,
|
46
194
|
"rdfs:seeAlso": "https://orcid.org/0000-0001-5648-2713".freeze
|
47
195
|
), term(
|
@@ -89,7 +237,7 @@ module RDF::Vocab
|
|
89
237
|
), term(
|
90
238
|
"foaf:name": "John Erickson".freeze
|
91
239
|
)],
|
92
|
-
"dc:license": "https://
|
240
|
+
"dc:license": "https://creativecommons.org/licenses/by/4.0/".freeze,
|
93
241
|
"dc:modified": ["2012-04-24".freeze, "2013-09-20".freeze, "2013-11-28".freeze, "2017-12-19".freeze, "2019".freeze],
|
94
242
|
editorialNote: %(English language definitions updated in this revision in line with ED. Multilingual text unevenly updated.).freeze,
|
95
243
|
"foaf:maker": term(
|
@@ -103,8 +251,8 @@ module RDF::Vocab
|
|
103
251
|
|
104
252
|
# Class definitions
|
105
253
|
term :Catalog,
|
106
|
-
comment: %(A curated collection of metadata about datasets and data services).freeze,
|
107
|
-
definition: %(A curated collection of metadata about datasets and data services.).freeze,
|
254
|
+
comment: %(A curated collection of metadata about resources \(e.g., datasets and data services in the context of a data catalog\).).freeze,
|
255
|
+
definition: %(A curated collection of metadata about resources \(e.g., datasets and data services in the context of a data catalog\).).freeze,
|
108
256
|
editorialNote: %(English, Italian, Spanish definitions updated in this revision. Multilingual text not yet updated.).freeze,
|
109
257
|
isDefinedBy: "http://www.w3.org/TR/vocab-dcat/".freeze,
|
110
258
|
label: "Catalog".freeze,
|
data/lib/rdf/vocab/dcmitype.rb
CHANGED
@@ -5,9 +5,59 @@ require 'rdf'
|
|
5
5
|
module RDF::Vocab
|
6
6
|
# @!parse
|
7
7
|
# # Vocabulary for <http://purl.org/dc/dcmitype/>
|
8
|
+
# #
|
9
|
+
# # DCMI Type Vocabulary
|
8
10
|
# class DCMIType < RDF::StrictVocabulary
|
11
|
+
# # An aggregation of resources.
|
12
|
+
# # @return [RDF::Vocabulary::Term]
|
13
|
+
# attr_reader :Collection
|
14
|
+
#
|
15
|
+
# # Data encoded in a defined structure.
|
16
|
+
# # @return [RDF::Vocabulary::Term]
|
17
|
+
# attr_reader :Dataset
|
18
|
+
#
|
19
|
+
# # A non-persistent, time-based occurrence.
|
20
|
+
# # @return [RDF::Vocabulary::Term]
|
21
|
+
# attr_reader :Event
|
22
|
+
#
|
23
|
+
# # A visual representation other than text.
|
24
|
+
# # @return [RDF::Vocabulary::Term]
|
25
|
+
# attr_reader :Image
|
26
|
+
#
|
27
|
+
# # A resource requiring interaction from the user to be understood, executed, or experienced.
|
28
|
+
# # @return [RDF::Vocabulary::Term]
|
29
|
+
# attr_reader :InteractiveResource
|
30
|
+
#
|
31
|
+
# # A series of visual representations imparting an impression of motion when shown in succession.
|
32
|
+
# # @return [RDF::Vocabulary::Term]
|
33
|
+
# attr_reader :MovingImage
|
34
|
+
#
|
35
|
+
# # An inanimate, three-dimensional object or substance.
|
36
|
+
# # @return [RDF::Vocabulary::Term]
|
37
|
+
# attr_reader :PhysicalObject
|
38
|
+
#
|
39
|
+
# # A system that provides one or more functions.
|
40
|
+
# # @return [RDF::Vocabulary::Term]
|
41
|
+
# attr_reader :Service
|
42
|
+
#
|
43
|
+
# # A computer program in source or compiled form.
|
44
|
+
# # @return [RDF::Vocabulary::Term]
|
45
|
+
# attr_reader :Software
|
46
|
+
#
|
47
|
+
# # A resource primarily intended to be heard.
|
48
|
+
# # @return [RDF::Vocabulary::Term]
|
49
|
+
# attr_reader :Sound
|
50
|
+
#
|
51
|
+
# # A static visual representation.
|
52
|
+
# # @return [RDF::Vocabulary::Term]
|
53
|
+
# attr_reader :StillImage
|
54
|
+
#
|
55
|
+
# # A resource consisting primarily of words for reading.
|
56
|
+
# # @return [RDF::Vocabulary::Term]
|
57
|
+
# attr_reader :Text
|
58
|
+
#
|
9
59
|
# end
|
10
|
-
|
60
|
+
DCMIType = Class.new(RDF::StrictVocabulary("http://purl.org/dc/dcmitype/")) do
|
11
61
|
|
12
62
|
# Ontology definition
|
13
63
|
ontology :"http://purl.org/dc/dcmitype/",
|
@@ -19,9 +69,7 @@ module RDF::Vocab
|
|
19
69
|
term :Collection,
|
20
70
|
comment: %(An aggregation of resources.).freeze,
|
21
71
|
"dc:description": "A collection is described as a group; its parts may also be separately described.".freeze,
|
22
|
-
"dc:hasVersion": "http://dublincore.org/usage/terms/history/#Collection-003".freeze,
|
23
72
|
"dc:issued": "2000-07-11".freeze,
|
24
|
-
"dc:modified": "2008-01-14".freeze,
|
25
73
|
"http://purl.org/dc/dcam/memberOf": "dc:DCMIType".freeze,
|
26
74
|
isDefinedBy: "dcmitype:".freeze,
|
27
75
|
label: "Collection".freeze,
|
@@ -29,9 +77,7 @@ module RDF::Vocab
|
|
29
77
|
term :Dataset,
|
30
78
|
comment: %(Data encoded in a defined structure.).freeze,
|
31
79
|
"dc:description": "Examples include lists, tables, and databases. A dataset may be useful for direct machine processing.".freeze,
|
32
|
-
"dc:hasVersion": "http://dublincore.org/usage/terms/history/#Dataset-003".freeze,
|
33
80
|
"dc:issued": "2000-07-11".freeze,
|
34
|
-
"dc:modified": "2008-01-14".freeze,
|
35
81
|
"http://purl.org/dc/dcam/memberOf": "dc:DCMIType".freeze,
|
36
82
|
isDefinedBy: "dcmitype:".freeze,
|
37
83
|
label: "Dataset".freeze,
|
@@ -39,9 +85,7 @@ module RDF::Vocab
|
|
39
85
|
term :Event,
|
40
86
|
comment: %(A non-persistent, time-based occurrence.).freeze,
|
41
87
|
"dc:description": "Metadata for an event provides descriptive information that is the basis for discovery of the purpose, location, duration, and responsible agents associated with an event. Examples include an exhibition, webcast, conference, workshop, open day, performance, battle, trial, wedding, tea party, conflagration.".freeze,
|
42
|
-
"dc:hasVersion": "http://dublincore.org/usage/terms/history/#Event-003".freeze,
|
43
88
|
"dc:issued": "2000-07-11".freeze,
|
44
|
-
"dc:modified": "2008-01-14".freeze,
|
45
89
|
"http://purl.org/dc/dcam/memberOf": "dc:DCMIType".freeze,
|
46
90
|
isDefinedBy: "dcmitype:".freeze,
|
47
91
|
label: "Event".freeze,
|
@@ -49,9 +93,7 @@ module RDF::Vocab
|
|
49
93
|
term :Image,
|
50
94
|
comment: %(A visual representation other than text.).freeze,
|
51
95
|
"dc:description": "Examples include images and photographs of physical objects, paintings, prints, drawings, other images and graphics, animations and moving pictures, film, diagrams, maps, musical notation. Note that Image may include both electronic and physical representations.".freeze,
|
52
|
-
"dc:hasVersion": "http://dublincore.org/usage/terms/history/#Image-004".freeze,
|
53
96
|
"dc:issued": "2000-07-11".freeze,
|
54
|
-
"dc:modified": "2008-01-14".freeze,
|
55
97
|
"http://purl.org/dc/dcam/memberOf": "dc:DCMIType".freeze,
|
56
98
|
isDefinedBy: "dcmitype:".freeze,
|
57
99
|
label: "Image".freeze,
|
@@ -59,9 +101,7 @@ module RDF::Vocab
|
|
59
101
|
term :InteractiveResource,
|
60
102
|
comment: %(A resource requiring interaction from the user to be understood, executed, or experienced.).freeze,
|
61
103
|
"dc:description": "Examples include forms on Web pages, applets, multimedia learning objects, chat services, or virtual reality environments.".freeze,
|
62
|
-
"dc:hasVersion": "http://dublincore.org/usage/terms/history/#InteractiveResource-003".freeze,
|
63
104
|
"dc:issued": "2000-07-11".freeze,
|
64
|
-
"dc:modified": "2008-01-14".freeze,
|
65
105
|
"http://purl.org/dc/dcam/memberOf": "dc:DCMIType".freeze,
|
66
106
|
isDefinedBy: "dcmitype:".freeze,
|
67
107
|
label: "Interactive Resource".freeze,
|
@@ -69,9 +109,7 @@ module RDF::Vocab
|
|
69
109
|
term :MovingImage,
|
70
110
|
comment: %(A series of visual representations imparting an impression of motion when shown in succession.).freeze,
|
71
111
|
"dc:description": "Examples include animations, movies, television programs, videos, zoetropes, or visual output from a simulation. Instances of the type Moving Image must also be describable as instances of the broader type Image.".freeze,
|
72
|
-
"dc:hasVersion": "http://dublincore.org/usage/terms/history/#MovingImage-003".freeze,
|
73
112
|
"dc:issued": "2003-11-18".freeze,
|
74
|
-
"dc:modified": "2008-01-14".freeze,
|
75
113
|
"http://purl.org/dc/dcam/memberOf": "dc:DCMIType".freeze,
|
76
114
|
isDefinedBy: "dcmitype:".freeze,
|
77
115
|
label: "Moving Image".freeze,
|
@@ -80,9 +118,7 @@ module RDF::Vocab
|
|
80
118
|
term :PhysicalObject,
|
81
119
|
comment: %(An inanimate, three-dimensional object or substance.).freeze,
|
82
120
|
"dc:description": "Note that digital representations of, or surrogates for, these objects should use Image, Text or one of the other types.".freeze,
|
83
|
-
"dc:hasVersion": "http://dublincore.org/usage/terms/history/#PhysicalObject-003".freeze,
|
84
121
|
"dc:issued": "2002-07-13".freeze,
|
85
|
-
"dc:modified": "2008-01-14".freeze,
|
86
122
|
"http://purl.org/dc/dcam/memberOf": "dc:DCMIType".freeze,
|
87
123
|
isDefinedBy: "dcmitype:".freeze,
|
88
124
|
label: "Physical Object".freeze,
|
@@ -90,9 +126,7 @@ module RDF::Vocab
|
|
90
126
|
term :Service,
|
91
127
|
comment: %(A system that provides one or more functions.).freeze,
|
92
128
|
"dc:description": "Examples include a photocopying service, a banking service, an authentication service, interlibrary loans, a Z39.50 or Web server.".freeze,
|
93
|
-
"dc:hasVersion": "http://dublincore.org/usage/terms/history/#Service-003".freeze,
|
94
129
|
"dc:issued": "2000-07-11".freeze,
|
95
|
-
"dc:modified": "2008-01-14".freeze,
|
96
130
|
"http://purl.org/dc/dcam/memberOf": "dc:DCMIType".freeze,
|
97
131
|
isDefinedBy: "dcmitype:".freeze,
|
98
132
|
label: "Service".freeze,
|
@@ -100,9 +134,7 @@ module RDF::Vocab
|
|
100
134
|
term :Software,
|
101
135
|
comment: %(A computer program in source or compiled form.).freeze,
|
102
136
|
"dc:description": "Examples include a C source file, MS-Windows .exe executable, or Perl script.".freeze,
|
103
|
-
"dc:hasVersion": "http://dublincore.org/usage/terms/history/#Software-003".freeze,
|
104
137
|
"dc:issued": "2000-07-11".freeze,
|
105
|
-
"dc:modified": "2008-01-14".freeze,
|
106
138
|
"http://purl.org/dc/dcam/memberOf": "dc:DCMIType".freeze,
|
107
139
|
isDefinedBy: "dcmitype:".freeze,
|
108
140
|
label: "Software".freeze,
|
@@ -110,9 +142,7 @@ module RDF::Vocab
|
|
110
142
|
term :Sound,
|
111
143
|
comment: %(A resource primarily intended to be heard.).freeze,
|
112
144
|
"dc:description": "Examples include a music playback file format, an audio compact disc, and recorded speech or sounds.".freeze,
|
113
|
-
"dc:hasVersion": "http://dublincore.org/usage/terms/history/#Sound-003".freeze,
|
114
145
|
"dc:issued": "2000-07-11".freeze,
|
115
|
-
"dc:modified": "2008-01-14".freeze,
|
116
146
|
"http://purl.org/dc/dcam/memberOf": "dc:DCMIType".freeze,
|
117
147
|
isDefinedBy: "dcmitype:".freeze,
|
118
148
|
label: "Sound".freeze,
|
@@ -120,9 +150,7 @@ module RDF::Vocab
|
|
120
150
|
term :StillImage,
|
121
151
|
comment: %(A static visual representation.).freeze,
|
122
152
|
"dc:description": "Examples include paintings, drawings, graphic designs, plans and maps. Recommended best practice is to assign the type Text to images of textual materials. Instances of the type Still Image must also be describable as instances of the broader type Image.".freeze,
|
123
|
-
"dc:hasVersion": "http://dublincore.org/usage/terms/history/#StillImage-003".freeze,
|
124
153
|
"dc:issued": "2003-11-18".freeze,
|
125
|
-
"dc:modified": "2008-01-14".freeze,
|
126
154
|
"http://purl.org/dc/dcam/memberOf": "dc:DCMIType".freeze,
|
127
155
|
isDefinedBy: "dcmitype:".freeze,
|
128
156
|
label: "Still Image".freeze,
|
@@ -131,9 +159,7 @@ module RDF::Vocab
|
|
131
159
|
term :Text,
|
132
160
|
comment: %(A resource consisting primarily of words for reading.).freeze,
|
133
161
|
"dc:description": "Examples include books, letters, dissertations, poems, newspapers, articles, archives of mailing lists. Note that facsimiles or images of texts are still of the genre Text.".freeze,
|
134
|
-
"dc:hasVersion": "http://dublincore.org/usage/terms/history/#Text-003".freeze,
|
135
162
|
"dc:issued": "2000-07-11".freeze,
|
136
|
-
"dc:modified": "2008-01-14".freeze,
|
137
163
|
"http://purl.org/dc/dcam/memberOf": "dc:DCMIType".freeze,
|
138
164
|
isDefinedBy: "dcmitype:".freeze,
|
139
165
|
label: "Text".freeze,
|