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.
Files changed (59) hide show
  1. checksums.yaml +4 -4
  2. data/lib/rdf/vocab.rb +11 -5
  3. data/lib/rdf/vocab/acl.rb +15 -3
  4. data/lib/rdf/vocab/bibframe.rb +6 -7
  5. data/lib/rdf/vocab/bibo.rb +123 -122
  6. data/lib/rdf/vocab/cc.rb +5 -0
  7. data/lib/rdf/vocab/cert.rb +35 -35
  8. data/lib/rdf/vocab/cnt.rb +10 -0
  9. data/lib/rdf/vocab/datacite.rb +16 -15
  10. data/lib/rdf/vocab/dc.rb +6 -5
  11. data/lib/rdf/vocab/dc11.rb +6 -7
  12. data/lib/rdf/vocab/dcat.rb +13 -0
  13. data/lib/rdf/vocab/dcmitype.rb +6 -7
  14. data/lib/rdf/vocab/disco.rb +14 -2
  15. data/lib/rdf/vocab/doap.rb +10 -11
  16. data/lib/rdf/vocab/dwc.rb +7 -8
  17. data/lib/rdf/vocab/ebucore.rb +17 -0
  18. data/lib/rdf/vocab/edm.rb +44 -45
  19. data/lib/rdf/vocab/exif.rb +11 -0
  20. data/lib/rdf/vocab/extensions.rb +1 -1
  21. data/lib/rdf/vocab/fcrepo4.rb +8 -8
  22. data/lib/rdf/vocab/foaf.rb +6 -7
  23. data/lib/rdf/vocab/geo.rb +58 -58
  24. data/lib/rdf/vocab/geonames.rb +28 -0
  25. data/lib/rdf/vocab/gr.rb +26 -0
  26. data/lib/rdf/vocab/ht.rb +10 -0
  27. data/lib/rdf/vocab/hydra.rb +13 -0
  28. data/lib/rdf/vocab/ical.rb +7 -0
  29. data/lib/rdf/vocab/identifiers.rb +8 -0
  30. data/lib/rdf/vocab/iiif.rb +5 -4
  31. data/lib/rdf/vocab/jsonld.rb +6 -0
  32. data/lib/rdf/vocab/ldp.rb +22 -12
  33. data/lib/rdf/vocab/lrmi.rb +10 -11
  34. data/lib/rdf/vocab/ma.rb +8 -0
  35. data/lib/rdf/vocab/marc_relators.rb +12 -0
  36. data/lib/rdf/vocab/mo.rb +15 -14
  37. data/lib/rdf/vocab/mods.rb +5 -0
  38. data/lib/rdf/vocab/oa.rb +15 -34
  39. data/lib/rdf/vocab/ore.rb +8 -8
  40. data/lib/rdf/vocab/org.rb +12 -10
  41. data/lib/rdf/vocab/pplan.rb +14 -15
  42. data/lib/rdf/vocab/premis.rb +11 -0
  43. data/lib/rdf/vocab/premis_event_type.rb +10 -0
  44. data/lib/rdf/vocab/prov.rb +16 -14
  45. data/lib/rdf/vocab/rightsstatements.rb +247 -0
  46. data/lib/rdf/vocab/rsa.rb +9 -0
  47. data/lib/rdf/vocab/sioc.rb +9 -10
  48. data/lib/rdf/vocab/sioc_services.rb +8 -9
  49. data/lib/rdf/vocab/skos.rb +9 -0
  50. data/lib/rdf/vocab/skosxl.rb +10 -0
  51. data/lib/rdf/vocab/vcard.rb +7 -0
  52. data/lib/rdf/vocab/vs.rb +13 -0
  53. data/lib/rdf/vocab/wdrs.rb +8 -0
  54. data/lib/rdf/vocab/wot.rb +9 -10
  55. data/lib/rdf/vocab/xhtml.rb +5 -0
  56. data/lib/rdf/vocab/xhv.rb +4 -0
  57. data/lib/rdf/vocab/xkos.rb +245 -0
  58. data/spec/extensions_spec.rb +12 -0
  59. metadata +5 -3
@@ -9,6 +9,16 @@ module RDF::Vocab
9
9
  # end
10
10
  class LRMI < RDF::Vocabulary("http://purl.org/dcx/lrmi-terms/")
11
11
 
12
+ # Ontology definition
13
+ ontology :"http://purl.org/dcx/lrmi-terms/",
14
+ :"dc:creator" => %(LRMI Task Group).freeze,
15
+ :"dc:description" => %(The LRMI specification is a collection of classes and properties for markup and description of educational resources. The specification builds on the extensive vocabulary provided by Schema.org and other standards.).freeze,
16
+ :"dc:identifier" => %(http://dublincore.org/dcx/lrmi-terms/).freeze,
17
+ :"dc:isVersionOf" => %(http://purl.org/dcx/lrmi-terms/1.1/).freeze,
18
+ :"dc:issued" => %(2015-02-09).freeze,
19
+ :"dc:license" => %(https://creativecommons.org/licenses/by/4.0/).freeze,
20
+ :"dc:title" => %(LRMI RDF Specification).freeze
21
+
12
22
  # Class definitions
13
23
  term :AlignmentObject,
14
24
  comment: %(An intangible item that describes an alignment between a learning resource and a node in an educational framework.).freeze,
@@ -163,16 +173,5 @@ module RDF::Vocab
163
173
  :"rdfs:isDefinedBy" => %(lrmi:).freeze,
164
174
  subPropertyOf: "schema:license".freeze,
165
175
  type: "rdf:Property".freeze
166
-
167
- # Extra definitions
168
- term :"",
169
- :"dc:creator" => %(LRMI Task Group).freeze,
170
- :"dc:description" => %(The LRMI specification is a collection of classes and properties for markup and description of educational resources. The specification builds on the extensive vocabulary provided by Schema.org and other standards.).freeze,
171
- :"dc:identifier" => %(http://dublincore.org/dcx/lrmi-terms/).freeze,
172
- :"dc:isVersionOf" => %(http://purl.org/dcx/lrmi-terms/1.1/).freeze,
173
- :"dc:issued" => %(2015-02-09).freeze,
174
- :"dc:license" => %(https://creativecommons.org/licenses/by/4.0/).freeze,
175
- :"dc:title" => %(LRMI RDF Specification).freeze,
176
- label: "".freeze
177
176
  end
178
177
  end
data/lib/rdf/vocab/ma.rb CHANGED
@@ -9,6 +9,14 @@ module RDF::Vocab
9
9
  # end
10
10
  class MA < RDF::Vocabulary("http://www.w3.org/ns/ma-ont#")
11
11
 
12
+ # Ontology definition
13
+ ontology :"http://www.w3.org/ns/ma-ont",
14
+ comment: [%(Created by Tobias Buerger, Jean Pierre Evain and Pierre-Antoine Champin with the RDFS Taskforce within the W3C Media Annotation Working Group.).freeze, %(THE CONTENT OF THIS MA-ONT.RDF AND DERIVED MA-ONT.TTL FILES PREVAIL OVER THE SPECIFICATION.).freeze],
15
+ :"dc11:date" => %(2013-03-20).freeze,
16
+ :"owl:imports" => %(http://dublincore.org/2008/01/14/dcelements.rdf).freeze,
17
+ :"owl:versionInfo" => %(R36).freeze,
18
+ type: "owl:Ontology".freeze
19
+
12
20
  # Class definitions
13
21
  term :Agent,
14
22
  comment: %(A person or organisation contributing to the media resource.).freeze,
@@ -9,6 +9,18 @@ module RDF::Vocab
9
9
  # end
10
10
  class MARCRelators < RDF::StrictVocabulary("http://id.loc.gov/vocabulary/relators/")
11
11
 
12
+ # Ontology definition
13
+ ontology :"http://id.loc.gov/vocabulary/relators",
14
+ comment: %(
15
+ <xhtml:div xmlns:xhtml="http://www.w3.org/1999/xhtml" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:madsrdf="http://www.loc.gov/mads/rdf/v1#" xmlns:rdfs="http://www.w3.org/2000/01/rdf-schema#" class="relatorsAbout" title="About the Relator Codes:" datatype="rdf:XMLLiteral" property="rdfs:comment"><xhtml:p> Relator terms and their associated codes designate the relationship between an agent and a bibliographic resource. The relator codes are three-character lowercase alphabetic strings that serve as identifiers. Either the term or the code may be used as controlled values.
16
+ </xhtml:p></xhtml:div>
17
+ ).freeze,
18
+ label: "MARC Code List for Relators".freeze,
19
+ :"mads:hasMADSSchemeMember" => [%(marcrelators:collection_BIBFRAMEInstance).freeze, %(marcrelators:collection_BIBFRAMEWork).freeze, %(marcrelators:collection_RDA).freeze, %(marcrelators:collection_RDAContributor).freeze, %(marcrelators:collection_RDACreator).freeze, %(marcrelators:collection_RDADistributor).freeze, %(marcrelators:collection_RDAExpression).freeze, %(marcrelators:collection_RDAItem).freeze, %(marcrelators:collection_RDAManifestation).freeze, %(marcrelators:collection_RDAManufacturer).freeze, %(marcrelators:collection_RDAOther).freeze, %(marcrelators:collection_RDAOwner).freeze, %(marcrelators:collection_RDAPublisher).freeze, %(marcrelators:collection_RDAWork).freeze],
20
+ :"mads:hasTopMemberOfMADSScheme" => [%(marcrelators:abr).freeze, %(marcrelators:acp).freeze, %(marcrelators:act).freeze, %(marcrelators:adi).freeze, %(marcrelators:adp).freeze, %(marcrelators:aft).freeze, %(marcrelators:anl).freeze, %(marcrelators:anm).freeze, %(marcrelators:ann).freeze, %(marcrelators:ant).freeze, %(marcrelators:ape).freeze, %(marcrelators:apl).freeze, %(marcrelators:app).freeze, %(marcrelators:aqt).freeze, %(marcrelators:arc).freeze, %(marcrelators:ard).freeze, %(marcrelators:arr).freeze, %(marcrelators:art).freeze, %(marcrelators:asg).freeze, %(marcrelators:asn).freeze, %(marcrelators:ato).freeze, %(marcrelators:att).freeze, %(marcrelators:auc).freeze, %(marcrelators:aud).freeze, %(marcrelators:aui).freeze, %(marcrelators:aus).freeze, %(marcrelators:aut).freeze, %(marcrelators:bdd).freeze, %(marcrelators:bjd).freeze, %(marcrelators:bkd).freeze, %(marcrelators:bkp).freeze, %(marcrelators:blw).freeze, %(marcrelators:bnd).freeze, %(marcrelators:bpd).freeze, %(marcrelators:brd).freeze, %(marcrelators:brl).freeze, %(marcrelators:bsl).freeze, %(marcrelators:cas).freeze, %(marcrelators:ccp).freeze, %(marcrelators:chr).freeze, %(marcrelators:cli).freeze, %(marcrelators:cll).freeze, %(marcrelators:clr).freeze, %(marcrelators:clt).freeze, %(marcrelators:cmm).freeze, %(marcrelators:cmp).freeze, %(marcrelators:cmt).freeze, %(marcrelators:cnd).freeze, %(marcrelators:cng).freeze, %(marcrelators:cns).freeze, %(marcrelators:coe).freeze, %(marcrelators:col).freeze, %(marcrelators:com).freeze, %(marcrelators:con).freeze, %(marcrelators:cor).freeze, %(marcrelators:cos).freeze, %(marcrelators:cot).freeze, %(marcrelators:cou).freeze, %(marcrelators:cov).freeze, %(marcrelators:cpc).freeze, %(marcrelators:cpe).freeze, %(marcrelators:cph).freeze, %(marcrelators:cpl).freeze, %(marcrelators:cpt).freeze, %(marcrelators:cre).freeze, %(marcrelators:crp).freeze, %(marcrelators:crr).freeze, %(marcrelators:crt).freeze, %(marcrelators:csl).freeze, %(marcrelators:csp).freeze, %(marcrelators:cst).freeze, %(marcrelators:ctb).freeze, %(marcrelators:cte).freeze, %(marcrelators:ctg).freeze, %(marcrelators:ctr).freeze, %(marcrelators:cts).freeze, %(marcrelators:ctt).freeze, %(marcrelators:cur).freeze, %(marcrelators:cwt).freeze, %(marcrelators:dbp).freeze, %(marcrelators:dfd).freeze, %(marcrelators:dfe).freeze, %(marcrelators:dft).freeze, %(marcrelators:dgg).freeze, %(marcrelators:dgs).freeze, %(marcrelators:dis).freeze, %(marcrelators:dln).freeze, %(marcrelators:dnc).freeze, %(marcrelators:dnr).freeze, %(marcrelators:dpc).freeze, %(marcrelators:dpt).freeze, %(marcrelators:drm).freeze, %(marcrelators:drt).freeze, %(marcrelators:dsr).freeze, %(marcrelators:dst).freeze, %(marcrelators:dtc).freeze, %(marcrelators:dte).freeze, %(marcrelators:dtm).freeze, %(marcrelators:dto).freeze, %(marcrelators:dub).freeze, %(marcrelators:edc).freeze, %(marcrelators:edm).freeze, %(marcrelators:edt).freeze, %(marcrelators:egr).freeze, %(marcrelators:elg).freeze, %(marcrelators:elt).freeze, %(marcrelators:eng).freeze, %(marcrelators:enj).freeze, %(marcrelators:etr).freeze, %(marcrelators:evp).freeze, %(marcrelators:exp).freeze, %(marcrelators:fac).freeze, %(marcrelators:fds).freeze, %(marcrelators:fld).freeze, %(marcrelators:flm).freeze, %(marcrelators:fmd).freeze, %(marcrelators:fmk).freeze, %(marcrelators:fmo).freeze, %(marcrelators:fmp).freeze, %(marcrelators:fnd).freeze, %(marcrelators:fpy).freeze, %(marcrelators:frg).freeze, %(marcrelators:gis).freeze, %(marcrelators:his).freeze, %(marcrelators:hnr).freeze, %(marcrelators:hst).freeze, %(marcrelators:ill).freeze, %(marcrelators:ilu).freeze, %(marcrelators:ins).freeze, %(marcrelators:inv).freeze, %(marcrelators:isb).freeze, %(marcrelators:itr).freeze, %(marcrelators:ive).freeze, %(marcrelators:ivr).freeze, %(marcrelators:jud).freeze, %(marcrelators:jug).freeze, %(marcrelators:lbr).freeze, %(marcrelators:lbt).freeze, %(marcrelators:ldr).freeze, %(marcrelators:led).freeze, %(marcrelators:lee).freeze, %(marcrelators:lel).freeze, %(marcrelators:len).freeze, %(marcrelators:let).freeze, %(marcrelators:lgd).freeze, %(marcrelators:lie).freeze, %(marcrelators:lil).freeze, %(marcrelators:lit).freeze, %(marcrelators:lsa).freeze, %(marcrelators:lse).freeze, %(marcrelators:lso).freeze, %(marcrelators:ltg).freeze, %(marcrelators:lyr).freeze, %(marcrelators:mcp).freeze, %(marcrelators:mdc).freeze, %(marcrelators:med).freeze, %(marcrelators:mfp).freeze, %(marcrelators:mfr).freeze, %(marcrelators:mod).freeze, %(marcrelators:mon).freeze, %(marcrelators:mrb).freeze, %(marcrelators:mrk).freeze, %(marcrelators:msd).freeze, %(marcrelators:mte).freeze, %(marcrelators:mtk).freeze, %(marcrelators:mus).freeze, %(marcrelators:nrt).freeze, %(marcrelators:opn).freeze, %(marcrelators:org).freeze, %(marcrelators:orm).freeze, %(marcrelators:osp).freeze, %(marcrelators:oth).freeze, %(marcrelators:own).freeze, %(marcrelators:pan).freeze, %(marcrelators:pat).freeze, %(marcrelators:pbd).freeze, %(marcrelators:pbl).freeze, %(marcrelators:pdr).freeze, %(marcrelators:pfr).freeze, %(marcrelators:pht).freeze, %(marcrelators:plt).freeze, %(marcrelators:pma).freeze, %(marcrelators:pmn).freeze, %(marcrelators:pop).freeze, %(marcrelators:ppm).freeze, %(marcrelators:ppt).freeze, %(marcrelators:pra).freeze, %(marcrelators:prc).freeze, %(marcrelators:prd).freeze, %(marcrelators:pre).freeze, %(marcrelators:prf).freeze, %(marcrelators:prg).freeze, %(marcrelators:prm).freeze, %(marcrelators:prn).freeze, %(marcrelators:pro).freeze, %(marcrelators:prp).freeze, %(marcrelators:prs).freeze, %(marcrelators:prt).freeze, %(marcrelators:prv).freeze, %(marcrelators:pta).freeze, %(marcrelators:pte).freeze, %(marcrelators:ptf).freeze, %(marcrelators:pth).freeze, %(marcrelators:ptt).freeze, %(marcrelators:pup).freeze, %(marcrelators:rbr).freeze, %(marcrelators:rcd).freeze, %(marcrelators:rce).freeze, %(marcrelators:rcp).freeze, %(marcrelators:rdd).freeze, %(marcrelators:red).freeze, %(marcrelators:ren).freeze, %(marcrelators:res).freeze, %(marcrelators:rev).freeze, %(marcrelators:rpc).freeze, %(marcrelators:rps).freeze, %(marcrelators:rpt).freeze, %(marcrelators:rpy).freeze, %(marcrelators:rse).freeze, %(marcrelators:rsg).freeze, %(marcrelators:rsp).freeze, %(marcrelators:rsr).freeze, %(marcrelators:rst).freeze, %(marcrelators:rth).freeze, %(marcrelators:rtm).freeze, %(marcrelators:sad).freeze, %(marcrelators:sce).freeze, %(marcrelators:scl).freeze, %(marcrelators:scr).freeze, %(marcrelators:sds).freeze, %(marcrelators:sec).freeze, %(marcrelators:sgd).freeze, %(marcrelators:sgn).freeze, %(marcrelators:sht).freeze, %(marcrelators:sll).freeze, %(marcrelators:sng).freeze, %(marcrelators:spk).freeze, %(marcrelators:spn).freeze, %(marcrelators:spy).freeze, %(marcrelators:srv).freeze, %(marcrelators:std).freeze, %(marcrelators:stg).freeze, %(marcrelators:stl).freeze, %(marcrelators:stm).freeze, %(marcrelators:stn).freeze, %(marcrelators:str).freeze, %(marcrelators:tcd).freeze, %(marcrelators:tch).freeze, %(marcrelators:ths).freeze, %(marcrelators:tld).freeze, %(marcrelators:tlp).freeze, %(marcrelators:trc).freeze, %(marcrelators:trl).freeze, %(marcrelators:tyd).freeze, %(marcrelators:tyg).freeze, %(marcrelators:uvp).freeze, %(marcrelators:vac).freeze, %(marcrelators:vdg).freeze, %(marcrelators:wac).freeze, %(marcrelators:wal).freeze, %(marcrelators:wam).freeze, %(marcrelators:wat).freeze, %(marcrelators:wdc).freeze, %(marcrelators:wde).freeze, %(marcrelators:win).freeze, %(marcrelators:wit).freeze, %(marcrelators:wpr).freeze, %(marcrelators:wst).freeze],
21
+ :"skos:hasTopConcept" => [%(marcrelators:abr).freeze, %(marcrelators:acp).freeze, %(marcrelators:act).freeze, %(marcrelators:adi).freeze, %(marcrelators:adp).freeze, %(marcrelators:aft).freeze, %(marcrelators:anl).freeze, %(marcrelators:anm).freeze, %(marcrelators:ann).freeze, %(marcrelators:ant).freeze, %(marcrelators:ape).freeze, %(marcrelators:apl).freeze, %(marcrelators:app).freeze, %(marcrelators:aqt).freeze, %(marcrelators:arc).freeze, %(marcrelators:ard).freeze, %(marcrelators:arr).freeze, %(marcrelators:art).freeze, %(marcrelators:asg).freeze, %(marcrelators:asn).freeze, %(marcrelators:ato).freeze, %(marcrelators:att).freeze, %(marcrelators:auc).freeze, %(marcrelators:aud).freeze, %(marcrelators:aui).freeze, %(marcrelators:aus).freeze, %(marcrelators:aut).freeze, %(marcrelators:bdd).freeze, %(marcrelators:bjd).freeze, %(marcrelators:bkd).freeze, %(marcrelators:bkp).freeze, %(marcrelators:blw).freeze, %(marcrelators:bnd).freeze, %(marcrelators:bpd).freeze, %(marcrelators:brd).freeze, %(marcrelators:brl).freeze, %(marcrelators:bsl).freeze, %(marcrelators:cas).freeze, %(marcrelators:ccp).freeze, %(marcrelators:chr).freeze, %(marcrelators:cli).freeze, %(marcrelators:cll).freeze, %(marcrelators:clr).freeze, %(marcrelators:clt).freeze, %(marcrelators:cmm).freeze, %(marcrelators:cmp).freeze, %(marcrelators:cmt).freeze, %(marcrelators:cnd).freeze, %(marcrelators:cng).freeze, %(marcrelators:cns).freeze, %(marcrelators:coe).freeze, %(marcrelators:col).freeze, %(marcrelators:com).freeze, %(marcrelators:con).freeze, %(marcrelators:cor).freeze, %(marcrelators:cos).freeze, %(marcrelators:cot).freeze, %(marcrelators:cou).freeze, %(marcrelators:cov).freeze, %(marcrelators:cpc).freeze, %(marcrelators:cpe).freeze, %(marcrelators:cph).freeze, %(marcrelators:cpl).freeze, %(marcrelators:cpt).freeze, %(marcrelators:cre).freeze, %(marcrelators:crp).freeze, %(marcrelators:crr).freeze, %(marcrelators:crt).freeze, %(marcrelators:csl).freeze, %(marcrelators:csp).freeze, %(marcrelators:cst).freeze, %(marcrelators:ctb).freeze, %(marcrelators:cte).freeze, %(marcrelators:ctg).freeze, %(marcrelators:ctr).freeze, %(marcrelators:cts).freeze, %(marcrelators:ctt).freeze, %(marcrelators:cur).freeze, %(marcrelators:cwt).freeze, %(marcrelators:dbp).freeze, %(marcrelators:dfd).freeze, %(marcrelators:dfe).freeze, %(marcrelators:dft).freeze, %(marcrelators:dgg).freeze, %(marcrelators:dgs).freeze, %(marcrelators:dis).freeze, %(marcrelators:dln).freeze, %(marcrelators:dnc).freeze, %(marcrelators:dnr).freeze, %(marcrelators:dpc).freeze, %(marcrelators:dpt).freeze, %(marcrelators:drm).freeze, %(marcrelators:drt).freeze, %(marcrelators:dsr).freeze, %(marcrelators:dst).freeze, %(marcrelators:dtc).freeze, %(marcrelators:dte).freeze, %(marcrelators:dtm).freeze, %(marcrelators:dto).freeze, %(marcrelators:dub).freeze, %(marcrelators:edc).freeze, %(marcrelators:edm).freeze, %(marcrelators:edt).freeze, %(marcrelators:egr).freeze, %(marcrelators:elg).freeze, %(marcrelators:elt).freeze, %(marcrelators:eng).freeze, %(marcrelators:enj).freeze, %(marcrelators:etr).freeze, %(marcrelators:evp).freeze, %(marcrelators:exp).freeze, %(marcrelators:fac).freeze, %(marcrelators:fds).freeze, %(marcrelators:fld).freeze, %(marcrelators:flm).freeze, %(marcrelators:fmd).freeze, %(marcrelators:fmk).freeze, %(marcrelators:fmo).freeze, %(marcrelators:fmp).freeze, %(marcrelators:fnd).freeze, %(marcrelators:fpy).freeze, %(marcrelators:frg).freeze, %(marcrelators:gis).freeze, %(marcrelators:his).freeze, %(marcrelators:hnr).freeze, %(marcrelators:hst).freeze, %(marcrelators:ill).freeze, %(marcrelators:ilu).freeze, %(marcrelators:ins).freeze, %(marcrelators:inv).freeze, %(marcrelators:isb).freeze, %(marcrelators:itr).freeze, %(marcrelators:ive).freeze, %(marcrelators:ivr).freeze, %(marcrelators:jud).freeze, %(marcrelators:jug).freeze, %(marcrelators:lbr).freeze, %(marcrelators:lbt).freeze, %(marcrelators:ldr).freeze, %(marcrelators:led).freeze, %(marcrelators:lee).freeze, %(marcrelators:lel).freeze, %(marcrelators:len).freeze, %(marcrelators:let).freeze, %(marcrelators:lgd).freeze, %(marcrelators:lie).freeze, %(marcrelators:lil).freeze, %(marcrelators:lit).freeze, %(marcrelators:lsa).freeze, %(marcrelators:lse).freeze, %(marcrelators:lso).freeze, %(marcrelators:ltg).freeze, %(marcrelators:lyr).freeze, %(marcrelators:mcp).freeze, %(marcrelators:mdc).freeze, %(marcrelators:med).freeze, %(marcrelators:mfp).freeze, %(marcrelators:mfr).freeze, %(marcrelators:mod).freeze, %(marcrelators:mon).freeze, %(marcrelators:mrb).freeze, %(marcrelators:mrk).freeze, %(marcrelators:msd).freeze, %(marcrelators:mte).freeze, %(marcrelators:mtk).freeze, %(marcrelators:mus).freeze, %(marcrelators:nrt).freeze, %(marcrelators:opn).freeze, %(marcrelators:org).freeze, %(marcrelators:orm).freeze, %(marcrelators:osp).freeze, %(marcrelators:oth).freeze, %(marcrelators:own).freeze, %(marcrelators:pan).freeze, %(marcrelators:pat).freeze, %(marcrelators:pbd).freeze, %(marcrelators:pbl).freeze, %(marcrelators:pdr).freeze, %(marcrelators:pfr).freeze, %(marcrelators:pht).freeze, %(marcrelators:plt).freeze, %(marcrelators:pma).freeze, %(marcrelators:pmn).freeze, %(marcrelators:pop).freeze, %(marcrelators:ppm).freeze, %(marcrelators:ppt).freeze, %(marcrelators:pra).freeze, %(marcrelators:prc).freeze, %(marcrelators:prd).freeze, %(marcrelators:pre).freeze, %(marcrelators:prf).freeze, %(marcrelators:prg).freeze, %(marcrelators:prm).freeze, %(marcrelators:prn).freeze, %(marcrelators:pro).freeze, %(marcrelators:prp).freeze, %(marcrelators:prs).freeze, %(marcrelators:prt).freeze, %(marcrelators:prv).freeze, %(marcrelators:pta).freeze, %(marcrelators:pte).freeze, %(marcrelators:ptf).freeze, %(marcrelators:pth).freeze, %(marcrelators:ptt).freeze, %(marcrelators:pup).freeze, %(marcrelators:rbr).freeze, %(marcrelators:rcd).freeze, %(marcrelators:rce).freeze, %(marcrelators:rcp).freeze, %(marcrelators:rdd).freeze, %(marcrelators:red).freeze, %(marcrelators:ren).freeze, %(marcrelators:res).freeze, %(marcrelators:rev).freeze, %(marcrelators:rpc).freeze, %(marcrelators:rps).freeze, %(marcrelators:rpt).freeze, %(marcrelators:rpy).freeze, %(marcrelators:rse).freeze, %(marcrelators:rsg).freeze, %(marcrelators:rsp).freeze, %(marcrelators:rsr).freeze, %(marcrelators:rst).freeze, %(marcrelators:rth).freeze, %(marcrelators:rtm).freeze, %(marcrelators:sad).freeze, %(marcrelators:sce).freeze, %(marcrelators:scl).freeze, %(marcrelators:scr).freeze, %(marcrelators:sds).freeze, %(marcrelators:sec).freeze, %(marcrelators:sgd).freeze, %(marcrelators:sgn).freeze, %(marcrelators:sht).freeze, %(marcrelators:sll).freeze, %(marcrelators:sng).freeze, %(marcrelators:spk).freeze, %(marcrelators:spn).freeze, %(marcrelators:spy).freeze, %(marcrelators:srv).freeze, %(marcrelators:std).freeze, %(marcrelators:stg).freeze, %(marcrelators:stl).freeze, %(marcrelators:stm).freeze, %(marcrelators:stn).freeze, %(marcrelators:str).freeze, %(marcrelators:tcd).freeze, %(marcrelators:tch).freeze, %(marcrelators:ths).freeze, %(marcrelators:tld).freeze, %(marcrelators:tlp).freeze, %(marcrelators:trc).freeze, %(marcrelators:trl).freeze, %(marcrelators:tyd).freeze, %(marcrelators:tyg).freeze, %(marcrelators:uvp).freeze, %(marcrelators:vac).freeze, %(marcrelators:vdg).freeze, %(marcrelators:wac).freeze, %(marcrelators:wal).freeze, %(marcrelators:wam).freeze, %(marcrelators:wat).freeze, %(marcrelators:wdc).freeze, %(marcrelators:wde).freeze, %(marcrelators:win).freeze, %(marcrelators:wit).freeze, %(marcrelators:wpr).freeze, %(marcrelators:wst).freeze],
22
+ type: ["mads:MADSScheme".freeze, "skos:ConceptScheme".freeze]
23
+
12
24
  # Property definitions
13
25
  property :abr,
14
26
  label: "Abridger".freeze,
data/lib/rdf/vocab/mo.rb CHANGED
@@ -9,6 +9,21 @@ module RDF::Vocab
9
9
  # end
10
10
  class MO < RDF::Vocabulary("http://purl.org/ontology/mo/")
11
11
 
12
+ # Ontology definition
13
+ ontology :"http://purl.org/ontology/mo/",
14
+ :"dc11:created" => %(2006/12/21 12:00:00).freeze,
15
+ :"dc11:date" => %(2013/07/22 16:54:19).freeze,
16
+ :"dc11:description" => %(
17
+ The Music Ontology Specification provides main concepts and
18
+ properties fo describing music \(i.e. artists, albums and tracks\)
19
+ on the Semantic Web.
20
+ ).freeze,
21
+ :"dc11:title" => %(The Music Ontology).freeze,
22
+ :"foaf:maker" => [%(http://foaf.me/zazi#me).freeze, %(http://kurtisrandom.com/foaf.rdf#kurtjx).freeze, %(http://raimond.me.uk/foaf.rdf#moustaki).freeze, %(http://www.talkdigger.com/foaf/fgiasson).freeze],
23
+ :"owl:imports" => [%(dc:).freeze, %(foaf:).freeze, %(http://purl.org/NET/c4dm/event.owl).freeze, %(http://purl.org/NET/c4dm/keys.owl).freeze, %(http://purl.org/ontology/ao/core).freeze, %(http://purl.org/vocab/bio/0.1/).freeze, %(http://purl.org/vocab/frbr/core).freeze, %(http://www.w3.org/2006/time).freeze],
24
+ :"owl:versionInfo" => %(Revision: 2.1.5).freeze,
25
+ type: "owl:Ontology".freeze
26
+
12
27
  # Class definitions
13
28
  term :Activity,
14
29
  comment: %(
@@ -2281,20 +2296,6 @@ The review does not have to be open content, as long as it is accessible to the
2281
2296
  :"vs:term_status" => %(stable).freeze
2282
2297
 
2283
2298
  # Extra definitions
2284
- term :"",
2285
- :"dc11:created" => %(2006/12/21 12:00:00).freeze,
2286
- :"dc11:date" => %(2013/07/22 16:54:19).freeze,
2287
- :"dc11:description" => %(
2288
- The Music Ontology Specification provides main concepts and
2289
- properties fo describing music \(i.e. artists, albums and tracks\)
2290
- on the Semantic Web.
2291
- ).freeze,
2292
- :"dc11:title" => %(The Music Ontology).freeze,
2293
- :"foaf:maker" => [%(http://foaf.me/zazi#me).freeze, %(http://kurtisrandom.com/foaf.rdf#kurtjx).freeze, %(http://raimond.me.uk/foaf.rdf#moustaki).freeze, %(http://www.talkdigger.com/foaf/fgiasson).freeze],
2294
- label: "".freeze,
2295
- :"owl:imports" => [%(dc:).freeze, %(foaf:).freeze, %(http://purl.org/NET/c4dm/event.owl).freeze, %(http://purl.org/NET/c4dm/keys.owl).freeze, %(http://purl.org/ontology/ao/core).freeze, %(http://purl.org/vocab/bio/0.1/).freeze, %(http://purl.org/vocab/frbr/core).freeze, %(http://www.w3.org/2006/time).freeze],
2296
- :"owl:versionInfo" => %(Revision: 2.1.5).freeze,
2297
- type: "owl:Ontology".freeze
2298
2299
  term :album,
2299
2300
  :"dc11:description" => %(
2300
2301
  One or more track issued together.
@@ -9,6 +9,11 @@ module RDF::Vocab
9
9
  # end
10
10
  class MODS < RDF::StrictVocabulary("http://www.loc.gov/mods/rdf/v1#")
11
11
 
12
+ # Ontology definition
13
+ ontology :"http://www.loc.gov/mods/rdf/v1",
14
+ :"owl:imports" => [%(dc11:).freeze, %(dcmitype:).freeze, %(foaf:).freeze, %(http://id.loc.gov/ontologies/ClassificationSchemes).freeze, %(http://id.loc.gov/ontologies/Identifiers).freeze, %(http://id.loc.gov/ontologies/ResourceTypes).freeze, %(http://id.loc.gov/ontologies/Roles).freeze, %(http://id.loc.gov/ontologies/TargetAudiences).freeze, %(http://purl.org/vocab/changeset/schema).freeze, %(http://purl.org/vocab/vann/).freeze, %(http://vocab.org/changeset/).freeze, %(http://www.loc.gov/mads/rdf/v1).freeze, %(http://www.loc.gov/standards/mads/rdf/v1.rdf).freeze, %(http://www.w3.org/2004/02/skos/core).freeze, %(http://www.w3.org/2008/05/skos-xl).freeze],
15
+ type: "owl:Ontology".freeze
16
+
12
17
  # Class definitions
13
18
  term :Cartographics,
14
19
  comment: %(Aggregates cartographic properties.).freeze,
data/lib/rdf/vocab/oa.rb CHANGED
@@ -9,6 +9,16 @@ module RDF::Vocab
9
9
  # end
10
10
  class OA < RDF::StrictVocabulary("http://www.w3.org/ns/oa#")
11
11
 
12
+ # Ontology definition
13
+ ontology :"http://www.w3.org/ns/oa#",
14
+ comment: %(The Web Annotation ontology defines the terms of the Web Annotation vocabulary. Any changes to this document MUST be from a Working Group in the W3C that has established expertise in the area.).freeze,
15
+ :"dc11:title" => %(Web Annotation Ontology).freeze,
16
+ :"dc:modified" => %(2016-11-12T21:28:11Z).freeze,
17
+ :"owl:versionInfo" => %(2016-11-12T21:28:11Z).freeze,
18
+ :"prov:wasRevisionOf" => %(http://www.openannotation.org/spec/core/20130208/oa.owl).freeze,
19
+ :"rdfs:seeAlso" => %(http://www.w3.org/TR/annotation-vocab/).freeze,
20
+ type: "owl:Ontology".freeze
21
+
12
22
  # Class definitions
13
23
  term :Annotation,
14
24
  comment: %(The class for Web Annotations.).freeze,
@@ -21,12 +31,6 @@ module RDF::Vocab
21
31
  :"rdfs:isDefinedBy" => %(oa:).freeze,
22
32
  subClassOf: "http://www.w3.org/ns/activitystreams#OrderedCollection".freeze,
23
33
  type: "rdfs:Class".freeze
24
- term :Composite,
25
- comment: %(A subClass of as:OrderedCollection that conveys to a consuming application that it should use all of the resources in the as:items list, but that order is not important. This class is at-risk.).freeze,
26
- label: "Composite".freeze,
27
- :"rdfs:isDefinedBy" => %(oa:).freeze,
28
- subClassOf: "http://www.w3.org/ns/activitystreams#OrderedCollection".freeze,
29
- type: "rdfs:Class".freeze
30
34
  term :CssSelector,
31
35
  comment: %(A CssSelector describes a Segment of interest in a representation that conforms to the Document Object Model through the use of the CSS selector specification.).freeze,
32
36
  label: "CssSelector".freeze,
@@ -62,18 +66,6 @@ module RDF::Vocab
62
66
  :"rdfs:isDefinedBy" => %(oa:).freeze,
63
67
  subClassOf: "oa:State".freeze,
64
68
  type: "rdfs:Class".freeze
65
- term :Independents,
66
- comment: %(A subClass of as:OrderedCollection that conveys to a consuming application that each of the resources in the as:items list are independently associated with all of the other bodies or targets. This class is at-risk.).freeze,
67
- label: "Independents".freeze,
68
- :"rdfs:isDefinedBy" => %(oa:).freeze,
69
- subClassOf: "http://www.w3.org/ns/activitystreams#OrderedCollection".freeze,
70
- type: "rdfs:Class".freeze
71
- term :List,
72
- comment: %(A subClass of as:OrderedCollection that conveys to a consuming application that it should use each of the resources in the as:items list, and that their order is important. This class is at-risk.).freeze,
73
- label: "List".freeze,
74
- :"rdfs:isDefinedBy" => %(oa:).freeze,
75
- subClassOf: "http://www.w3.org/ns/activitystreams#OrderedCollection".freeze,
76
- type: "rdfs:Class".freeze
77
69
  term :Motivation,
78
70
  comment: %(The Motivation class is used to record the user's intent or motivation for the creation of the Annotation, or the inclusion of the body or target, that it is associated with.).freeze,
79
71
  label: "Motivation".freeze,
@@ -151,7 +143,7 @@ module RDF::Vocab
151
143
  # Property definitions
152
144
  property :annotationService,
153
145
  comment: %(The object of the relationship is the end point of a service that conforms to the annotation-protocol, and it may be associated with any resource. The expectation of asserting the relationship is that the object is the preferred service for maintaining annotations about the subject resource, according to the publisher of the relationship.
154
-
146
+
155
147
  This relationship is intended to be used both within Linked Data descriptions and as the rel type of a Link, via HTTP Link Headers rfc5988 for binary resources and in HTML <link> elements. For more information about these, please see the Annotation Protocol specification annotation-protocol.
156
148
  ).freeze,
157
149
  label: "annotationService".freeze,
@@ -274,7 +266,6 @@ module RDF::Vocab
274
266
  comment: %(A system that was used by the application that created the Annotation to render the resource.).freeze,
275
267
  domain: "oa:SpecificResource".freeze,
276
268
  label: "renderedVia".freeze,
277
- range: "rdfs:Resource".freeze,
278
269
  :"rdfs:isDefinedBy" => %(oa:).freeze,
279
270
  type: "rdf:Property".freeze
280
271
  property :sourceDate,
@@ -337,16 +328,6 @@ module RDF::Vocab
337
328
  type: "rdf:Property".freeze
338
329
 
339
330
  # Extra definitions
340
- term :"",
341
- comment: %(The Web Annotation ontology defines the terms of the Web Annotation vocabulary).freeze,
342
- :"dc11:title" => %(Web Annotation Ontology).freeze,
343
- :"dc:creator" => [%(Benjamin Young).freeze, %(Paolo Ciccarese).freeze, %(Robert Sanderson).freeze],
344
- :"dc:modified" => %(2016-06-03T14:54:43Z).freeze,
345
- label: "".freeze,
346
- :"owl:previousVersionURI" => %(http://www.openannotation.org/spec/core/20130208/oa.owl).freeze,
347
- :"owl:versionInfo" => %(2016-06-03T14:54:43Z).freeze,
348
- :"rdfs:seeAlso" => %(http://www.w3.org/TR/annotation-vocab/).freeze,
349
- type: "owl:Ontology".freeze
350
331
  term :PreferContainedDescriptions,
351
332
  comment: %(An IRI to signal the client prefers to receive full descriptions of the Annotations from a container, not just their IRIs.).freeze,
352
333
  label: "PreferContainedDescriptions".freeze,
@@ -402,9 +383,9 @@ module RDF::Vocab
402
383
  label: "linking".freeze,
403
384
  :"rdfs:isDefinedBy" => %(oa:).freeze,
404
385
  type: "oa:Motivation".freeze
405
- term :ltr,
386
+ term :ltrDirection,
406
387
  comment: %(The direction of text that is read from left to right.).freeze,
407
- label: "ltr".freeze,
388
+ label: "ltrDirection".freeze,
408
389
  :"rdfs:isDefinedBy" => %(oa:).freeze,
409
390
  type: "oa:Direction".freeze
410
391
  term :moderating,
@@ -422,9 +403,9 @@ module RDF::Vocab
422
403
  label: "replying".freeze,
423
404
  :"rdfs:isDefinedBy" => %(oa:).freeze,
424
405
  type: "oa:Motivation".freeze
425
- term :rtl,
406
+ term :rtlDirection,
426
407
  comment: %(The direction of text that is read from right to left.).freeze,
427
- label: "rtl".freeze,
408
+ label: "rtlDirection".freeze,
428
409
  :"rdfs:isDefinedBy" => %(oa:).freeze,
429
410
  type: "oa:Direction".freeze
430
411
  term :tagging,
data/lib/rdf/vocab/ore.rb CHANGED
@@ -9,6 +9,14 @@ module RDF::Vocab
9
9
  # end
10
10
  class ORE < RDF::StrictVocabulary("http://www.openarchives.org/ore/terms/")
11
11
 
12
+ # Ontology definition
13
+ ontology :"http://www.openarchives.org/ore/terms/",
14
+ comment: %(The set of terms provided by the OAI ORE initiative).freeze,
15
+ :"dc:license" => %(http://creativecommons.org/licenses/by-sa/3.0/).freeze,
16
+ :"dc:title" => %(The OAI ORE terms vocabulary).freeze,
17
+ label: "The OAI ORE terms vocabulary".freeze,
18
+ :"rdfs:seeAlso" => %(http://www.openarchives.org/ore/toc).freeze
19
+
12
20
  # Class definitions
13
21
  term :AggregatedResource,
14
22
  comment: %(A resource which is included in an Aggregation. Note that asserting that a resource is a member of the class of Aggregated Resources does not imply anything other than that it is aggregated by at least one Aggregation.).freeze,
@@ -95,13 +103,5 @@ module RDF::Vocab
95
103
  label: "Similar To".freeze,
96
104
  :"rdfs:isDefinedBy" => %(ore:).freeze,
97
105
  type: "rdf:Property".freeze
98
-
99
- # Extra definitions
100
- term :"",
101
- comment: %(The set of terms provided by the OAI ORE initiative).freeze,
102
- :"dc:license" => %(http://creativecommons.org/licenses/by-sa/3.0/).freeze,
103
- :"dc:title" => %(The OAI ORE terms vocabulary).freeze,
104
- label: "The OAI ORE terms vocabulary".freeze,
105
- :"rdfs:seeAlso" => %(http://www.openarchives.org/ore/toc).freeze
106
106
  end
107
107
  end
data/lib/rdf/vocab/org.rb CHANGED
@@ -9,6 +9,18 @@ module RDF::Vocab
9
9
  # end
10
10
  class ORG < RDF::StrictVocabulary("http://www.w3.org/ns/org#")
11
11
 
12
+ # Ontology definition
13
+ ontology :"http://www.w3.org/ns/org#",
14
+ comment: %(Vocabulary for describing organizational structures, specializable to a broad variety of types of organization.).freeze,
15
+ :"dc:created" => %(2010-05-28).freeze,
16
+ :"dc:license" => %(http://www.opendatacommons.org/licenses/pddl/1.0/).freeze,
17
+ :"dc:modified" => [%(2010-06-09).freeze, %(2010-10-08).freeze, %(2012-09-30).freeze, %(2012-10-06).freeze, %(2013-02-15).freeze, %(2013-12-16).freeze, %(2014-01-02).freeze, %(2014-01-25).freeze, %(2014-02-05).freeze, %(2014-04-12).freeze],
18
+ :"dc:title" => %(Core organization ontology).freeze,
19
+ label: "Core organization ontology".freeze,
20
+ :"owl:versionInfo" => %(0.8).freeze,
21
+ :"rdfs:seeAlso" => %(http://www.w3.org/TR/vocab-org/).freeze,
22
+ type: "owl:Ontology".freeze
23
+
12
24
  # Class definitions
13
25
  term :ChangeEvent,
14
26
  comment: %(Represents an event which resulted in a major change to an organization such as a merger or complete restructuring. It is intended for situations where the resulting organization is sufficient distinct from the original organizations that it has a distinct identity and distinct URI. Extension vocabularies should define sub-classes of this to denote particular categories of event. The instant or interval at which the event occurred should be given by `prov:startAtTime` and `prov:endedAtTime`, a description should be given by `dct:description`. ).freeze,
@@ -333,16 +345,6 @@ module RDF::Vocab
333
345
  type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze]
334
346
 
335
347
  # Extra definitions
336
- term :"",
337
- comment: %(Vocabulary for describing organizational structures, specializable to a broad variety of types of organization.).freeze,
338
- :"dc:created" => %(2010-05-28).freeze,
339
- :"dc:license" => %(http://www.opendatacommons.org/licenses/pddl/1.0/).freeze,
340
- :"dc:modified" => [%(2010-06-09).freeze, %(2010-10-08).freeze, %(2012-09-30).freeze, %(2012-10-06).freeze, %(2013-02-15).freeze, %(2013-12-16).freeze, %(2014-01-02).freeze, %(2014-01-25).freeze, %(2014-02-05).freeze, %(2014-04-12).freeze],
341
- :"dc:title" => %(Core organization ontology).freeze,
342
- label: "Core organization ontology".freeze,
343
- :"owl:versionInfo" => %(0.8).freeze,
344
- :"rdfs:seeAlso" => %(http://www.w3.org/TR/vocab-org/).freeze,
345
- type: "owl:Ontology".freeze
346
348
  term :Head,
347
349
  comment: %(A role corresponding to the `org:headOf` property).freeze,
348
350
  label: "head".freeze,
@@ -9,6 +9,20 @@ module RDF::Vocab
9
9
  # end
10
10
  class PPLAN < RDF::StrictVocabulary("http://purl.org/net/p-plan#")
11
11
 
12
+ # Ontology definition
13
+ ontology :"http://purl.org/net/p-plan#",
14
+ comment: %(PROV extension for linking Plans and parts of plans to their respective executions. Created by Daniel Garijo and Yolanda Gil).freeze,
15
+ :"dc:created" => %(2012-11-10).freeze,
16
+ :"dc:creator" => [%(http://delicias.dia.fi.upm.es/members/DGarijo#me).freeze, %(http://www.isi.edu/~gil/).freeze],
17
+ :"dc:description" => %(PROV extension for linking Plans and parts of plans to their respective executions.).freeze,
18
+ :"dc:license" => %(http://creativecommons.org/licenses/by-nc-sa/2.0/).freeze,
19
+ :"dc:modified" => %(2014-03-12).freeze,
20
+ :"dc:title" => %(The P-Plan ontology).freeze,
21
+ :"http://purl.org/vocab/vann/preferredNamespacePrefix" => %(p-plan).freeze,
22
+ :"http://purl.org/vocab/vann/preferredNamespaceUri" => %(http://purl.org/net/p-plan#).freeze,
23
+ :"owl:versionInfo" => %(1.3).freeze,
24
+ type: ["owl:NamedIndividual".freeze, "owl:Ontology".freeze, "owl:Thing".freeze]
25
+
12
26
  # Class definitions
13
27
  term :Activity,
14
28
  comment: %(A p-plan:Activity represents the execution process planned in a p-plan:Step).freeze,
@@ -132,20 +146,5 @@ module RDF::Vocab
132
146
  range: "pplan:Plan".freeze,
133
147
  :"rdfs:isDefinedBy" => %(pplan:).freeze,
134
148
  type: "owl:ObjectProperty".freeze
135
-
136
- # Extra definitions
137
- term :"",
138
- comment: %(PROV extension for linking Plans and parts of plans to their respective executions. Created by Daniel Garijo and Yolanda Gil).freeze,
139
- :"dc:created" => %(2012-11-10).freeze,
140
- :"dc:creator" => [%(http://delicias.dia.fi.upm.es/members/DGarijo#me).freeze, %(http://www.isi.edu/~gil/).freeze],
141
- :"dc:description" => %(PROV extension for linking Plans and parts of plans to their respective executions.).freeze,
142
- :"dc:license" => %(http://creativecommons.org/licenses/by-nc-sa/2.0/).freeze,
143
- :"dc:modified" => %(2014-03-12).freeze,
144
- :"dc:title" => %(The P-Plan ontology).freeze,
145
- :"http://purl.org/vocab/vann/preferredNamespacePrefix" => %(p-plan).freeze,
146
- :"http://purl.org/vocab/vann/preferredNamespaceUri" => %(http://purl.org/net/p-plan#).freeze,
147
- label: "".freeze,
148
- :"owl:versionInfo" => %(1.3).freeze,
149
- type: ["owl:NamedIndividual".freeze, "owl:Ontology".freeze, "owl:Thing".freeze]
150
149
  end
151
150
  end
@@ -9,6 +9,17 @@ module RDF::Vocab
9
9
  # end
10
10
  class PREMIS < RDF::StrictVocabulary("http://www.loc.gov/premis/rdf/v1#")
11
11
 
12
+ # Ontology definition
13
+ ontology :"http://www.loc.gov/premis/rdf/v1",
14
+ comment: %(This ontology identifies the classes and properties used to describe preservation metadata in RDF.).freeze,
15
+ :"dc:modified" => %(2012-09-14T00:00:00Z).freeze,
16
+ label: "Preservation Metadata: Implementation Strategies (PREMIS) Ontology".freeze,
17
+ :"owl:imports" => [%(http://id.loc.gov/vocabulary/preservation/actionsGranted).freeze, %(http://id.loc.gov/vocabulary/preservation/agentType).freeze, %(http://id.loc.gov/vocabulary/preservation/contentLocationType).freeze, %(http://id.loc.gov/vocabulary/preservation/copyrightStatus).freeze, %(http://id.loc.gov/vocabulary/preservation/cryptographicHashFunctions).freeze, %(http://id.loc.gov/vocabulary/preservation/environmentCharacteristic).freeze, %(http://id.loc.gov/vocabulary/preservation/environmentPurpose).freeze, %(http://id.loc.gov/vocabulary/preservation/eventRelatedAgentRole).freeze, %(http://id.loc.gov/vocabulary/preservation/eventRelatedObjectRole).freeze, %(http://id.loc.gov/vocabulary/preservation/eventType).freeze, %(http://id.loc.gov/vocabulary/preservation/formatRegistryRole).freeze, %(http://id.loc.gov/vocabulary/preservation/hardwareType).freeze, %(http://id.loc.gov/vocabulary/preservation/inhibitorTarget).freeze, %(http://id.loc.gov/vocabulary/preservation/inhibitorType).freeze, %(http://id.loc.gov/vocabulary/preservation/objectCategory).freeze, %(http://id.loc.gov/vocabulary/preservation/preservationLevelRole).freeze, %(http://id.loc.gov/vocabulary/preservation/relationshipSubType).freeze, %(http://id.loc.gov/vocabulary/preservation/relationshipType).freeze, %(http://id.loc.gov/vocabulary/preservation/rightsBasis).freeze, %(http://id.loc.gov/vocabulary/preservation/rightsRelatedAgentRole).freeze, %(http://id.loc.gov/vocabulary/preservation/signatureEncoding).freeze, %(http://id.loc.gov/vocabulary/preservation/signatureMethod).freeze, %(http://id.loc.gov/vocabulary/preservation/softwareType).freeze, %(http://id.loc.gov/vocabulary/preservation/storageMedium).freeze],
18
+ :"owl:versionInfo" => %(version 2.2.1).freeze,
19
+ :"rdfs:isDefinedBy" => %(http://www.loc.gov/standards/premis/v2/premis-2-2.pdf).freeze,
20
+ :"rdfs:seeAlso" => %(http://multimedialab.elis.ugent.be/users/samcoppe/ontologies/Premis/index.html for the OWL Documentation of the ontology.).freeze,
21
+ type: "owl:Ontology".freeze
22
+
12
23
  # Class definitions
13
24
  term :Agent,
14
25
  comment: %(The Agent entity aggregates information about attributes or characteristics of agents \(persons, organizations, or software\) associated with rights management and preservation events in the life of a data object. Agent information serves to identify an agent unambiguously from all other
@@ -9,6 +9,16 @@ module RDF::Vocab
9
9
  # end
10
10
  class PremisEventType < RDF::StrictVocabulary("http://id.loc.gov/vocabulary/preservation/eventType/")
11
11
 
12
+ # Ontology definition
13
+ ontology :"http://id.loc.gov/vocabulary/preservation/eventType",
14
+ comment: %(Event types are actions performed on digital objects within a preservation repository.).freeze,
15
+ label: "Event Type".freeze,
16
+ :"mads:hasMADSSchemeMember" => %(premiseventtype:collection_PREMIS).freeze,
17
+ :"mads:hasTopMemberOfMADSScheme" => [%(premiseventtype:cap).freeze, %(premiseventtype:com).freeze, %(premiseventtype:cre).freeze, %(premiseventtype:dea).freeze, %(premiseventtype:dec).freeze, %(premiseventtype:del).freeze, %(premiseventtype:der).freeze, %(premiseventtype:dig).freeze, %(premiseventtype:fix).freeze, %(premiseventtype:ing).freeze, %(premiseventtype:mes).freeze, %(premiseventtype:mig).freeze, %(premiseventtype:nor).freeze, %(premiseventtype:rep).freeze, %(premiseventtype:val).freeze, %(premiseventtype:vir).freeze],
18
+ :"owl:sameAs" => %(http://id.loc.gov/vocabulary/preservationEvents).freeze,
19
+ :"skos:hasTopConcept" => [%(premiseventtype:cap).freeze, %(premiseventtype:com).freeze, %(premiseventtype:cre).freeze, %(premiseventtype:dea).freeze, %(premiseventtype:dec).freeze, %(premiseventtype:del).freeze, %(premiseventtype:der).freeze, %(premiseventtype:dig).freeze, %(premiseventtype:fix).freeze, %(premiseventtype:ing).freeze, %(premiseventtype:mes).freeze, %(premiseventtype:mig).freeze, %(premiseventtype:nor).freeze, %(premiseventtype:rep).freeze, %(premiseventtype:val).freeze, %(premiseventtype:vir).freeze],
20
+ type: ["mads:MADSScheme".freeze, "skos:ConceptScheme".freeze]
21
+
12
22
  # Extra definitions
13
23
  term :cap,
14
24
  label: "capture".freeze,
@@ -9,6 +9,22 @@ module RDF::Vocab
9
9
  # end
10
10
  class PROV < RDF::StrictVocabulary("http://www.w3.org/ns/prov#")
11
11
 
12
+ # Ontology definition
13
+ ontology :"http://www.w3.org/ns/prov#",
14
+ comment: %(This document is published by the Provenance Working Group \(http://www.w3.org/2011/prov/wiki/Main_Page\).
15
+
16
+ If you wish to make comments regarding this document, please send them to public-prov-comments@w3.org \(subscribe public-prov-comments-request@w3.org, archives http://lists.w3.org/
17
+ Archives/Public/public-prov-comments/\). All feedback is welcome.).freeze,
18
+ label: "W3C PROVenance Interchange".freeze,
19
+ :"owl:imports" => [%(http://www.w3.org/ns/prov-aq#).freeze, %(http://www.w3.org/ns/prov-dc#).freeze, %(http://www.w3.org/ns/prov-dictionary#).freeze, %(http://www.w3.org/ns/prov-links#).freeze, %(http://www.w3.org/ns/prov-o#).freeze, %(http://www.w3.org/ns/prov-o-inverses#).freeze],
20
+ :"owl:versionIRI" => [%(http://www.w3.org/ns/prov-20130430).freeze, %(http://www.w3.org/ns/prov-o-inverses-20130430).freeze],
21
+ :"prov:specializationOf" => %(http://www.w3.org/ns/prov-o-inverses).freeze,
22
+ :"prov:wasDerivedFrom" => [%(http://www.w3.org/ns/prov-aq#).freeze, %(http://www.w3.org/ns/prov-dc#).freeze, %(http://www.w3.org/ns/prov-dictionary#).freeze, %(http://www.w3.org/ns/prov-links#).freeze, %(http://www.w3.org/ns/prov-o#).freeze, %(http://www.w3.org/ns/prov-o-20130430).freeze, %(http://www.w3.org/ns/prov-o-inverses#).freeze],
23
+ :"prov:wasRevisionOf" => [%(http://www.w3.org/ns/prov-20130312).freeze, %(http://www.w3.org/ns/prov-o-inverses-20120312).freeze],
24
+ :"rdfs:isDefinedBy" => %(http://www.w3.org/ns/prov).freeze,
25
+ :"rdfs:seeAlso" => [%(http://www.w3.org/TR/prov-o/#names-of-inverse-properties).freeze, %(http://www.w3.org/TR/prov-overview/).freeze],
26
+ type: "owl:Ontology".freeze
27
+
12
28
  # Class definitions
13
29
  term :Accept,
14
30
  label: "Accept".freeze,
@@ -1388,20 +1404,6 @@ prov:wasInfluencedBy should not be used without also using one of its subpropert
1388
1404
  type: "owl:ObjectProperty".freeze
1389
1405
 
1390
1406
  # Extra definitions
1391
- term :"",
1392
- comment: %(This document is published by the Provenance Working Group \(http://www.w3.org/2011/prov/wiki/Main_Page\).
1393
-
1394
- If you wish to make comments regarding this document, please send them to public-prov-comments@w3.org \(subscribe public-prov-comments-request@w3.org, archives http://lists.w3.org/
1395
- Archives/Public/public-prov-comments/\). All feedback is welcome.).freeze,
1396
- label: "W3C PROVenance Interchange".freeze,
1397
- :"owl:imports" => [%(http://www.w3.org/ns/prov-aq#).freeze, %(http://www.w3.org/ns/prov-dc#).freeze, %(http://www.w3.org/ns/prov-dictionary#).freeze, %(http://www.w3.org/ns/prov-links#).freeze, %(http://www.w3.org/ns/prov-o#).freeze, %(http://www.w3.org/ns/prov-o-inverses#).freeze],
1398
- :"owl:versionIRI" => [%(http://www.w3.org/ns/prov-20130430).freeze, %(http://www.w3.org/ns/prov-o-inverses-20130430).freeze],
1399
- :"prov:specializationOf" => %(http://www.w3.org/ns/prov-o-inverses).freeze,
1400
- :"prov:wasDerivedFrom" => [%(http://www.w3.org/ns/prov-aq#).freeze, %(http://www.w3.org/ns/prov-dc#).freeze, %(http://www.w3.org/ns/prov-dictionary#).freeze, %(http://www.w3.org/ns/prov-links#).freeze, %(http://www.w3.org/ns/prov-o#).freeze, %(http://www.w3.org/ns/prov-o-20130430).freeze, %(http://www.w3.org/ns/prov-o-inverses#).freeze],
1401
- :"prov:wasRevisionOf" => [%(http://www.w3.org/ns/prov-20130312).freeze, %(http://www.w3.org/ns/prov-o-inverses-20120312).freeze],
1402
- :"rdfs:isDefinedBy" => %(http://www.w3.org/ns/prov).freeze,
1403
- :"rdfs:seeAlso" => [%(http://www.w3.org/TR/prov-o/#names-of-inverse-properties).freeze, %(http://www.w3.org/TR/prov-overview/).freeze],
1404
- type: "owl:Ontology".freeze
1405
1407
  term :activityOfInfluence,
1406
1408
  label: "activityOfInfluence".freeze,
1407
1409
  :"owl:inverseOf" => %(prov:activity).freeze,
@@ -0,0 +1,247 @@
1
+ # -*- encoding: utf-8 -*-
2
+ # frozen_string_literal: true
3
+ # This file generated automatically using rdf vocabulary format from http://rightsstatements.org/vocab/
4
+ require 'rdf'
5
+ module RDF::Vocab
6
+ # @!parse
7
+ # # Vocabulary for <http://rightsstatements.org/vocab/>
8
+ # class RightsStatements < RDF::StrictVocabulary
9
+ # end
10
+ class RightsStatements < RDF::StrictVocabulary("http://rightsstatements.org/vocab/")
11
+
12
+ # Extra definitions
13
+ term :"1.0/",
14
+ :"dc11:identifier" => %(rscs).freeze,
15
+ :"dc:creator" => %(rightsstatements:irswg).freeze,
16
+ :"dc:title" => %(RightsStatements.org Standardized International Rights Statements).freeze,
17
+ label: "1.0/".freeze,
18
+ :"owl:versionInfo" => %(1.0).freeze,
19
+ type: "skos:ConceptScheme".freeze
20
+ term :"CNE/1.0/",
21
+ :"dc11:identifier" => %(CNE).freeze,
22
+ :"dc:creator" => %(rightsstatements:irswg).freeze,
23
+ :"dc:modified" => %(2015-10-16).freeze,
24
+ label: "CNE/1.0/".freeze,
25
+ :"owl:versionInfo" => %(1.0).freeze,
26
+ :"skos:closeMatch" => %(http://www.europeana.eu/rights/unknown/).freeze,
27
+ :"skos:definition" => %(The copyright and related rights status of this Item has not been evaluated.
28
+
29
+ Please refer to the organization that has made the Item available for more information.
30
+
31
+ You are free to use this Item in any way that is permitted by the copyright and related rights legislation that applies to your use.).freeze,
32
+ :"skos:inScheme" => %(http://rightsstatements.org/vocab/1.0/).freeze,
33
+ :"skos:note" => [%(Unless expressly stated otherwise, the organization that has made this Item available makes no warranties about the Item and cannot guarantee the accuracy of this Rights Statement. You are responsible for your own use.).freeze, %(You may find additional information about the copyright status of the Item on the website of the organization that has made the Item available.).freeze, %(You may need to obtain other permissions for your intended use. For example, other rights such as publicity, privacy or moral rights may limit how you may use the material.).freeze],
34
+ :"skos:prefLabel" => %(Copyright Not Evaluated).freeze,
35
+ :"skos:relatedMatch" => %(http://id.loc.gov/vocabulary/preservation/copyrightStatus/unk).freeze,
36
+ :"skos:scopeNote" => %(This Rights Statement should be used for Items for which the copyright status is unknown and for which the data provider has not undertaken an effort to determine the copyright status of the work.).freeze,
37
+ type: ["dc:RightsStatement".freeze, "skos:Concept".freeze]
38
+ term :"InC-EDU/1.0/",
39
+ :"dc11:identifier" => %(InC-EDU).freeze,
40
+ :"dc:creator" => %(rightsstatements:irswg).freeze,
41
+ :"dc:modified" => %(2015-10-16).freeze,
42
+ label: "InC-EDU/1.0/".freeze,
43
+ :"owl:versionInfo" => %(1.0).freeze,
44
+ :"skos:definition" => %(This Item is protected by copyright and/or related rights.
45
+
46
+ You are free to use this Item in any way that is permitted by the copyright and related rights legislation that applies to your use. In addition, no permission is required from the rights-holder\(s\) for educational uses.
47
+
48
+ For other uses, you need to obtain permission from the rights-holder\(s\).).freeze,
49
+ :"skos:inScheme" => %(http://rightsstatements.org/vocab/1.0/).freeze,
50
+ :"skos:note" => [%(Unless expressly stated otherwise, the organization that has made this Item available makes no warranties about the Item and cannot guarantee the accuracy of this Rights Statement. You are responsible for your own use.).freeze, %(You may find additional information about the copyright status of the Item on the website of the organization that has made the Item available.).freeze, %(You may need to obtain other permissions for your intended use. For example, other rights such as publicity, privacy or moral rights may limit how you may use the material.).freeze],
51
+ :"skos:prefLabel" => %(In Copyright - Educational Use Permitted).freeze,
52
+ :"skos:relatedMatch" => %(http://id.loc.gov/vocabulary/preservation/copyrightStatus/cpr).freeze,
53
+ :"skos:scopeNote" => %(This Rights Statement can be used only for copyrighted Items for which the organization making the Item available is the rights-holder or has been explicitly authorized by the rights-holder\(s\) to allow third parties to use the Work for educational purposes without first obtaining permission.).freeze,
54
+ type: ["dc:RightsStatement".freeze, "skos:Concept".freeze]
55
+ term :"InC-NC/1.0/",
56
+ :"cc:prohibits" => %(cc:CommercialUse).freeze,
57
+ :"dc11:identifier" => %(InC-NC).freeze,
58
+ :"dc:creator" => %(rightsstatements:irswg).freeze,
59
+ :"dc:modified" => %(2016-05-09).freeze,
60
+ label: "InC-NC/1.0/".freeze,
61
+ :"owl:versionInfo" => %(1.0).freeze,
62
+ :"skos:closeMatch" => %(http://creativecommons.org/licenses/by-nc/4.0/).freeze,
63
+ :"skos:definition" => %(This Item is protected by copyright and/or related rights.
64
+
65
+ You are free to use this Item in any way that is permitted by the copyright and related rights legislation that applies to your use. In addition, no permission is required from the rights-holder\(s\) for non-commercial uses.
66
+
67
+ For other uses you need to obtain permission from the rights-holder\(s\).).freeze,
68
+ :"skos:inScheme" => %(http://rightsstatements.org/vocab/1.0/).freeze,
69
+ :"skos:note" => [%(Unless expressly stated otherwise, the organization that has made this Item available makes no warranties about the Item and cannot guarantee the accuracy of this Rights Statement. You are responsible for your own use.).freeze, %(You may find additional information about the copyright status of the Item on the website of the organization that has made the Item available.).freeze, %(You may need to obtain other permissions for your intended use. For example, other rights such as publicity, privacy or moral rights may limit how you may use the material.).freeze],
70
+ :"skos:prefLabel" => %(In Copyright - Non-Commercial Use Permitted).freeze,
71
+ :"skos:relatedMatch" => %(http://id.loc.gov/vocabulary/preservation/copyrightStatus/cpr).freeze,
72
+ :"skos:scopeNote" => %(This Rights Statement can be used only for copyrighted Items for which the organization making the Item available is the rights-holder or has been explicitly authorized by the rights-holder\(s\) to allow third parties to use the Work for non-commercial purposes without obtaining permission first.).freeze,
73
+ type: ["dc:RightsStatement".freeze, "skos:Concept".freeze]
74
+ term :"InC-OW-EU/1.0/",
75
+ :"dc11:identifier" => %(InC-OW-EU).freeze,
76
+ :"dc:creator" => %(rightsstatements:irswg).freeze,
77
+ :"dc:modified" => %(2015-10-15).freeze,
78
+ label: "InC-OW-EU/1.0/".freeze,
79
+ :"owl:versionInfo" => %(1.0).freeze,
80
+ :"skos:closeMatch" => %(http://www.europeana.eu/rights/orphan-work-eu/).freeze,
81
+ :"skos:definition" => %(This Item has been identified as an orphan work in the country of first publication and in line with Directive 2012/28/EU of the European Parliament and of the Council of 25 October 2012 on certain permitted uses of orphan works.
82
+
83
+ For this Item, either \(a\) no rights-holder\(s\) have been identified or \(b\) one or more rights-holder\(s\) have been identified but none have been located even though a diligent search for the rights-holder\(s\) has been conducted. The results of the diligent search are available in the EU Orphan Works Database.
84
+
85
+ You are free to use this Item in any way that is permitted by the copyright and related rights legislation that applies to your use.).freeze,
86
+ :"skos:inScheme" => %(http://rightsstatements.org/vocab/1.0/).freeze,
87
+ :"skos:note" => [%(If you have any information that can contribute to identifying or locating the rights-holder\(s\), please notify the organization that has made the Item available.).freeze, %(Unless expressly stated otherwise, the organization that has made this Item available makes no warranties about the Item and cannot guarantee the accuracy of this Rights Statement. You are responsible for your own use.).freeze, %(You may find additional information about the copyright status of the Item on the website of the organization that has made the Item available.).freeze, %(You may need to obtain other permissions for your intended use. For example, other rights such as publicity, privacy or moral rights may limit how you may use the material.).freeze],
88
+ :"skos:prefLabel" => %(In Copyright - EU Orphan Work).freeze,
89
+ :"skos:relatedMatch" => %(http://id.loc.gov/vocabulary/preservation/copyrightStatus/cpr).freeze,
90
+ :"skos:scopeNote" => %(This Rights Statement is intended for use with Works that have been identified as Orphan Works in accordance with Directive 2012/28/EU of the European Parliament and of the Council of 25 October 2012 on certain permitted uses of Orphan Works. It can only be applied to Works that are covered by the Directive: Works published in the form of books, journals, newspapers, magazines or other writings as well as cinematographic or audiovisual works and phonograms \(note: this excludes photography and visual arts\). It can only be applied by data providers that are beneficiaries of the Directive: publicly accessible libraries, educational establishments and museums, archives, film or audio heritage institutions and public-service broadcasting organizations, established in one of the EU member states. The beneficiary is also expected to have registered the work in the EU Orphan Works Database maintained by OHIM.).freeze,
91
+ type: ["dc:RightsStatement".freeze, "skos:Concept".freeze]
92
+ term :"InC-RUU/1.0/",
93
+ :"dc11:identifier" => %(InC-RUU).freeze,
94
+ :"dc:creator" => %(rightsstatements:irswg).freeze,
95
+ :"dc:modified" => %(2016-02-24).freeze,
96
+ label: "InC-RUU/1.0/".freeze,
97
+ :"owl:versionInfo" => %(1.0).freeze,
98
+ :"skos:definition" => %(This Item is protected by copyright and/or related rights. However, for this Item, either \(a\) no rights-holder\(s\) have been identified or \(b\) one or more rights-holder\(s\) have been identified but none have been located.
99
+
100
+ You are free to use this Item in any way that is permitted by the copyright and related rights legislation that applies to your use.).freeze,
101
+ :"skos:inScheme" => %(http://rightsstatements.org/vocab/1.0/).freeze,
102
+ :"skos:note" => [%(If you have any information that can contribute to identifying or locating the rights-holder\(s\) please notify the organization that has made the Item available.).freeze, %(Unless expressly stated otherwise, the organization that has made this Item available makes no warranties about the Item and cannot guarantee the accuracy of this Rights Statement. You are responsible for your own use.).freeze, %(You may find additional information about the copyright status of the Item on the website of the organization that has made the Item available.).freeze, %(You may need to obtain other permissions for your intended use. For example, other rights such as publicity, privacy or moral rights may limit how you may use the material.).freeze],
103
+ :"skos:prefLabel" => %(In Copyright - Rights-holder\(s\) Unlocatable or Unidentifiable).freeze,
104
+ :"skos:relatedMatch" => %(http://id.loc.gov/vocabulary/preservation/copyrightStatus/cpr).freeze,
105
+ :"skos:scopeNote" => %(This Rights Statement is intended for use with an Item that has been identified as in copyright but for which no rights-holder\(s\) has been identified or located after some reasonable investigation. This Rights Statement should only be used if the data provider is reasonably sure that the work is in copyright. This Rights Statement is not intended for use by EU-based data providers who have identified works as Orphan Works in accordance with the EU Orphan Works Directive \(they must use InC-OW-EU instead\).).freeze,
106
+ type: ["dc:RightsStatement".freeze, "skos:Concept".freeze]
107
+ term :"InC/1.0/",
108
+ :"dc11:identifier" => %(InC).freeze,
109
+ :"dc:creator" => %(rightsstatements:irswg).freeze,
110
+ :"dc:modified" => %(2016-05-09).freeze,
111
+ label: "InC/1.0/".freeze,
112
+ :"owl:versionInfo" => %(1.0).freeze,
113
+ :"skos:closeMatch" => %(http://www.europeana.eu/rights/rr-f/).freeze,
114
+ :"skos:definition" => %(This Item is protected by copyright and/or related rights.
115
+
116
+ You are free to use this Item in any way that is permitted by the copyright and related rights legislation that applies to your use.
117
+
118
+ For other uses you need to obtain permission from the rights-holder\(s\).).freeze,
119
+ :"skos:inScheme" => %(http://rightsstatements.org/vocab/1.0/).freeze,
120
+ :"skos:note" => [%(Unless expressly stated otherwise, the organization that has made this Item available makes no warranties about the Item and cannot guarantee the accuracy of this Rights Statement. You are responsible for your own use.).freeze, %(You may find additional information about the copyright status of the Item on the website of the organization that has made the Item available.).freeze, %(You may need to obtain other permissions for your intended use. For example, other rights such as publicity, privacy or moral rights may limit how you may use the material.).freeze],
121
+ :"skos:prefLabel" => %(In Copyright).freeze,
122
+ :"skos:relatedMatch" => %(http://id.loc.gov/vocabulary/preservation/copyrightStatus/cpr).freeze,
123
+ :"skos:scopeNote" => %(This Rights Statement can be used for an Item that is in copyright. Using this statement implies that the organization making this Item available has determined that the Item is in copyright and either is the rights-holder, has obtained permission from the rights-holder\(s\) to make the Work available, or makes the Work available under an exception or limitation to copyright \(including Fair Use\) that entitles it to make the Work available.).freeze,
124
+ type: ["dc:RightsStatement".freeze, "skos:Concept".freeze]
125
+ term :"NKC/1.0/",
126
+ :"dc11:identifier" => %(NKC).freeze,
127
+ :"dc:creator" => %(rightsstatements:irswg).freeze,
128
+ :"dc:modified" => %(2015-10-16).freeze,
129
+ label: "NKC/1.0/".freeze,
130
+ :"owl:versionInfo" => %(1.0).freeze,
131
+ :"skos:definition" => %(The organization that has made the Item available reasonably believes that the Item is not restricted by copyright or related rights, but a conclusive determination could not be made.
132
+
133
+ Please refer to the organization that has made the Item available for more information.
134
+
135
+ You are free to use this Item in any way that is permitted by the copyright and related rights legislation that applies to your use.).freeze,
136
+ :"skos:inScheme" => %(http://rightsstatements.org/vocab/1.0/).freeze,
137
+ :"skos:note" => [%(Unless expressly stated otherwise, the organization that has made this Item available makes no warranties about the Item and cannot guarantee the accuracy of this Rights Statement. You are responsible for your own use.).freeze, %(You may find additional information about the copyright status of the Item on the website of the organization that has made the Item available.).freeze, %(You may need to obtain other permissions for your intended use. For example, other rights such as publicity, privacy or moral rights may limit how you may use the material.).freeze],
138
+ :"skos:prefLabel" => %(No Known Copyright).freeze,
139
+ :"skos:relatedMatch" => %(http://id.loc.gov/vocabulary/preservation/copyrightStatus/unk).freeze,
140
+ :"skos:scopeNote" => %(This Rights Statement should be used for Items for which the copyright status has not been determined conclusively, but for which the data provider has reasonable cause to believe that the work is not covered by copyright or related rights anymore. This Rights Statement should not be used for Orphan Works \(which are assumed to be in-copyright\) or for Works where the data provider has not undertaken an effort to ascertain the copyright status of the Work.).freeze,
141
+ type: ["dc:RightsStatement".freeze, "skos:Concept".freeze]
142
+ term :"NoC-CR/1.0/",
143
+ :"dc11:identifier" => %(NoC-CR).freeze,
144
+ :"dc:creator" => %(rightsstatements:irswg).freeze,
145
+ :"dc:modified" => %(2016-04-22).freeze,
146
+ label: "NoC-CR/1.0/".freeze,
147
+ :"owl:versionInfo" => %(1.0).freeze,
148
+ :"skos:definition" => %(Use of this Item is not restricted by copyright and/or related rights.
149
+
150
+ As part of the acquisition or digitization of this Item, the organization that has made the Item available is contractually required to limit the use of this Item. Limitations may include, but are not limited to, privacy issues, cultural protections, digitization agreements or donor agreements.
151
+
152
+ Please refer to the organization that has made the Item available for more information.).freeze,
153
+ :"skos:inScheme" => %(http://rightsstatements.org/vocab/1.0/).freeze,
154
+ :"skos:note" => [%(Unless expressly stated otherwise, the organization that has made this Item available makes no warranties about the Item and cannot guarantee the accuracy of this Rights Statement. You are responsible for your own use.).freeze, %(You may find additional information about the copyright status of the Item on the website of the organization that has made the Item available.).freeze, %(You may need to obtain other permissions for your intended use. For example, other rights such as publicity, privacy or moral rights may limit how you may use the material.).freeze],
155
+ :"skos:prefLabel" => %(No Copyright - Contractual Restrictions).freeze,
156
+ :"skos:relatedMatch" => %(http://id.loc.gov/vocabulary/preservation/copyrightStatus/pub).freeze,
157
+ :"skos:scopeNote" => %(This Rights Statement can only be used for Items that are in the Public Domain but for which the data provider has entered into contractual agreement that requires it to take steps to restrict third party uses of the Item. In order for this Rights Statement to be conclusive, the data provider must provide a link to a page detailing the contractual restrictions that apply to the use of the Item.).freeze,
158
+ type: ["dc:RightsStatement".freeze, "skos:Concept".freeze]
159
+ term :"NoC-NC/1.0/",
160
+ :"cc:prohibits" => %(cc:CommercialUse).freeze,
161
+ :"dc11:identifier" => %(NoC-NC).freeze,
162
+ :"dc:creator" => %(rightsstatements:irswg).freeze,
163
+ :"dc:modified" => %(2016-04-22).freeze,
164
+ label: "NoC-NC/1.0/".freeze,
165
+ :"owl:versionInfo" => %(1.0).freeze,
166
+ :"skos:definition" => %(This object has been digitized in a public-private partnership. As part of this partnership, the partners have agreed to limit commercial uses of this digital representation of the object by third parties.
167
+
168
+ You can, without permission, copy, modify, distribute, display, or perform the digital object, for non-commercial uses. For any other permissible uses, please review the terms and conditions of the organization that has made the item available.).freeze,
169
+ :"skos:inScheme" => %(http://rightsstatements.org/vocab/1.0/).freeze,
170
+ :"skos:note" => [%(Unless expressly stated otherwise, the organization that has made this Item available makes no warranties about the Item and cannot guarantee the accuracy of this Rights Statement. You are responsible for your own use.).freeze, %(You may find additional information about the copyright status of the Item on the website of the organization that has made the Item available.).freeze, %(You may need to obtain other permissions for your intended use. For example, other rights such as publicity, privacy, or moral rights may limit how you may use the material.).freeze],
171
+ :"skos:prefLabel" => %(No Copyright - Non-Commercial Use Only ).freeze,
172
+ :"skos:relatedMatch" => %(http://id.loc.gov/vocabulary/preservation/copyrightStatus/pub).freeze,
173
+ :"skos:scopeNote" => %(This Rights Statement can only be used for Works that are in the Public Domain and have been digitized in a public-private partnership as part of which, the partners have agreed to limit commercial uses of this digital representation of the Work by third parties. It has been developed specifically to allow the inclusion of Works that have been digitized as part of the partnerships between European Libraries and Google, but can in theory be applied to Works that have been digitized in similar public-private partnerships.).freeze,
174
+ type: ["dc:RightsStatement".freeze, "skos:Concept".freeze]
175
+ term :"NoC-OKLR/1.0/",
176
+ :"dc11:identifier" => %(NoC-OKLR).freeze,
177
+ :"dc:creator" => %(rightsstatements:irswg).freeze,
178
+ :"dc:modified" => %(2016-04-22).freeze,
179
+ label: "NoC-OKLR/1.0/".freeze,
180
+ :"owl:versionInfo" => %(1.0).freeze,
181
+ :"skos:definition" => %(Use of this Item is not restricted by copyright and/or related rights.
182
+
183
+ In one or more jurisdictions, laws other than copyright are known to impose restrictions on the use of this Item.
184
+
185
+ Please refer to the organization that has made the Item available for more information.).freeze,
186
+ :"skos:inScheme" => %(http://rightsstatements.org/vocab/1.0/).freeze,
187
+ :"skos:note" => [%(Unless expressly stated otherwise, the organization that has made this Item available makes no warranties about the Item and cannot guarantee the accuracy of this Rights Statement. You are responsible for your own use.).freeze, %(You may find additional information about the copyright status of the Item on the website of the organization that has made the Item available.).freeze, %(You may need to obtain other permissions for your intended use. For example, other rights such as publicity, privacy or moral rights may limit how you may use the material.).freeze],
188
+ :"skos:prefLabel" => %(No Copyright - Other Known Legal Restrictions).freeze,
189
+ :"skos:relatedMatch" => %(http://id.loc.gov/vocabulary/preservation/copyrightStatus/pub).freeze,
190
+ :"skos:scopeNote" => %(This Rights Statement should be used for Items that are in the public domain but that cannot be freely re-used as the consequence of known legal restrictions that prevent the data provider from allowing free re-use of the Work, such as cultural heritage or traditional cultural expression protections. In order for this Rights Statement to be conclusive, the data provider must provide a link to a page detailing the legal restrictions that limit re-use of the Item.).freeze,
191
+ type: ["dc:RightsStatement".freeze, "skos:Concept".freeze]
192
+ term :"NoC-US/1.0/",
193
+ :"dc11:identifier" => %(NoC-US).freeze,
194
+ :"dc:creator" => %(rightsstatements:irswg).freeze,
195
+ :"dc:modified" => %(2016-05-09).freeze,
196
+ label: "NoC-US/1.0/".freeze,
197
+ :"owl:versionInfo" => %(1.0).freeze,
198
+ :"skos:definition" => %(The organization that has made the Item available believes that the Item is in the Public Domain under the laws of the United States, but a determination was not made as to its copyright status under the copyright laws of other countries. The Item may not be in the Public Domain under the laws of other countries.
199
+
200
+ Please refer to the organization that has made the Item available for more information.).freeze,
201
+ :"skos:inScheme" => %(http://rightsstatements.org/vocab/1.0/).freeze,
202
+ :"skos:note" => [%(Unless expressly stated otherwise, the organization that has made this Item available makes no warranties about the Item and cannot guarantee the accuracy of this Rights Statement. You are responsible for your own use.).freeze, %(You may find additional information about the copyright status of the Item on the website of the organization that has made the Item available.).freeze, %(You may need to obtain other permissions for your intended use. For example, other rights such as publicity, privacy or moral rights may limit how you may use the material.).freeze],
203
+ :"skos:prefLabel" => %(No Copyright - United States).freeze,
204
+ :"skos:scopeNote" => %(This Rights Statement should be used for Items for which the provider has determined are free of copyright under the laws of the United States. This Rights Statement should not be used for Orphan Works \(which are assumed to be in-copyright\) or for Works where the data provider has not undertaken an effort to ascertain the copyright status of the Work.).freeze,
205
+ type: ["dc:RightsStatement".freeze, "skos:Concept".freeze]
206
+ term :"UND/1.0/",
207
+ :"dc11:identifier" => %(UND).freeze,
208
+ :"dc:creator" => %(rightsstatements:irswg).freeze,
209
+ :"dc:modified" => %(2016-06-01).freeze,
210
+ label: "UND/1.0/".freeze,
211
+ :"owl:versionInfo" => %(1.0).freeze,
212
+ :"skos:definition" => %(The copyright and related rights status of this Item has been reviewed by the organization that has made the Item available, but the organization was unable to make a conclusive determination as to the copyright status of the Item.
213
+
214
+ Please refer to the organization that has made the Item available for more information.
215
+
216
+ You are free to use this Item in any way that is permitted by the copyright and related rights legislation that applies to your use.).freeze,
217
+ :"skos:inScheme" => %(http://rightsstatements.org/vocab/1.0/).freeze,
218
+ :"skos:note" => [%(Unless expressly stated otherwise, the organization that has made this Item available makes no warranties about the Item and cannot guarantee the accuracy of this Rights Statement. You are responsible for your own use.).freeze, %(You may find additional information about the copyright status of the Item on the website of the organization that has made the Item available.).freeze, %(You may need to obtain other permissions for your intended use. For example, other rights such as publicity, privacy or moral rights may limit how you may use the material.).freeze],
219
+ :"skos:prefLabel" => %(Copyright Undetermined).freeze,
220
+ :"skos:scopeNote" => %(This Rights Statement should be used for Items for which the copyright status is unknown and for which the organization that has made the Item available has undertaken an effort to determine the copyright status of the Work. Typically, this Rights Statement is used when the organization is missing key facts essential to making an accurate copyright status determination.).freeze,
221
+ type: ["dc:RightsStatement".freeze, "skos:Concept".freeze]
222
+ term :"collection-ic/1.0/",
223
+ label: "collection-ic/1.0/".freeze,
224
+ :"owl:versionInfo" => %(1.0).freeze,
225
+ :"skos:member" => [%(http://rightsstatements.org/vocab/InC-EDU/1.0/).freeze, %(http://rightsstatements.org/vocab/InC-NC/1.0/).freeze, %(http://rightsstatements.org/vocab/InC-OW-EU/1.0/).freeze, %(http://rightsstatements.org/vocab/InC-RUU/1.0/).freeze, %(http://rightsstatements.org/vocab/InC/1.0/).freeze],
226
+ :"skos:prefLabel" => %(Rights Statements for works that are in copyright).freeze,
227
+ type: "skos:Collection".freeze
228
+ term :"collection-nc/1.0/",
229
+ label: "collection-nc/1.0/".freeze,
230
+ :"owl:versionInfo" => %(1.0).freeze,
231
+ :"skos:member" => [%(http://rightsstatements.org/vocab/NoC-CR/1.0/).freeze, %(http://rightsstatements.org/vocab/NoC-NC/1.0/).freeze, %(http://rightsstatements.org/vocab/NoC-OKLR/1.0/).freeze, %(http://rightsstatements.org/vocab/NoC-US/1.0/).freeze],
232
+ :"skos:prefLabel" => %(Rights Statements for works that are not in copyright).freeze,
233
+ type: "skos:Collection".freeze
234
+ term :"collection-other/1.0/",
235
+ label: "collection-other/1.0/".freeze,
236
+ :"owl:versionInfo" => %(1.0).freeze,
237
+ :"skos:member" => [%(http://rightsstatements.org/vocab/CNE/1.0/).freeze, %(http://rightsstatements.org/vocab/NKC/1.0/).freeze, %(http://rightsstatements.org/vocab/UND/1.0/).freeze],
238
+ :"skos:prefLabel" => %(other Rights Statements).freeze,
239
+ type: "skos:Collection".freeze
240
+ term :irswg,
241
+ :"foaf:homepage" => %(http://rightsstatements.org/).freeze,
242
+ :"foaf:name" => %(International Rights Statements Working Group).freeze,
243
+ label: "irswg".freeze,
244
+ :"skos:prefLabel" => %(International Rights Statements Working Group).freeze,
245
+ type: ["edm:Agent".freeze, "foaf:Group".freeze]
246
+ end
247
+ end