Skip to content

Commit

Permalink
Finish 3.1.12
Browse files Browse the repository at this point in the history
  • Loading branch information
gkellogg committed Mar 8, 2021
2 parents b4dd4fc + d8d74a7 commit d12c3d3
Show file tree
Hide file tree
Showing 6 changed files with 2,438 additions and 1,356 deletions.
2 changes: 1 addition & 1 deletion VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
3.1.11
3.1.12
12 changes: 10 additions & 2 deletions lib/rdf/vocab.rb
Original file line number Diff line number Diff line change
Expand Up @@ -104,7 +104,15 @@ module Vocab
ebucore: {
uri: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#",
source: "https://www.ebu.ch/metadata/ontologies/ebucore/ebucore.rdf",
class_name: "EBUCore"
class_name: "EBUCore",
patch: %{
@prefix owl: <http://www.w3.org/2002/07/owl#>.
@prefix dc: <http://purl.org/dc/terms/> .
@prefix dc11: <http://purl.org/dc/elements/1.1/> .
@prefix ebucore: <http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#> .
DeleteExisting { ebucore:Agent owl:equivalentClass dc11:Agent . } .
AddNew { ebucore:Agent owl:equivalentClass dc:Agent . } .
},
},
edm: {
uri: "http://www.europeana.eu/schemas/edm/",
Expand Down Expand Up @@ -289,7 +297,7 @@ module Vocab
prov: {uri: "http://www.w3.org/ns/prov#"},
ptr: {uri: "http://www.w3.org/2009/pointers#"},
rdau: {
uri: "http://rdaregistry.info/Elements/u",
uri: "http://rdaregistry.info/Elements/u/",
source: "http://www.rdaregistry.info/nt/Elements/u.nt"
},
rdfs: {uri: "http://www.w3.org/2000/01/rdf-schema#", alias: true},
Expand Down
2 changes: 1 addition & 1 deletion lib/rdf/vocab/ebucore.rb
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ module RDF::Vocab
type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze
term :Agent,
comment: "A person / contact or organisation.".freeze,
equivalentClass: ["http://purl.org/dc/elements/1.1/Agent".freeze, "http://xmlns.com/foaf/0.1/Agent".freeze],
equivalentClass: ["http://purl.org/dc/terms/Agent".freeze, "http://xmlns.com/foaf/0.1/Agent".freeze],
label: "Agent".freeze,
subClassOf: "http://www.w3.org/2002/07/owl#Thing".freeze,
type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze
Expand Down
Loading

0 comments on commit d12c3d3

Please sign in to comment.