rdf-vocab 3.3.1 → 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 +405 -383
- data/lib/rdf/vocab/bibframe.rb +405 -383
- data/lib/rdf/vocab/dcat.rb +294 -136
- data/lib/rdf/vocab/doap.rb +26 -6
- data/lib/rdf/vocab/identifiers.rb +698 -451
- data/lib/rdf/vocab/marcrelators.rb +1230 -899
- data/lib/rdf/vocab/premiseventtype.rb +72 -22
- data/lib/rdf/vocab/rdau.rb +2381 -2382
- data/lib/rdf/vocab/schema.rb +771 -130
- data/lib/rdf/vocab/schemas.rb +771 -130
- data/lib/rdf/vocab/vcard.rb +20 -0
- metadata +16 -2
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
|
@@ -242,6 +242,20 @@ dependencies:
|
|
242
242
|
- - "~>"
|
243
243
|
- !ruby/object:Gem::Version
|
244
244
|
version: '1.3'
|
245
|
+
- !ruby/object:Gem::Dependency
|
246
|
+
name: uri
|
247
|
+
requirement: !ruby/object:Gem::Requirement
|
248
|
+
requirements:
|
249
|
+
- - "~>"
|
250
|
+
- !ruby/object:Gem::Version
|
251
|
+
version: '0.13'
|
252
|
+
type: :development
|
253
|
+
prerelease: false
|
254
|
+
version_requirements: !ruby/object:Gem::Requirement
|
255
|
+
requirements:
|
256
|
+
- - "~>"
|
257
|
+
- !ruby/object:Gem::Version
|
258
|
+
version: '0.13'
|
245
259
|
- !ruby/object:Gem::Dependency
|
246
260
|
name: uuidtools
|
247
261
|
requirement: !ruby/object:Gem::Requirement
|