rdf-vocab 3.3.2 → 3.3.3
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/VERSION +1 -1
- data/lib/rdf/vocab/bf2.rb +71 -120
- data/lib/rdf/vocab/bibframe.rb +71 -120
- data/lib/rdf/vocab/identifiers.rb +688 -462
- data/lib/rdf/vocab/marcrelators.rb +930 -602
- data/lib/rdf/vocab/premiseventtype.rb +72 -22
- data/lib/rdf/vocab/rdau.rb +2377 -2378
- data/lib/rdf/vocab/schema.rb +593 -109
- data/lib/rdf/vocab/schemas.rb +593 -109
- data/lib/rdf/vocab/vcard.rb +20 -0
- metadata +3 -3
data/lib/rdf/vocab/vcard.rb
CHANGED
@@ -989,5 +989,25 @@ module RDF::Vocab
|
|
989
989
|
isDefinedBy: "http://www.w3.org/2006/vcard/ns",
|
990
990
|
label: {en: "value"},
|
991
991
|
type: "http://www.w3.org/2002/07/owl#DatatypeProperty"
|
992
|
+
|
993
|
+
# Extra definitions
|
994
|
+
term :AddressBook,
|
995
|
+
comment: {en: "This term is not part of vCard as defined by the IETF"},
|
996
|
+
isDefinedBy: "https://raw.githack.com/solid/contacts/refs/heads/main/vcard-extension-addressbook.ttl"
|
997
|
+
term :WebID,
|
998
|
+
comment: {en: "This term is not part of vCard as defined by the IETF"},
|
999
|
+
isDefinedBy: "https://raw.githack.com/solid/contacts/refs/heads/main/vcard-extension-addressbook.ttl"
|
1000
|
+
term :groupIndex,
|
1001
|
+
comment: {en: "This term is not part of vCard as defined by the IETF"},
|
1002
|
+
isDefinedBy: "https://raw.githack.com/solid/contacts/refs/heads/main/vcard-extension-addressbook.ttl"
|
1003
|
+
term :inAddressBook,
|
1004
|
+
comment: {en: "This term is not part of vCard as defined by the IETF"},
|
1005
|
+
isDefinedBy: "https://raw.githack.com/solid/contacts/refs/heads/main/vcard-extension-addressbook.ttl"
|
1006
|
+
term :includesGroup,
|
1007
|
+
comment: {en: "This term is not part of vCard as defined by the IETF"},
|
1008
|
+
isDefinedBy: "https://raw.githack.com/solid/contacts/refs/heads/main/vcard-extension-addressbook.ttl"
|
1009
|
+
term :nameEmailIndex,
|
1010
|
+
comment: {en: "This term is not part of vCard as defined by the IETF"},
|
1011
|
+
isDefinedBy: "https://raw.githack.com/solid/contacts/refs/heads/main/vcard-extension-addressbook.ttl"
|
992
1012
|
end
|
993
1013
|
end
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: rdf-vocab
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 3.3.
|
4
|
+
version: 3.3.3
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- David Chandek-Stark
|
@@ -10,7 +10,7 @@ authors:
|
|
10
10
|
autorequire:
|
11
11
|
bindir: bin
|
12
12
|
cert_chain: []
|
13
|
-
date:
|
13
|
+
date: 2025-07-21 00:00:00.000000000 Z
|
14
14
|
dependencies:
|
15
15
|
- !ruby/object:Gem::Dependency
|
16
16
|
name: rdf
|
@@ -404,7 +404,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
404
404
|
- !ruby/object:Gem::Version
|
405
405
|
version: '0'
|
406
406
|
requirements: []
|
407
|
-
rubygems_version: 3.
|
407
|
+
rubygems_version: 3.4.19
|
408
408
|
signing_key:
|
409
409
|
specification_version: 4
|
410
410
|
summary: A library of RDF vocabularies
|