rdf-vocab 2.1.0 → 2.1.1
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/lib/rdf/vocab.rb +11 -5
- data/lib/rdf/vocab/acl.rb +15 -3
- data/lib/rdf/vocab/bibframe.rb +6 -7
- data/lib/rdf/vocab/bibo.rb +123 -122
- data/lib/rdf/vocab/cc.rb +5 -0
- data/lib/rdf/vocab/cert.rb +35 -35
- data/lib/rdf/vocab/cnt.rb +10 -0
- data/lib/rdf/vocab/datacite.rb +16 -15
- data/lib/rdf/vocab/dc.rb +6 -5
- data/lib/rdf/vocab/dc11.rb +6 -7
- data/lib/rdf/vocab/dcat.rb +13 -0
- data/lib/rdf/vocab/dcmitype.rb +6 -7
- data/lib/rdf/vocab/disco.rb +14 -2
- data/lib/rdf/vocab/doap.rb +10 -11
- data/lib/rdf/vocab/dwc.rb +7 -8
- data/lib/rdf/vocab/ebucore.rb +17 -0
- data/lib/rdf/vocab/edm.rb +44 -45
- data/lib/rdf/vocab/exif.rb +11 -0
- data/lib/rdf/vocab/extensions.rb +1 -1
- data/lib/rdf/vocab/fcrepo4.rb +8 -8
- data/lib/rdf/vocab/foaf.rb +6 -7
- data/lib/rdf/vocab/geo.rb +58 -58
- data/lib/rdf/vocab/geonames.rb +28 -0
- data/lib/rdf/vocab/gr.rb +26 -0
- data/lib/rdf/vocab/ht.rb +10 -0
- data/lib/rdf/vocab/hydra.rb +13 -0
- data/lib/rdf/vocab/ical.rb +7 -0
- data/lib/rdf/vocab/identifiers.rb +8 -0
- data/lib/rdf/vocab/iiif.rb +5 -4
- data/lib/rdf/vocab/jsonld.rb +6 -0
- data/lib/rdf/vocab/ldp.rb +22 -12
- data/lib/rdf/vocab/lrmi.rb +10 -11
- data/lib/rdf/vocab/ma.rb +8 -0
- data/lib/rdf/vocab/marc_relators.rb +12 -0
- data/lib/rdf/vocab/mo.rb +15 -14
- data/lib/rdf/vocab/mods.rb +5 -0
- data/lib/rdf/vocab/oa.rb +15 -34
- data/lib/rdf/vocab/ore.rb +8 -8
- data/lib/rdf/vocab/org.rb +12 -10
- data/lib/rdf/vocab/pplan.rb +14 -15
- data/lib/rdf/vocab/premis.rb +11 -0
- data/lib/rdf/vocab/premis_event_type.rb +10 -0
- data/lib/rdf/vocab/prov.rb +16 -14
- data/lib/rdf/vocab/rightsstatements.rb +247 -0
- data/lib/rdf/vocab/rsa.rb +9 -0
- data/lib/rdf/vocab/sioc.rb +9 -10
- data/lib/rdf/vocab/sioc_services.rb +8 -9
- data/lib/rdf/vocab/skos.rb +9 -0
- data/lib/rdf/vocab/skosxl.rb +10 -0
- data/lib/rdf/vocab/vcard.rb +7 -0
- data/lib/rdf/vocab/vs.rb +13 -0
- data/lib/rdf/vocab/wdrs.rb +8 -0
- data/lib/rdf/vocab/wot.rb +9 -10
- data/lib/rdf/vocab/xhtml.rb +5 -0
- data/lib/rdf/vocab/xhv.rb +4 -0
- data/lib/rdf/vocab/xkos.rb +245 -0
- data/spec/extensions_spec.rb +12 -0
- metadata +5 -3
data/lib/rdf/vocab/cc.rb
CHANGED
@@ -9,6 +9,11 @@ module RDF::Vocab
|
|
9
9
|
# end
|
10
10
|
class CC < RDF::StrictVocabulary("http://creativecommons.org/ns#")
|
11
11
|
|
12
|
+
# Ontology definition
|
13
|
+
ontology :"http://creativecommons.org/ns",
|
14
|
+
:"xhv:license" => %(https://creativecommons.org/licenses/by/4.0/).freeze,
|
15
|
+
:"xhv:stylesheet" => %(https://creativecommons.org/includes/bootstrap.min.css).freeze
|
16
|
+
|
12
17
|
# Class definitions
|
13
18
|
term :Jurisdiction,
|
14
19
|
comment: %(the legal jurisdiction
|
data/lib/rdf/vocab/cert.rb
CHANGED
@@ -9,6 +9,41 @@ module RDF::Vocab
|
|
9
9
|
# end
|
10
10
|
class CERT < RDF::StrictVocabulary("http://www.w3.org/ns/auth/cert#")
|
11
11
|
|
12
|
+
# Ontology definition
|
13
|
+
ontology :"http://www.w3.org/ns/auth/cert#",
|
14
|
+
comment: %(
|
15
|
+
Ontology for Certificates and crypto stuff.
|
16
|
+
This is in development.
|
17
|
+
Some other ontologies to look at:
|
18
|
+
* http://www.w3.org/2000/10/swap/crypto
|
19
|
+
+ has cwm builtins: http://www.w3.org/2000/10/swap/doc/Trust
|
20
|
+
- a bit old perhaps. It imports daml+oil
|
21
|
+
- would help to be more completely specified
|
22
|
+
- uses literals as subjects a little liberally, which makes this a
|
23
|
+
bit difficult to work with frameworks that don't permit this
|
24
|
+
* http://xmlns.com/wot/0.1/
|
25
|
+
- limited very much to PGP \(though on can map PGP to X509\)
|
26
|
+
- a little coarse grained, mixes up the PGP certificate with the PGP
|
27
|
+
public key
|
28
|
+
*
|
29
|
+
Todo:
|
30
|
+
- add some classes and relations for DSA
|
31
|
+
- should this all be in one file? Or should this be cut up a little? Say one file for the general CERT ontology, and then files for RSA, DSA, PGP, etc... Or perhaps it does not really matter?
|
32
|
+
- expand more on the certification side of things
|
33
|
+
- verify this by security experts
|
34
|
+
- owl2 has some constructs for combined inverse functional properties.
|
35
|
+
This may be useful to use in defining an RSA key which is identified
|
36
|
+
by two numbers.
|
37
|
+
- also create html version of the spec by using this as a template.
|
38
|
+
- should comments such as this be in html?
|
39
|
+
).freeze,
|
40
|
+
:"dc:created" => %(2008-11-13).freeze,
|
41
|
+
:"foaf:maker" => %(http://bblfish.net/people/henry/card#me).freeze,
|
42
|
+
label: "Ontology for Certificates and crypto stuff.".freeze,
|
43
|
+
:"rdfs:seeAlso" => [%(http://lists.foaf-project.org/mailman/listinfo/foaf-protocols).freeze, %(http://www.w3.org/ns/auth/X509Uml.svg).freeze, %(http://www.w3.org/ns/auth/rsa).freeze],
|
44
|
+
type: "owl:Ontology".freeze,
|
45
|
+
:"vs:term_status" => %(unstable).freeze
|
46
|
+
|
12
47
|
# Class definitions
|
13
48
|
term :Certificate,
|
14
49
|
comment: %(A certificate is a Document that is signed.
|
@@ -210,40 +245,5 @@ module RDF::Vocab
|
|
210
245
|
).freeze,
|
211
246
|
type: "rdfs:Datatype".freeze,
|
212
247
|
:"vs:term_status" => %(archaic).freeze
|
213
|
-
|
214
|
-
# Extra definitions
|
215
|
-
term :"",
|
216
|
-
comment: %(
|
217
|
-
Ontology for Certificates and crypto stuff.
|
218
|
-
This is in development.
|
219
|
-
Some other ontologies to look at:
|
220
|
-
* http://www.w3.org/2000/10/swap/crypto
|
221
|
-
+ has cwm builtins: http://www.w3.org/2000/10/swap/doc/Trust
|
222
|
-
- a bit old perhaps. It imports daml+oil
|
223
|
-
- would help to be more completely specified
|
224
|
-
- uses literals as subjects a little liberally, which makes this a
|
225
|
-
bit difficult to work with frameworks that don't permit this
|
226
|
-
* http://xmlns.com/wot/0.1/
|
227
|
-
- limited very much to PGP \(though on can map PGP to X509\)
|
228
|
-
- a little coarse grained, mixes up the PGP certificate with the PGP
|
229
|
-
public key
|
230
|
-
*
|
231
|
-
Todo:
|
232
|
-
- add some classes and relations for DSA
|
233
|
-
- should this all be in one file? Or should this be cut up a little? Say one file for the general CERT ontology, and then files for RSA, DSA, PGP, etc... Or perhaps it does not really matter?
|
234
|
-
- expand more on the certification side of things
|
235
|
-
- verify this by security experts
|
236
|
-
- owl2 has some constructs for combined inverse functional properties.
|
237
|
-
This may be useful to use in defining an RSA key which is identified
|
238
|
-
by two numbers.
|
239
|
-
- also create html version of the spec by using this as a template.
|
240
|
-
- should comments such as this be in html?
|
241
|
-
).freeze,
|
242
|
-
:"dc:created" => %(2008-11-13).freeze,
|
243
|
-
:"foaf:maker" => %(http://bblfish.net/people/henry/card#me).freeze,
|
244
|
-
label: "Ontology for Certificates and crypto stuff.".freeze,
|
245
|
-
:"rdfs:seeAlso" => [%(http://lists.foaf-project.org/mailman/listinfo/foaf-protocols).freeze, %(http://www.w3.org/ns/auth/X509Uml.svg).freeze, %(http://www.w3.org/ns/auth/rsa).freeze],
|
246
|
-
type: "owl:Ontology".freeze,
|
247
|
-
:"vs:term_status" => %(unstable).freeze
|
248
248
|
end
|
249
249
|
end
|
data/lib/rdf/vocab/cnt.rb
CHANGED
@@ -9,6 +9,16 @@ module RDF::Vocab
|
|
9
9
|
# end
|
10
10
|
class CNT < RDF::StrictVocabulary("http://www.w3.org/2011/content#")
|
11
11
|
|
12
|
+
# Ontology definition
|
13
|
+
ontology :"http://www.w3.org/2011/content",
|
14
|
+
comment: %(Representing Content in RDF as defined by http://www.w3.org/TR/Content-in-RDF/).freeze,
|
15
|
+
label: "Representing Content in RDF".freeze,
|
16
|
+
:"owl:imports" => %(dc:).freeze,
|
17
|
+
:"owl:versionInfo" => %(Working Draft 29 April 2011).freeze,
|
18
|
+
:"rdfs:isDefinedBy" => %(http://www.w3.org/TR/Content-in-RDF/).freeze,
|
19
|
+
:"rdfs:seeAlso" => %(http://www.w3.org/WAI/intro/earl).freeze,
|
20
|
+
type: "owl:Ontology".freeze
|
21
|
+
|
12
22
|
# Class definitions
|
13
23
|
term :Content,
|
14
24
|
comment: %(The content.).freeze,
|
data/lib/rdf/vocab/datacite.rb
CHANGED
@@ -9,6 +9,22 @@ module RDF::Vocab
|
|
9
9
|
# end
|
10
10
|
class DataCite < RDF::StrictVocabulary("http://purl.org/spar/datacite/")
|
11
11
|
|
12
|
+
# Ontology definition
|
13
|
+
ontology :"http://purl.org/spar/datacite/",
|
14
|
+
comment: %(This ontology is available at http://purl.org/spar/datacite/, and uses the namespace prefix datacite.).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.
|
19
|
+
|
20
|
+
This 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],
|
21
|
+
:"dc11:rights" => %(This work is distributed under a Creative Commons Attribution License \(http://creativecommons.org/licenses/by/4.0/\).).freeze,
|
22
|
+
:"dc11:title" => %(The DataCite Ontology).freeze,
|
23
|
+
:"owl:imports" => [%(http://purl.org/co).freeze, %(http://www.essepuntato.it/2010/06/literalreification).freeze],
|
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,
|
26
|
+
type: "owl:Ontology".freeze
|
27
|
+
|
12
28
|
# Class definitions
|
13
29
|
term :AgentIdentifier,
|
14
30
|
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,
|
@@ -164,21 +180,6 @@ All the prefixes used here refer to external ontologies, i.e., DC Metadata Terms
|
|
164
180
|
type: "owl:ObjectProperty".freeze
|
165
181
|
|
166
182
|
# Extra definitions
|
167
|
-
term :"",
|
168
|
-
comment: %(This ontology is available at http://purl.org/spar/datacite/, and uses the namespace prefix datacite.).freeze,
|
169
|
-
:"dc11:contributor" => [%(Amy J. Barton).freeze, %(Egbert Gramsbergen).freeze, %(Jan Ashton).freeze, %(Marie-Christine Jacquemot).freeze],
|
170
|
-
:"dc11:creator" => [%(David Shotton).freeze, %(Silvio Peroni).freeze],
|
171
|
-
:"dc11:date" => %(2016-01-21).freeze,
|
172
|
-
:"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.
|
173
|
-
|
174
|
-
This 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],
|
175
|
-
:"dc11:rights" => %(This work is distributed under a Creative Commons Attribution License \(http://creativecommons.org/licenses/by/4.0/\).).freeze,
|
176
|
-
:"dc11:title" => %(The DataCite Ontology).freeze,
|
177
|
-
label: "".freeze,
|
178
|
-
:"owl:imports" => [%(http://purl.org/co).freeze, %(http://www.essepuntato.it/2010/06/literalreification).freeze],
|
179
|
-
:"owl:priorVersion" => %(http://svn.code.sf.net/p/sempublishing/code/DataCite/2014-05-21-datacite-0_6_4_1.owl).freeze,
|
180
|
-
:"owl:versionInfo" => %(1.0).freeze,
|
181
|
-
type: "owl:Ontology".freeze
|
182
183
|
term :abstract,
|
183
184
|
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,
|
184
185
|
label: "abstract".freeze,
|
data/lib/rdf/vocab/dc.rb
CHANGED
@@ -9,6 +9,12 @@ module RDF::Vocab
|
|
9
9
|
# end
|
10
10
|
class DC < RDF::StrictVocabulary("http://purl.org/dc/terms/")
|
11
11
|
|
12
|
+
# Ontology definition
|
13
|
+
ontology :"http://purl.org/dc/terms/",
|
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
|
+
|
12
18
|
# Class definitions
|
13
19
|
term :Agent,
|
14
20
|
comment: %(A resource that acts or has the power to act.).freeze,
|
@@ -863,11 +869,6 @@ module RDF::Vocab
|
|
863
869
|
type: "rdfs:Datatype".freeze
|
864
870
|
|
865
871
|
# Extra definitions
|
866
|
-
term :"",
|
867
|
-
:"dc:modified" => %(2012-06-14).freeze,
|
868
|
-
:"dc:publisher" => %(http://purl.org/dc/aboutdcmi#DCMI).freeze,
|
869
|
-
:"dc:title" => %(DCMI Metadata Terms - other).freeze,
|
870
|
-
label: "".freeze
|
871
872
|
term :DCMIType,
|
872
873
|
comment: %(The set of classes specified by the DCMI Type Vocabulary, used to categorize the nature or genre of the resource.).freeze,
|
873
874
|
:"dc:hasVersion" => %(http://dublincore.org/usage/terms/history/#DCMIType-005).freeze,
|
data/lib/rdf/vocab/dc11.rb
CHANGED
@@ -9,6 +9,12 @@ module RDF::Vocab
|
|
9
9
|
# end
|
10
10
|
class DC11 < RDF::StrictVocabulary("http://purl.org/dc/elements/1.1/")
|
11
11
|
|
12
|
+
# Ontology definition
|
13
|
+
ontology :"http://purl.org/dc/elements/1.1/",
|
14
|
+
:"dc:modified" => %(2012-06-14).freeze,
|
15
|
+
:"dc:publisher" => %(http://purl.org/dc/aboutdcmi#DCMI).freeze,
|
16
|
+
:"dc:title" => %(Dublin Core Metadata Element Set, Version 1.1).freeze
|
17
|
+
|
12
18
|
# Property definitions
|
13
19
|
property :contributor,
|
14
20
|
comment: %(An entity responsible for making contributions to the resource.).freeze,
|
@@ -160,12 +166,5 @@ module RDF::Vocab
|
|
160
166
|
:"rdfs:isDefinedBy" => %(dc11:).freeze,
|
161
167
|
:"skos:note" => %(A second property 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" \(http://dublincore.org/documents/dcmi-terms/\) for an explanation.).freeze,
|
162
168
|
type: "rdf:Property".freeze
|
163
|
-
|
164
|
-
# Extra definitions
|
165
|
-
term :"",
|
166
|
-
:"dc:modified" => %(2012-06-14).freeze,
|
167
|
-
:"dc:publisher" => %(http://purl.org/dc/aboutdcmi#DCMI).freeze,
|
168
|
-
:"dc:title" => %(Dublin Core Metadata Element Set, Version 1.1).freeze,
|
169
|
-
label: "".freeze
|
170
169
|
end
|
171
170
|
end
|
data/lib/rdf/vocab/dcat.rb
CHANGED
@@ -9,6 +9,19 @@ module RDF::Vocab
|
|
9
9
|
# end
|
10
10
|
class DCAT < RDF::StrictVocabulary("http://www.w3.org/ns/dcat#")
|
11
11
|
|
12
|
+
# Ontology definition
|
13
|
+
ontology :"http://www.w3.org/ns/dcat",
|
14
|
+
comment: %(DCAT is an RDF vocabulary designed to facilitate interoperability between data catalogs published on the Web.
|
15
|
+
By using DCAT to describe datasets in data catalogs, publishers increase discoverability and enable
|
16
|
+
applications easily to consume metadata from multiple catalogs. It further enables decentralized
|
17
|
+
publishing of catalogs and facilitates federated dataset search across sites. Aggregated DCAT metadata can
|
18
|
+
serve as a manifest file to facilitate digital preservation.
|
19
|
+
DCAT is defined at http://www.w3.org/TR/vocab-dcat/. Any variance between that normative
|
20
|
+
document and this schema is an error in this schema.).freeze,
|
21
|
+
:"dc:modified" => [%(2012-04-24).freeze, %(2013-09-20).freeze, %(2013-11-28).freeze],
|
22
|
+
label: "The data catalog vocabulary".freeze,
|
23
|
+
type: ["http://purl.org/vocommons/voaf#Vocabulary".freeze, "owl:Ontology".freeze]
|
24
|
+
|
12
25
|
# Class definitions
|
13
26
|
term :Catalog,
|
14
27
|
comment: %(A curated collection of metadata about datasets).freeze,
|
data/lib/rdf/vocab/dcmitype.rb
CHANGED
@@ -9,6 +9,12 @@ module RDF::Vocab
|
|
9
9
|
# end
|
10
10
|
class DCMIType < RDF::StrictVocabulary("http://purl.org/dc/dcmitype/")
|
11
11
|
|
12
|
+
# Ontology definition
|
13
|
+
ontology :"http://purl.org/dc/dcmitype/",
|
14
|
+
:"dc:modified" => %(2012-06-14).freeze,
|
15
|
+
:"dc:publisher" => %(http://purl.org/dc/aboutdcmi#DCMI).freeze,
|
16
|
+
:"dc:title" => %(DCMI Type Vocabulary).freeze
|
17
|
+
|
12
18
|
# Class definitions
|
13
19
|
term :Collection,
|
14
20
|
comment: %(An aggregation of resources.).freeze,
|
@@ -132,12 +138,5 @@ module RDF::Vocab
|
|
132
138
|
label: "Text".freeze,
|
133
139
|
:"rdfs:isDefinedBy" => %(dcmitype:).freeze,
|
134
140
|
type: "rdfs:Class".freeze
|
135
|
-
|
136
|
-
# Extra definitions
|
137
|
-
term :"",
|
138
|
-
:"dc:modified" => %(2012-06-14).freeze,
|
139
|
-
:"dc:publisher" => %(http://purl.org/dc/aboutdcmi#DCMI).freeze,
|
140
|
-
:"dc:title" => %(DCMI Type Vocabulary).freeze,
|
141
|
-
label: "".freeze
|
142
141
|
end
|
143
142
|
end
|
data/lib/rdf/vocab/disco.rb
CHANGED
@@ -9,6 +9,16 @@ module RDF::Vocab
|
|
9
9
|
# end
|
10
10
|
class DISCO < RDF::StrictVocabulary("http://rdf-vocabulary.ddialliance.org/discovery#")
|
11
11
|
|
12
|
+
# Ontology definition
|
13
|
+
ontology :"http://rdf-vocabulary.ddialliance.org/discovery",
|
14
|
+
comment: %(This specification defines the DDI Discovery Vocabulary, an RDF Schema vocabulary that enables discovery of research and survey data on the Web. It is based on DDI \(Data Documentation Initiative\) XML formats.).freeze,
|
15
|
+
:"dc11:contributor" => [%(Benjamin Zapilko).freeze, %(Joachim Wackerow).freeze, %(Richard Cyganiak).freeze, %(Thomas Bosch).freeze],
|
16
|
+
:"dc11:creator" => [%(Arofan Gregory).freeze, %(Benedikt Kämpgen).freeze, %(Benjamin Zapilko).freeze, %(Franck Cotton).freeze, %(Heiko Paulheim).freeze, %(Joachim Wackerow).freeze, %(Olof Olsson).freeze, %(Richard Cyganiak).freeze, %(Sarven Capadisli).freeze, %(Thomas Bosch).freeze],
|
17
|
+
:"dc11:description" => %(This specification defines the DDI Discovery Vocabulary, an RDF Schema vocabulary that enables discovery of research and survey data on the Web. It is based on DDI \(Data Documentation Initiative\) XML formats.).freeze,
|
18
|
+
:"dc11:title" => %(DDI-RDF Discovery Vocabulary).freeze,
|
19
|
+
:"owl:versionInfo" => %(Version 0.6 - 2013-09-30).freeze,
|
20
|
+
type: "owl:Ontology".freeze
|
21
|
+
|
12
22
|
# Class definitions
|
13
23
|
term :AnalysisUnit,
|
14
24
|
comment: %(The process collecting data is focusing on the analysis of a particular type of subject. If, for example, the adult population of Finland is being studied, the AnalysisUnit would be individuals or persons.).freeze,
|
@@ -62,8 +72,10 @@ module RDF::Vocab
|
|
62
72
|
subClassOf: "disco:Instrument".freeze,
|
63
73
|
type: ["owl:Class".freeze, "rdfs:Class".freeze]
|
64
74
|
term :Representation,
|
65
|
-
|
66
|
-
|
75
|
+
comment: %(Representation of a variable, question, or variable definition.).freeze,
|
76
|
+
label: "Representation of a variable, question, or variable definition.".freeze,
|
77
|
+
:"rdfs:isDefinedBy" => %(http://rdf-vocabulary.ddialliance.org/discovery).freeze,
|
78
|
+
type: ["owl:Class".freeze, "rdfs:Class".freeze]
|
67
79
|
term :RepresentedVariable,
|
68
80
|
comment: %(RepresentedVariables encompasse study-independent, re-usable parts of variables like occupation classification.).freeze,
|
69
81
|
label: "Data element".freeze,
|
data/lib/rdf/vocab/doap.rb
CHANGED
@@ -9,6 +9,16 @@ module RDF::Vocab
|
|
9
9
|
# end
|
10
10
|
class DOAP < RDF::StrictVocabulary("http://usefulinc.com/ns/doap#")
|
11
11
|
|
12
|
+
# Ontology definition
|
13
|
+
ontology :"http://usefulinc.com/ns/doap#",
|
14
|
+
:"dc11:creator" => %(Edd Dumbill).freeze,
|
15
|
+
:"dc11:description" => %(The Description of a Project \(DOAP\) vocabulary, described using W3C RDF Schema and the Web Ontology Language.).freeze,
|
16
|
+
:"dc11:format" => %(application/rdf+xml).freeze,
|
17
|
+
:"dc11:rights" => %(Copyright © 2004-2009 Edd Dumbill).freeze,
|
18
|
+
:"dc11:title" => %(Description of a Project \(DOAP\) vocabulary).freeze,
|
19
|
+
:"owl:imports" => %(foaf:).freeze,
|
20
|
+
type: "owl:Ontology".freeze
|
21
|
+
|
12
22
|
# Class definitions
|
13
23
|
term :ArchRepository,
|
14
24
|
comment: %(GNU Arch source code repository.).freeze,
|
@@ -326,16 +336,5 @@ module RDF::Vocab
|
|
326
336
|
label: "wiki".freeze,
|
327
337
|
:"rdfs:isDefinedBy" => %(doap:).freeze,
|
328
338
|
type: "rdf:Property".freeze
|
329
|
-
|
330
|
-
# Extra definitions
|
331
|
-
term :"",
|
332
|
-
:"dc11:creator" => %(Edd Dumbill).freeze,
|
333
|
-
:"dc11:description" => %(The Description of a Project \(DOAP\) vocabulary, described using W3C RDF Schema and the Web Ontology Language.).freeze,
|
334
|
-
:"dc11:format" => %(application/rdf+xml).freeze,
|
335
|
-
:"dc11:rights" => %(Copyright © 2004-2009 Edd Dumbill).freeze,
|
336
|
-
:"dc11:title" => %(Description of a Project \(DOAP\) vocabulary).freeze,
|
337
|
-
label: "".freeze,
|
338
|
-
:"owl:imports" => %(foaf:).freeze,
|
339
|
-
type: "owl:Ontology".freeze
|
340
339
|
end
|
341
340
|
end
|
data/lib/rdf/vocab/dwc.rb
CHANGED
@@ -9,6 +9,13 @@ module RDF::Vocab
|
|
9
9
|
# end
|
10
10
|
class DWC < RDF::StrictVocabulary("http://rs.tdwg.org/dwc/terms/")
|
11
11
|
|
12
|
+
# Ontology definition
|
13
|
+
ontology :"http://rs.tdwg.org/dwc/terms/",
|
14
|
+
comment: %(This document contains a list of Darwin Core terms that have the dwcattributes:status equal to "recommended". For the full normative RDF document of all Darwin Core terms, see dwctermshistory.rdf. To comment on this schema, please create a new issue in https://github.com/tdwg/dwc/issues).freeze,
|
15
|
+
:"dc:modified" => %(2014-12-05).freeze,
|
16
|
+
:"dc:publisher" => %(Biodiversity Information Standards \(TDWG\)).freeze,
|
17
|
+
:"dc:title" => %(Darwin Core Recommended Terms).freeze
|
18
|
+
|
12
19
|
# Class definitions
|
13
20
|
term :Event,
|
14
21
|
comment: %(An action that occurs at some location during some time.).freeze,
|
@@ -2437,13 +2444,5 @@ module RDF::Vocab
|
|
2437
2444
|
label: "Year".freeze,
|
2438
2445
|
:"rdfs:isDefinedBy" => %(dwc:).freeze,
|
2439
2446
|
type: "rdf:Property".freeze
|
2440
|
-
|
2441
|
-
# Extra definitions
|
2442
|
-
term :"",
|
2443
|
-
comment: %(This document contains a list of Darwin Core terms that have the dwcattributes:status equal to "recommended". For the full normative RDF document of all Darwin Core terms, see dwctermshistory.rdf. To comment on this schema, please create a new issue in https://github.com/tdwg/dwc/issues).freeze,
|
2444
|
-
:"dc:modified" => %(2014-12-05).freeze,
|
2445
|
-
:"dc:publisher" => %(Biodiversity Information Standards \(TDWG\)).freeze,
|
2446
|
-
:"dc:title" => %(Darwin Core Recommended Terms).freeze,
|
2447
|
-
label: "".freeze
|
2448
2447
|
end
|
2449
2448
|
end
|
data/lib/rdf/vocab/ebucore.rb
CHANGED
@@ -9,6 +9,23 @@ module RDF::Vocab
|
|
9
9
|
# end
|
10
10
|
class EBUCore < RDF::StrictVocabulary("http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#")
|
11
11
|
|
12
|
+
# Ontology definition
|
13
|
+
ontology :"http://www.ebu.ch/metadata/ontologies/ebucore/ebucore",
|
14
|
+
:"cc:licence" => %(http://creativecommons.org/licenses/by-sa/3.0/).freeze,
|
15
|
+
:"dc11:contributor" => [%(Adam Wead, Penn State University).freeze, %(Casey Davis, WGBH).freeze, %(Chuck McCallum, WGBH).freeze, %(Cliff Ingham, City of Bloomington).freeze, %(Drew Myers, WGBH).freeze, %(Glenn Clatworthy, PBS).freeze, %(Jack Brighton, WILL Public Media).freeze, %(Julie Hardesty, Indian University Library).freeze, %(Kara vam Malssen, AV Preserve).freeze, %(Karen Cariani, WGBH).freeze, %(Laurence Cook, metaCirque).freeze, %(Michael J. Giarlo, Penn State University).freeze, %(Peggy Griesinger, George Mason University Libraries).freeze, %(Rebecca Fraimow, WGBH).freeze, %(Rebecca Guenther, Rebecca Guenther Consulting).freeze, %(Sadie Roosa, WGBH).freeze, %(Valerie J. Miller, PBS).freeze],
|
16
|
+
:"dc11:description" => [%(Guidelines: for the purpose of flexibility and interoperability with a wider range of implementations, some properties purposefully do not have a range and accept either a resource or a literal. When a resource is used, it is recommended to reuse objects defined in the model \(e.g. pair hasEvent/Event or hasRole/Role\). Example 1: x hasRole 'actor'. Example 2: x hasRole _:Role_1 \(a reference to the Concept Id from a SKOS Role vocabulary defined in the ontology\).).freeze, %(Note to implementers: The EBUCore ontology is used by a variety of users with different needs. Several EBUCore properties have no range to allow different implementations using entities or literals. As an implementer, it is your choice to go for one or the other for each property to have consistent expectations when parsing individuals. EBUCore also provides different classes defined as subclasses of skos:Concept. You can use these classes as entities in range of several properties currently left without range. EBUCore is expressed in RDF in order to facilitate such modelling and flexibility. As a consequence, propoerties appear in the documentation as annotation properties.).freeze, %(The EBUCore has been designed to make users benefit from the flexibility of RDF to adapt the names of Classes and properties to their respective needs. This means users are welcome to add their own subclasses \(e.g. to define the most appropriate BusinessObjects or Resources or Agents\) and subproperties.).freeze, %(The development of the EBUCore ontology is now a joint effort of the EBUCore and PBCore communities.).freeze],
|
17
|
+
:"dc11:rights" => %(Copyright 2015 EBU).freeze,
|
18
|
+
:"dc11:title" => %(EBUCore - the Dublin Core for media).freeze,
|
19
|
+
:"dc:issued" => %(2013-01-01).freeze,
|
20
|
+
:"dc:modified" => %(2015-08-04).freeze,
|
21
|
+
:"http://purl.org/vocab/vann/preferredNamespaceUri" => %(http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#).freeze,
|
22
|
+
:"owl:backwardCompatibleWith" => %(http://www.ebu.ch/metadata/ontologies/ebucore/20150122/ebucore_2015_05_20.rdf).freeze,
|
23
|
+
:"owl:imports" => %(http://www.w3.org/2004/02/skos/core).freeze,
|
24
|
+
:"owl:priorVersion" => %(http://www.ebu.ch/metadata/ontologies/ebucore/20150122/ebucore_2015_05_20.rdf).freeze,
|
25
|
+
:"owl:versionInfo" => [%(Add "Feature" as sub-class of EditorialObject).freeze, %(Added eventPeriod property.).freeze, %(EBUCore based on Dublin Core + SKOS + some BBC Core Concepts + basic FOAF properties + equivalences to W3C MA-ONT).freeze, %(Improve the relations around the notions of "hasContributor", "Character", "Cast".).freeze, %(Leftovers from object audio components removed.).freeze, %(More consistency on opening property ranges to allow resources or literals.).freeze, %(New hasAudioDescription property pointing to a resource \(new AudioDescription as subclass of audioTrack\) or a presence flag).freeze, %(PBCore updates: dateBroadcast, dateLicenced, endLicencedate, dateDistributed, dateDeleted, dateIngested, dateMigrated, dateNormalized, dateTransferred, dateValidated, shotlog, folksonomy, clonedTo/isClonedFrom, dubbedTo/isDubbedfrom, derivedTo/isDerivedFrom, playbackSpeed, framesPerSecond, inchesPerSecond, hasGeneration, hasStandard, dimensions.).freeze, %(Version 1.6).freeze, %(hasCaptioning, hasSigning, hasSubtitling: the range is either a resource or a literal/boolean indicating the presence/absence thereof).freeze],
|
26
|
+
type: "owl:Ontology".freeze,
|
27
|
+
:"vs:term_status" => %(stable).freeze
|
28
|
+
|
12
29
|
# Class definitions
|
13
30
|
term :AccessConditions,
|
14
31
|
comment: %(The conditions under which content can be accessed.).freeze,
|
data/lib/rdf/vocab/edm.rb
CHANGED
@@ -9,6 +9,50 @@ module RDF::Vocab
|
|
9
9
|
# end
|
10
10
|
class EDM < RDF::StrictVocabulary("http://www.europeana.eu/schemas/edm/")
|
11
11
|
|
12
|
+
# Ontology definition
|
13
|
+
ontology :"http://www.europeana.eu/schemas/edm/",
|
14
|
+
:"dc11:contributor" => [%(http://www.ibi.hu-berlin.de/institut/personen/iwanowa).freeze, %(http://www.ics.forth.gr/isl/people/people_individual.jsp?Person_ID=2).freeze, %(http://www.image.ece.ntua.gr/~ndroso/).freeze, %(http://www.image.ntua.gr/~tzouvaras/).freeze],
|
15
|
+
:"dc11:creator" => %(http://data.semanticweb.org/person/antoine-isaac).freeze,
|
16
|
+
:"dc11:description" => %(The Europeana Data Model \(EDM\) is aimed at being an integration medium for collecting, connecting and enriching the descriptions provided by Europeana data providers. The RDF vocabulary for http://www.europeana.eu/schemas/edm/ defines the elements introduced by EDM \(as opposed to the ones EDM re-uses from other namespaces\).).freeze,
|
17
|
+
:"dc11:modified" => %(2013-05-20).freeze,
|
18
|
+
:"dc11:publisher" => %(http://europeana.eu).freeze,
|
19
|
+
:"dc11:title" => %(Europeana Data Model \(EDM\) vocabulary).freeze,
|
20
|
+
:"dc:issued" => %(2010-03-25).freeze,
|
21
|
+
:"foaf:homepage" => %(http://pro.europeana.eu/edm-documentation).freeze,
|
22
|
+
:"http://purl.org/vocab/vann/changes" => %(
|
23
|
+
=======
|
24
|
+
Changes between ontology file EDM version 5.2.4 \(edm, was once EDM-v524-120820\)
|
25
|
+
and ontology file EDM version 5.2.3 \(EDM-v523-120123\)
|
26
|
+
=======
|
27
|
+
1. edm:isShownAt made a sub-property of edm:hasView
|
28
|
+
2. added edm:begin and edm:end and their mappings to CRM
|
29
|
+
3. added owl:Class declarations added for compatibility with some OWL-DL reasoners \(feedback from Pedro Szekely, ISI\)
|
30
|
+
4. added "of" at the end of the label for edm:isNextInSequence
|
31
|
+
5. added vocabulary metadata to follow Linked Open Vocabularies \(http://lov.okfn.org/\) and ADMS \(https://joinup.ec.europa.eu/asset/adms/release/100\) guidelines
|
32
|
+
6. removed a domain axiom on edm:hasMet
|
33
|
+
7. added edm:collectionName and edm:europeanaProxy
|
34
|
+
8. removed version number from file name
|
35
|
+
9. generalisation of Country, DataProvider and Provider
|
36
|
+
10. updated CRM namespace and CRM class and property identifiers
|
37
|
+
11. added FRBRoo mappings
|
38
|
+
).freeze,
|
39
|
+
:"http://purl.org/vocab/vann/example" => [%(http://data.europeana.eu).freeze, %(http://pro.europeana.eu/case-studies-edm).freeze],
|
40
|
+
:"http://purl.org/vocab/vann/preferredNamespacePrefix" => %(edm).freeze,
|
41
|
+
:"http://purl.org/vocab/vann/preferredNamespaceUri" => %(http://www.europeana.eu/schemas/edm/).freeze,
|
42
|
+
:"http://purl.org/vocommons/voaf#toDoList" => %(
|
43
|
+
=======
|
44
|
+
Remaining TODOs for ontology file EDM version 5.2.4
|
45
|
+
=======
|
46
|
+
- finish and check FRBRoo mappings according to the recommendations of the EDM-FRBRoo task force. Also include implicit mappings and mappings for elements outside the EDM namespace?
|
47
|
+
- try to capture formal cardinality constraints resulting from "Obligation and Occurrence" documentation, which should be attached to non-EDM constructs \(esp. ore:Aggregation\)
|
48
|
+
- continue adding documentation values \(skos:scopeNote, skos:example, etc, according to 1.\), starting from edm:InformationResource. Add all Europeana examples and rationale notes for non-EDM constructs
|
49
|
+
- use specific EDM-doc properties for "rationale" and "obligation and occurrence". Use skos:definition for "Europeana definition", skos:example for "Example", skos:note for "Europeana note"
|
50
|
+
).freeze,
|
51
|
+
:"http://www.w3.org/ns/adms#relatedWebPage" => %(http://europeanalabs.eu/wiki/EDMPrototypingTask11).freeze,
|
52
|
+
:"http://www.w3.org/ns/radion#versionNotes" => %(The present specification is based on the document "Definition of the Europeana Data Model elements", originally edited by Carlo Meghini. It is aligned with the version 5.2.4 of these EDM Definitions.).freeze,
|
53
|
+
:"owl:versionInfo" => %(5.2.4).freeze,
|
54
|
+
type: ["http://purl.org/vocommons/voaf#Vocabulary".freeze, "owl:Ontology".freeze]
|
55
|
+
|
12
56
|
# Class definitions
|
13
57
|
term :Agent,
|
14
58
|
label: "Agent".freeze,
|
@@ -317,50 +361,5 @@ otherwise cannot be mapped to another element in the ESE.).freeze,
|
|
317
361
|
born digital object.).freeze,
|
318
362
|
subPropertyOf: "dc:temporal".freeze,
|
319
363
|
type: "rdf:Property".freeze
|
320
|
-
|
321
|
-
# Extra definitions
|
322
|
-
term :"",
|
323
|
-
:"dc11:contributor" => [%(http://www.ibi.hu-berlin.de/institut/personen/iwanowa).freeze, %(http://www.ics.forth.gr/isl/people/people_individual.jsp?Person_ID=2).freeze, %(http://www.image.ece.ntua.gr/~ndroso/).freeze, %(http://www.image.ntua.gr/~tzouvaras/).freeze],
|
324
|
-
:"dc11:creator" => %(http://data.semanticweb.org/person/antoine-isaac).freeze,
|
325
|
-
:"dc11:description" => %(The Europeana Data Model \(EDM\) is aimed at being an integration medium for collecting, connecting and enriching the descriptions provided by Europeana data providers. The RDF vocabulary for http://www.europeana.eu/schemas/edm/ defines the elements introduced by EDM \(as opposed to the ones EDM re-uses from other namespaces\).).freeze,
|
326
|
-
:"dc11:modified" => %(2013-05-20).freeze,
|
327
|
-
:"dc11:publisher" => %(http://europeana.eu).freeze,
|
328
|
-
:"dc11:title" => %(Europeana Data Model \(EDM\) vocabulary).freeze,
|
329
|
-
:"dc:issued" => %(2010-03-25).freeze,
|
330
|
-
:"foaf:homepage" => %(http://pro.europeana.eu/edm-documentation).freeze,
|
331
|
-
:"http://purl.org/vocab/vann/changes" => %(
|
332
|
-
=======
|
333
|
-
Changes between ontology file EDM version 5.2.4 \(edm, was once EDM-v524-120820\)
|
334
|
-
and ontology file EDM version 5.2.3 \(EDM-v523-120123\)
|
335
|
-
=======
|
336
|
-
1. edm:isShownAt made a sub-property of edm:hasView
|
337
|
-
2. added edm:begin and edm:end and their mappings to CRM
|
338
|
-
3. added owl:Class declarations added for compatibility with some OWL-DL reasoners \(feedback from Pedro Szekely, ISI\)
|
339
|
-
4. added "of" at the end of the label for edm:isNextInSequence
|
340
|
-
5. added vocabulary metadata to follow Linked Open Vocabularies \(http://lov.okfn.org/\) and ADMS \(https://joinup.ec.europa.eu/asset/adms/release/100\) guidelines
|
341
|
-
6. removed a domain axiom on edm:hasMet
|
342
|
-
7. added edm:collectionName and edm:europeanaProxy
|
343
|
-
8. removed version number from file name
|
344
|
-
9. generalisation of Country, DataProvider and Provider
|
345
|
-
10. updated CRM namespace and CRM class and property identifiers
|
346
|
-
11. added FRBRoo mappings
|
347
|
-
).freeze,
|
348
|
-
:"http://purl.org/vocab/vann/example" => [%(http://data.europeana.eu).freeze, %(http://pro.europeana.eu/case-studies-edm).freeze],
|
349
|
-
:"http://purl.org/vocab/vann/preferredNamespacePrefix" => %(edm).freeze,
|
350
|
-
:"http://purl.org/vocab/vann/preferredNamespaceUri" => %(http://www.europeana.eu/schemas/edm/).freeze,
|
351
|
-
:"http://purl.org/vocommons/voaf#toDoList" => %(
|
352
|
-
=======
|
353
|
-
Remaining TODOs for ontology file EDM version 5.2.4
|
354
|
-
=======
|
355
|
-
- finish and check FRBRoo mappings according to the recommendations of the EDM-FRBRoo task force. Also include implicit mappings and mappings for elements outside the EDM namespace?
|
356
|
-
- try to capture formal cardinality constraints resulting from "Obligation and Occurrence" documentation, which should be attached to non-EDM constructs \(esp. ore:Aggregation\)
|
357
|
-
- continue adding documentation values \(skos:scopeNote, skos:example, etc, according to 1.\), starting from edm:InformationResource. Add all Europeana examples and rationale notes for non-EDM constructs
|
358
|
-
- use specific EDM-doc properties for "rationale" and "obligation and occurrence". Use skos:definition for "Europeana definition", skos:example for "Example", skos:note for "Europeana note"
|
359
|
-
).freeze,
|
360
|
-
:"http://www.w3.org/ns/adms#relatedWebPage" => %(http://europeanalabs.eu/wiki/EDMPrototypingTask11).freeze,
|
361
|
-
:"http://www.w3.org/ns/radion#versionNotes" => %(The present specification is based on the document "Definition of the Europeana Data Model elements", originally edited by Carlo Meghini. It is aligned with the version 5.2.4 of these EDM Definitions.).freeze,
|
362
|
-
label: "".freeze,
|
363
|
-
:"owl:versionInfo" => %(5.2.4).freeze,
|
364
|
-
type: ["http://purl.org/vocommons/voaf#Vocabulary".freeze, "owl:Ontology".freeze]
|
365
364
|
end
|
366
365
|
end
|