rdf-vocab 0.3.0 → 0.4.0

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 16c58b914c48034548134d14db07566daff8482f
4
- data.tar.gz: 5019a0407ff94dfe3b5489e480f4a8eff9371917
3
+ metadata.gz: 4425df691677a21b2a9ac0005bc9f2eb32fd005f
4
+ data.tar.gz: 37408bacb5253ae54d73872125c716a442d08316
5
5
  SHA512:
6
- metadata.gz: 606b37797108fedfb7a2ac7c6e274945440c709869618e4035b6aa4bdbec29522bebcdb90f567f28d274d060b7ac67f4fa5d3e182ab5498e457e98334c086ff5
7
- data.tar.gz: bd2eb95c3793a957f4a41a46e1d8d2e914ee384e1e77172d57472dd4cfb42a6b28e52d697124f6986d2823e2917e856743165632dcd288d1f3797ca876831638
6
+ metadata.gz: 9b5890723fb5812c8917f7dfa73547c73aea2f0eeff56538b73558fcd9989a34a3cfc2771f65ca87f5012d4f5d0b1a69e368de9c9eab6593c6bbeba4b70a537d
7
+ data.tar.gz: 81858978925742eb3df94d50dc64bbf4180bc4fe4a7e52c129adc73c6cea65cd99e5fe6d8ac6c9e8155d837a2d95b0cfe0efbe4b54d00c8eab2babc7c5fd9a48
data/README.md CHANGED
@@ -10,6 +10,9 @@ See the list of rake tasks in the `vocab` namespace for specific vocabulary gene
10
10
 
11
11
  ## Vocabularies
12
12
 
13
+ - RDF::Vocab::ACL - [Web Access Control](http://www.w3.org/wiki/WebAccessControl) (W3C)
14
+ - RDF::Vocab::Fcrepo3 (module) - [Fedora Commons Repository 3](https://github.com/fcrepo3)*
15
+ - RDF::Vocab::Identifiers - [Standard Identifiers Scheme](http://id.loc.gov/vocabulary/identifiers.html) (LoC)
13
16
  - RDF::Vocab::LDP - [Linked Data Platform](http://www.w3.org/TR/ldp/) (W3C)
14
17
  - RDF::Vocab::MADS - [Metadata Authority Description Schema](http://www.loc.gov/standards/mads/) (LoC)
15
18
  - RDF::Vocab::MARCRelators - [MARC Code List for Relators](http://id.loc.gov/vocabulary/relators.html) (LoC)
@@ -17,6 +20,8 @@ See the list of rake tasks in the `vocab` namespace for specific vocabulary gene
17
20
  - RDF::Vocab::PREMIS::V1 - [Preservation Metadata Implementation Strategies (PREMIS) Ontology](http://id.loc.gov/ontologies/premis.html) (LoC)
18
21
  - RDF::Vocab::PremisEventType - [PREMIS Event Type](http://id.loc.gov/vocabulary/preservation/eventType.html) (LoC)
19
22
 
23
+ * The Fcrepo3 module was extracted from [ActiveFedora](https://github.com/projecthydra/active_fedora), so does not have a generator task.
24
+
20
25
  ## Installation
21
26
 
22
27
  Add to your Gemfile
@@ -14,7 +14,7 @@
14
14
  # source: http://www.loc.gov/standards/mods/modsrdf/v1/modsrdf.owl
15
15
  #
16
16
  # RDF::Vocab.generate("mods") will create and run an instance of RDF::VocabularyLoader like so:
17
- #
17
+ #
18
18
  # loader = RDF::VocabularyLoader.new
19
19
  # loader.module_name = "RDF::Vocab"
20
20
  # loader.class_name = "MODS"
@@ -28,6 +28,14 @@
28
28
  #
29
29
  # [...]
30
30
  #
31
+ acl:
32
+ class_name: ACL
33
+ uri: http://www.w3.org/ns/auth/acl#
34
+ source: http://www.w3.org/ns/auth/acl
35
+ identifiers:
36
+ class_name: Identifiers
37
+ uri: http://id.loc.gov/vocabulary/identifiers/
38
+ source: http://id.loc.gov/vocabulary/identifiers.nt
31
39
  ldp:
32
40
  class_name: LDP
33
41
  uri: http://www.w3.org/ns/ldp#
@@ -1,5 +1,5 @@
1
1
  module RDF
2
2
  module Vocab
3
- VERSION = "0.3.0"
3
+ VERSION = "0.4.0"
4
4
  end
5
5
  end
@@ -0,0 +1,98 @@
1
+ # -*- encoding: utf-8 -*-
2
+ # This file generated automatically using vocab-fetch from http://www.w3.org/ns/auth/acl
3
+ require 'rdf'
4
+ module RDF::Vocab
5
+ class ACL < RDF::StrictVocabulary("http://www.w3.org/ns/auth/acl#")
6
+
7
+ # Class definitions
8
+ term :Access,
9
+ comment: %(Any kind of access to a resource. Don't use this, use R W and RW).freeze,
10
+ "http://www.w3.org/ns/auth/acl#label" => %(access).freeze,
11
+ label: "Access".freeze,
12
+ type: "rdfs:Class".freeze
13
+ term :Append,
14
+ comment: %(Append accesses are specific write access which only add information, and do not remove information.
15
+ For text files, for example, append access allows bytes to be added onto the end of the file.
16
+ For RDF graphs, Append access allows adds triples to the graph but does not remove any.
17
+ Append access is useful for dropbox functionality.
18
+ Dropbox can be used for link notification, which the information added is a notification
19
+ that a some link has been made elsewhere relevant to the given resource.
20
+ ).freeze,
21
+ label: "append".freeze,
22
+ subClassOf: ["http://www.w3.org/ns/auth/acl#Access".freeze, "http://www.w3.org/ns/auth/acl#Write".freeze],
23
+ type: "rdfs:Class".freeze
24
+ term :Authorization,
25
+ comment: %(An element of access control,
26
+ allowing agent to agents access of some kind to resources or classes of resources).freeze,
27
+ label: "authorization".freeze,
28
+ type: "rdfs:Class".freeze
29
+ term :Control,
30
+ comment: %(Allows read/write access to the ACL for the resource\(s\)).freeze,
31
+ label: "control".freeze,
32
+ subClassOf: "http://www.w3.org/ns/auth/acl#Access".freeze,
33
+ type: "rdfs:Class".freeze
34
+ term :Read,
35
+ comment: %(The class of read operations).freeze,
36
+ label: "read".freeze,
37
+ subClassOf: "http://www.w3.org/ns/auth/acl#Access".freeze,
38
+ type: "rdfs:Class".freeze
39
+ term :Write,
40
+ label: "write".freeze,
41
+ subClassOf: "http://www.w3.org/ns/auth/acl#Access".freeze,
42
+ type: "rdfs:Class".freeze
43
+
44
+ # Property definitions
45
+ property :accessControl,
46
+ comment: %(The Access Control file for this information resource.
47
+ This may of course be a virtual resorce implemented by the access control system.
48
+ Note also HTTP's header Link: foo.meta ;rel=meta can be used for this.).freeze,
49
+ domain: "http://www.w3.org/2006/gen/ont#InformationResource".freeze,
50
+ label: "access control".freeze,
51
+ range: "http://www.w3.org/2006/gen/ont#InformationResource".freeze,
52
+ subPropertyOf: "rdfs:seeAlso".freeze,
53
+ type: "rdf:Property".freeze
54
+ property :accessTo,
55
+ comment: %(The information resource to which access is being granted.).freeze,
56
+ domain: "http://www.w3.org/ns/auth/acl#Authorization".freeze,
57
+ label: "to".freeze,
58
+ range: "http://www.w3.org/2006/gen/ont#InformationResource".freeze,
59
+ type: "rdf:Property".freeze
60
+ property :accessToClass,
61
+ comment: %(A class of information resources to which access is being granted.).freeze,
62
+ domain: "http://www.w3.org/ns/auth/acl#Authorization".freeze,
63
+ label: "to all in".freeze,
64
+ range: "rdfs:Class".freeze,
65
+ type: "rdf:Property".freeze
66
+ property :agent,
67
+ comment: %(A person or social entity to being given the right).freeze,
68
+ domain: "http://www.w3.org/ns/auth/acl#Authorization".freeze,
69
+ label: "agent".freeze,
70
+ range: "foaf:Agent".freeze,
71
+ type: "rdf:Property".freeze
72
+ property :agentClass,
73
+ comment: %(A class of persons or social entities to being given the right).freeze,
74
+ domain: "http://www.w3.org/ns/auth/acl#Authorization".freeze,
75
+ label: "agent class".freeze,
76
+ range: "rdfs:Class".freeze,
77
+ type: "rdf:Property".freeze
78
+ property :defaultForNew,
79
+ comment: %(A directory for which this authorization is used for new files in the directory.).freeze,
80
+ domain: "http://www.w3.org/ns/auth/acl#Authorization".freeze,
81
+ label: "default access for new things in".freeze,
82
+ type: "rdf:Property".freeze
83
+ property :mode,
84
+ comment: %(A mode of access such as read or write.).freeze,
85
+ domain: "http://www.w3.org/ns/auth/acl#Authorization".freeze,
86
+ label: "access mode".freeze,
87
+ range: "rdfs:Class".freeze,
88
+ type: "rdf:Property".freeze
89
+ property :owner,
90
+ comment: %(The person or other agent which owns this.
91
+ For example, the owner of a file in a filesystem.
92
+ There is a sense of right to control. Typically defaults to the agent who craeted
93
+ something but can be changed.).freeze,
94
+ label: "owner".freeze,
95
+ range: "foaf:Agent".freeze,
96
+ type: "rdf:Property".freeze
97
+ end
98
+ end
@@ -0,0 +1,326 @@
1
+ # -*- encoding: utf-8 -*-
2
+ # This file generated automatically using vocab-fetch from github.com:fcrepo3/fcrepo/master/fcrepo-server/src/main/resources/rdfs/fedora_relsext_ontology.rdfs
3
+ # and edited for clarity and additional terms published in different serializations of the voabularies
4
+ require 'rdf'
5
+ module RDF::Vocab
6
+ module Fcrepo3
7
+ class System < RDF::StrictVocabulary("info:fedora/fedora-system:")
8
+ term :"ContentModel-3.0",
9
+ comment: %(Base Fedora 3 CModel cModel).freeze,
10
+ label: "Fedora 3 Content Model".freeze,
11
+ subClassOf: "info:fedora/fedora-system:def/model#FedoraObject".freeze,
12
+ type: "info:fedora/fedora-system:def/model#FedoraObject".freeze
13
+ term :"FedoraObject-3.0",
14
+ comment: %(Base Fedora 3 Object cModel).freeze,
15
+ label: "Fedora 3 Object".freeze,
16
+ subClassOf: "info:fedora/fedora-system:def/model#FedoraObject".freeze,
17
+ type: "info:fedora/fedora-system:def/model#FedoraObject".freeze
18
+ term :"ServiceDefinition-3.0",
19
+ comment: %(Fedora 3 Service Definition/BDef cModel).freeze,
20
+ label: "Fedora 3 Service Definition".freeze,
21
+ subClassOf: "info:fedora/fedora-system:def/model#FedoraObject".freeze,
22
+ type: "info:fedora/fedora-system:def/model#FedoraObject".freeze
23
+ term :"ServiceDeployment-3.0",
24
+ comment: %(Fedora 3 Service Deployment/BMech cModel).freeze,
25
+ label: "Fedora 3 Service Deployment".freeze,
26
+ subClassOf: "info:fedora/fedora-system:def/model#FedoraObject".freeze,
27
+ type: "info:fedora/fedora-system:def/model#FedoraObject".freeze
28
+ end
29
+ class Model < RDF::StrictVocabulary("info:fedora/fedora-system:def/model#")
30
+ # Class definitions
31
+ term :FedoraObject,
32
+ comment: %(The base type of all objects in Fedora).freeze,
33
+ label: "FedoraObject".freeze,
34
+ subClassOf: "rdfs:Resource".freeze,
35
+ type: "rdfs:Class".freeze
36
+ term :Datastream,
37
+ comment: %(Binary data associated with a Fedora object).freeze,
38
+ label: "Datastream".freeze,
39
+ subClassOf: "rdfs:Resource".freeze,
40
+ type: "rdfs:Class".freeze
41
+ term :ExtProperty,
42
+ comment: %(Reification of an extension property of a Fedora object used in messaging).freeze,
43
+ label: "ExtProperty".freeze,
44
+ subClassOf: "rdf:Property".freeze,
45
+ type: "rdfs:Class".freeze
46
+ term :State,
47
+ comment: %(The state of a Fedora object or datastream).freeze,
48
+ label: "State".freeze,
49
+ subClassOf: "rdfs:Resource".freeze,
50
+ type: "rdfs:Class".freeze
51
+ term :Active,
52
+ comment: %(State of an object available in the repository).freeze,
53
+ label: "Active".freeze,
54
+ subClassOf: "rdfs:Resource".freeze,
55
+ type: "info:fedora/fedora-system:def/model#State".freeze
56
+ term :Deleted,
57
+ comment: %(State of an object that should be considered deleted, but is not purged).freeze,
58
+ label: "Deleted".freeze,
59
+ subClassOf: "rdfs:Resource".freeze,
60
+ type: "info:fedora/fedora-system:def/model#State".freeze
61
+ term :Inactive,
62
+ comment: %(State of an object that should be considered temporarily unavailable).freeze,
63
+ label: "Inactive".freeze,
64
+ subClassOf: "rdfs:Resource".freeze,
65
+ type: "info:fedora/fedora-system:def/model#State".freeze
66
+ # Property definitions
67
+ property :altIds,
68
+ comment: %(The alternate IDs for a datastream).freeze,
69
+ label: "Alternate IDs".freeze,
70
+ domain: "info:fedora/fedora-system:def/model#Datastream",
71
+ range: "xsd:string".freeze,
72
+ type: "rdf:Property".freeze
73
+ property :controlGroup,
74
+ comment: %(indicates whether a Datastream's content is inline XML (X), Managed (M), Referenced (R) or External (E)).freeze,
75
+ label: "controlGroup".freeze,
76
+ domain: "info:fedora/fedora-system:def/model#Datastream",
77
+ range: "xsd:string".freeze,
78
+ type: "rdf:Property".freeze
79
+ property :createdDate,
80
+ comment: %(The UTC datetime an object was created).freeze,
81
+ label: "createdDate".freeze,
82
+ domain: "info:fedora/fedora-system:def/model#FedoraObject",
83
+ range: "xsd:dateTimeStamp".freeze,
84
+ type: "rdf:Property".freeze
85
+ property :definesMethod,
86
+ comment: %(indicates the name of a service method defined in this interface).freeze,
87
+ label: "definesMethod".freeze,
88
+ domain: "info:fedora/fedora-system:ServiceDefinition-3.0".freeze,
89
+ range: "xsd:NCName".freeze,
90
+ type: "rdf:Property".freeze
91
+ property :digest,
92
+ comment: %(indicates the checksum digest of a datastream's contents or the keyword 'none').freeze,
93
+ label: "digest".freeze,
94
+ domain: "info:fedora/fedora-system:def/model#Datastream",
95
+ range: "xsd:string".freeze,
96
+ type: "rdf:Property".freeze
97
+ property :digestType,
98
+ comment: %(indicates either the checksum algorithm or the keyword DISABLED).freeze,
99
+ label: "digestType".freeze,
100
+ domain: "info:fedora/fedora-system:def/model#Datastream",
101
+ range: "xsd:string".freeze,
102
+ type: "rdf:Property".freeze
103
+ property :downloadFilename,
104
+ comment: %(indicates the name to be used when downloading a datastream's contents).freeze,
105
+ label: "downloadFilename".freeze,
106
+ domain: "info:fedora/fedora-system:def/model#Datastream",
107
+ range: "xsd:string".freeze,
108
+ type: "rdf:Property".freeze
109
+ property :extProperty,
110
+ comment: %(indicates an extension property of an object in Fedora in messaging).freeze,
111
+ label: "extProperty".freeze,
112
+ domain: "info:fedora/fedora-system:def/model#FedoraObject".freeze,
113
+ range: "info:fedora/fedora-system:def/model#ExtProperty".freeze,
114
+ type: "rdf:Property".freeze
115
+ property :formatURI,
116
+ comment: %(A URI indicating the format of a datastream's content).freeze,
117
+ label: "formatURI".freeze,
118
+ type: "rdf:Property".freeze
119
+ property :hasModel,
120
+ comment: %(Indicates the Fedora 3 CModels for this object).freeze,
121
+ label: "hasModel".freeze,
122
+ subPropertyOf: "rdf:type".freeze,
123
+ domain: "info:fedora/fedora-system:FedoraObject-3.0".freeze,
124
+ range: "info:fedora/fedora-system:ContentModel-3.0".freeze,
125
+ type: "rdf:Property".freeze
126
+ property :hasService,
127
+ comment: %(indicates the Fedora 3 Service Definitions applicable to this CModel).freeze,
128
+ label: "hasService".freeze,
129
+ domain: "info:fedora/fedora-system:ContentModel-3.0".freeze,
130
+ range: "info:fedora/fedora-system:ServiceDefinition-3.0".freeze,
131
+ type: "rdf:Property".freeze
132
+ property :isContractorOf,
133
+ comment: %(indicates the Fedora 3 Content Models this deployment applies to).freeze,
134
+ label: "".freeze,
135
+ domain: "info:fedora/fedora-system:ServiceDeployment-3.0".freeze,
136
+ range: "info:fedora/fedora-system:ContentModel-3.0".freeze,
137
+ type: "rdf:Property".freeze
138
+ property :isDeploymentOf,
139
+ comment: %(indicates the Fedora 3 Service Definitions this deployment implements).freeze,
140
+ label: "isDeploymentOf".freeze,
141
+ domain: "info:fedora/fedora-system:ServiceDeployment-3.0".freeze,
142
+ range: "info:fedora/fedora-system:ServiceDefinition-3.0".freeze,
143
+ type: "rdf:Property".freeze
144
+ property :label,
145
+ comment: %(The label applied to a Fedora object).freeze,
146
+ label: "label".freeze,
147
+ domain: "info:fedora/fedora-system:def/model#FedoraObject".freeze,
148
+ range: "xsd:string".freeze,
149
+ type: "rdf:Property".freeze
150
+ property :length,
151
+ comment: %(indicates the length of a datastream's contents).freeze,
152
+ label: "length".freeze,
153
+ domain: "info:fedora/fedora-system:def/model#Datastream".freeze,
154
+ range: "xsd:nonNegativeInteger".freeze,
155
+ type: "rdf:Property".freeze
156
+ property :ownerId,
157
+ comment: %(indicates the owner of an object).freeze,
158
+ label: "ownerId".freeze,
159
+ type: "rdf:Property".freeze
160
+ property :state,
161
+ comment: %(indicates the state of the object or datastream).freeze,
162
+ label: "state".freeze,
163
+ domain: ["info:fedora/fedora-system:def/model#FedoraObject".freeze,"info:fedora/fedora-system:def/model#Datastream".freeze],
164
+ range: "info:fedora/fedora-system:def/model#State".freeze,
165
+ type: "rdf:Property".freeze
166
+ property :versionable,
167
+ comment: %(indicates whether a datastream's property and contents changes are being tracked as versions).freeze,
168
+ label: "versionable".freeze,
169
+ domain: "info:fedora/fedora-system:def/model#Datastream".freeze,
170
+ range: "xsd:boolean".freeze,
171
+ type: "rdf:Property".freeze
172
+ end
173
+ class RelsExt < RDF::StrictVocabulary("info:fedora/fedora-system:def/relations-external#")
174
+
175
+ # Property definitions
176
+ property :fedoraRelationship,
177
+ comment: %(The primitive property for all object-to-object relationships in the fedora ontology).freeze,
178
+ label: "Fedora Relationship".freeze,
179
+ type: "rdf:Property".freeze
180
+ property :hasAnnotation,
181
+ comment: %(A refinement of the generic descriptive relationship indicating a commentary relationship between fedora objects. The subject is a fedora object that is being commented on and the predicate is a fedora object that represents an annotation or comment about the subject. ).freeze,
182
+ label: "Has Annotation".freeze,
183
+ subPropertyOf: "info:fedora/fedora-system:def/relations-external#hasDescription".freeze,
184
+ "owl:inverseOf" => %(info:fedora/fedora-system:def/relations-external#isAnnotationOf).freeze,
185
+ type: "rdf:Property".freeze
186
+ property :hasCollectionMember,
187
+ label: "Has Collection Member".freeze,
188
+ subPropertyOf: "info:fedora/fedora-system:def/relations-external#hasMember".freeze,
189
+ "owl:inverseOf" => %(info:fedora/fedora-system:def/relations-external#isMemberOfCollection).freeze,
190
+ type: "rdf:Property".freeze
191
+ property :hasConstituent,
192
+ label: "Has Constituent".freeze,
193
+ subPropertyOf: "info:fedora/fedora-system:def/relations-external#hasPart".freeze,
194
+ "owl:inverseOf" => %(info:fedora/fedora-system:def/relations-external#isConstituentOf).freeze,
195
+ type: "rdf:Property".freeze
196
+ property :hasDependent,
197
+ label: "Has Dependent".freeze,
198
+ subPropertyOf: "info:fedora/fedora-system:def/relations-external#fedoraRelationship".freeze,
199
+ "owl:inverseOf" => %(info:fedora/fedora-system:def/relations-external#isDependentOf).freeze,
200
+ type: "rdf:Property".freeze
201
+ property :hasDerivation,
202
+ label: "Has Derivation".freeze,
203
+ subPropertyOf: "info:fedora/fedora-system:def/relations-external#fedoraRelationship".freeze,
204
+ "owl:inverseOf" => %(info:fedora/fedora-system:def/relations-external#isDerivationOf).freeze,
205
+ type: "rdf:Property".freeze
206
+ property :hasDescription,
207
+ comment: %(A generic descriptive relationship between fedora objects. The subject is a fedora object that is being described in some manner and the predicate is a fedora object that represents a descriptive entity that is about the subject. ).freeze,
208
+ label: "Has Description".freeze,
209
+ subPropertyOf: "info:fedora/fedora-system:def/relations-external#fedoraRelationship".freeze,
210
+ "owl:inverseOf" => %(info:fedora/fedora-system:def/relations-external#isDescriptionOf).freeze,
211
+ type: "rdf:Property".freeze
212
+ property :hasEquivalent,
213
+ label: "Has Equivalent".freeze,
214
+ subPropertyOf: "info:fedora/fedora-system:def/relations-external#fedoraRelationship".freeze,
215
+ type: "rdf:Property".freeze
216
+ property :hasMember,
217
+ label: "Has Member".freeze,
218
+ subPropertyOf: "info:fedora/fedora-system:def/relations-external#hasPart/".freeze,
219
+ "owl:inverseOf" => %(info:fedora/fedora-system:def/relations-external#isMemberOf).freeze,
220
+ type: "rdf:Property".freeze
221
+ property :hasMetadata,
222
+ comment: %(A refinement of the generic descriptive relationship indicating a metadata relationship between fedora objects. The subject is a fedora object and the predicate is a fedora object that represents metadata about the subject. ).freeze,
223
+ label: "Has Metadata".freeze,
224
+ subPropertyOf: "info:fedora/fedora-system:def/relations-external#hasDescription".freeze,
225
+ "owl:inverseOf" => %(info:fedora/fedora-system:def/relations-external#isMetadataFor).freeze,
226
+ type: "rdf:Property".freeze
227
+ property :hasPart,
228
+ label: "Has Part".freeze,
229
+ subPropertyOf: "info:fedora/fedora-system:def/relations-external#fedoraRelationship".freeze,
230
+ "owl:inverseOf" => %(info:fedora/fedora-system:def/relations-external#isPartOf).freeze,
231
+ type: "rdf:Property".freeze
232
+ property :hasSubset,
233
+ label: "Has Subset".freeze,
234
+ subPropertyOf: "info:fedora/fedora-system:def/relations-external#hasMember".freeze,
235
+ "owl:inverseOf" => %(info:fedora/fedora-system:def/relations-external#isSubsetOf).freeze,
236
+ type: "rdf:Property".freeze
237
+ property :isAnnotationOf,
238
+ comment: %(A refinement of the generic descriptive relationship indicating a commentary relationship between fedora objects. The subject is a fedora object that represents an annotation or comment and the predicate is a fedora object that is being commented upon by the subject.).freeze,
239
+ label: "Is Annotation Of".freeze,
240
+ subPropertyOf: "info:fedora/fedora-system:def/relations-external#isDescriptionOf".freeze,
241
+ "owl:inverseOf" => %(info:fedora/fedora-system:def/relations-external#hasAnnotation).freeze,
242
+ type: "rdf:Property".freeze
243
+ property :isConstituentOf,
244
+ label: "Is Constituent Of".freeze,
245
+ subPropertyOf: "info:fedora/fedora-system:def/relations-external#isPartOf".freeze,
246
+ "owl:inverseOf" => %(info:fedora/fedora-system:def/relations-external#hasConstituent).freeze,
247
+ type: "rdf:Property".freeze
248
+ property :isDependentOf,
249
+ label: "Is Dependent Of".freeze,
250
+ subPropertyOf: "info:fedora/fedora-system:def/relations-external#fedoraRelationship".freeze,
251
+ "owl:inverseOf" => %(info:fedora/fedora-system:def/relations-external#hasDependent).freeze,
252
+ type: "rdf:Property".freeze
253
+ property :isDerivationOf,
254
+ label: "Is Derivation Of".freeze,
255
+ subPropertyOf: "info:fedora/fedora-system:def/relations-external#fedoraRelationship".freeze,
256
+ "owl:inverseOf" => %(info:fedora/fedora-system:def/relations-external#hasDerivation).freeze,
257
+ type: "rdf:Property".freeze
258
+ property :isDescriptionOf,
259
+ comment: %(A generic descriptive relationship between fedora objects. The subject is a fedora object that represents a descriptive entity and the predicate is a fedora object that is being described in some manner by the subject.).freeze,
260
+ label: "Is Description Of".freeze,
261
+ subPropertyOf: "info:fedora/fedora-system:def/relations-external#fedoraRelationship".freeze,
262
+ "owl:inverseOf" => %(info:fedora/fedora-system:def/relations-external#hasDescription).freeze,
263
+ type: "rdf:Property".freeze
264
+ property :isMemberOf,
265
+ label: "Is Member Of".freeze,
266
+ subPropertyOf: "info:fedora/fedora-system:def/relations-external#isPartOf".freeze,
267
+ "owl:inverseOf" => %(info:fedora/fedora-system:def/relations-external#hasMember).freeze,
268
+ type: "rdf:Property".freeze
269
+ property :isMemberOfCollection,
270
+ label: "Is Member Of Collection".freeze,
271
+ subPropertyOf: "info:fedora/fedora-system:def/relations-external#isMemberOf".freeze,
272
+ "owl:inverseOf" => %(info:fedora/fedora-system:def/relations-external#hasCollectionMember).freeze,
273
+ type: "rdf:Property".freeze
274
+ property :isMetadataFor,
275
+ comment: %(A refinement of the generic descriptive relationship indicating a metadata relationship between fedora objects. The subject is a fedora object that represents metadata and the predicate is a fedora object for which the subject serves as metadata.).freeze,
276
+ label: "Is Metadata For".freeze,
277
+ subPropertyOf: "info:fedora/fedora-system:def/relations-external#isDescriptionOf".freeze,
278
+ "owl:inverseOf" => %(info:fedora/fedora-system:def/relations-external#hasMetadata).freeze,
279
+ type: "rdf:Property".freeze
280
+ property :isPartOf,
281
+ label: "Is Part Of".freeze,
282
+ subPropertyOf: "info:fedora/fedora-system:def/relations-external#fedoraRelationship".freeze,
283
+ "owl:inverseOf" => %(info:fedora/fedora-system:def/relations-external#hasPart).freeze,
284
+ type: "rdf:Property".freeze
285
+ property :isSubsetOf,
286
+ label: "Is Subset Of".freeze,
287
+ subPropertyOf: "info:fedora/fedora-system:def/relations-external#isMemberOf".freeze,
288
+ "owl:inverseOf" => %(info:fedora/fedora-system:def/relations-external#hasSubset).freeze,
289
+ type: "rdf:Property".freeze
290
+ end
291
+ class View < RDF::StrictVocabulary("info:fedora/fedora-system:def/view#")
292
+ property :disseminates,
293
+ comment: %(A property used to indicate that an object contains a datastream).freeze,
294
+ label: "disseminates".freeze,
295
+ domain: "info:fedora/fedora-system:FedoraObject-3.0".freeze,
296
+ range: "info:fedora/fedora-system:def/model#Datastream".freeze,
297
+ type: "rdf:Property".freeze
298
+ property :disseminationType,
299
+ comment: %(A property whose object is common to all Datastreams of a given DSID).freeze,
300
+ label: "dissemination type".freeze,
301
+ type: "rdf:Property".freeze
302
+ property :isVolatile,
303
+ comment: %(A property indicating that a datastream's content is a reference to content external to the repository).freeze,
304
+ label: "isVolatile".freeze,
305
+ domain: "info:fedora/fedora-system:def/model#Datastream".freeze,
306
+ range: "xsd:boolean".freeze,
307
+ type: "rdf:Property".freeze
308
+ property :lastModifiedDate,
309
+ comment: %(UTC datetime of the last change to an object or most recent version of this datastream).freeze,
310
+ label: "lastModifiedDate".freeze,
311
+ domain: ["info:fedora/fedora-system:def/model#FedoraObject".freeze,"info:fedora/fedora-system:def/model#Datastream".freeze],
312
+ range: "xsd:dateTimeStamp".freeze,
313
+ type: "rdf:Property".freeze
314
+ property :mimeType,
315
+ comment: %(The MIME type of this datastream's content).freeze,
316
+ label: "mimeType".freeze,
317
+ domain: "info:fedora/fedora-system:def/model#Datastream".freeze,
318
+ range: "xsd:string".freeze,
319
+ type: "rdf:Property".freeze
320
+ property :version,
321
+ comment: %(indicates Fedora server version in messaging).freeze,
322
+ label: "Server version".freeze,
323
+ type: "rdf:Property".freeze
324
+ end
325
+ end
326
+ end
@@ -0,0 +1,281 @@
1
+ # -*- encoding: utf-8 -*-
2
+ # This file generated automatically using vocab-fetch from http://id.loc.gov/vocabulary/identifiers.nt
3
+ require 'rdf'
4
+ module RDF::Vocab
5
+ class Identifiers < RDF::StrictVocabulary("http://id.loc.gov/vocabulary/identifiers/")
6
+
7
+ # Property definitions
8
+ property :ansi,
9
+ label: "American National Standards Institute and National Information Standards Organisation number for an ANSI or ANSI/NISO standard".freeze,
10
+ "mads:authoritativeLabel" => %(American National Standards Institute and National Information Standards Organisation number for an ANSI or ANSI/NISO standard).freeze,
11
+ "mads:code" => %(ansi).freeze,
12
+ "skos:notation" => %(ansi).freeze,
13
+ "skos:prefLabel" => %(American National Standards Institute and National Information Standards Organisation number for an ANSI or ANSI/NISO standard).freeze,
14
+ subPropertyOf: "http://id.loc.gov/vocabulary/identifiers/id".freeze,
15
+ type: ["rdf:Property".freeze, "mads:Authority".freeze, "skos:Concept".freeze]
16
+ property :danacode,
17
+ label: "Danacode (Bnei Brak, Israel: D.A.N.A. Systems)".freeze,
18
+ "mads:authoritativeLabel" => %(Danacode \(Bnei Brak, Israel: D.A.N.A. Systems\)).freeze,
19
+ "mads:code" => %(danacode).freeze,
20
+ "skos:notation" => %(danacode).freeze,
21
+ "skos:prefLabel" => %(Danacode \(Bnei Brak, Israel: D.A.N.A. Systems\)).freeze,
22
+ subPropertyOf: "http://id.loc.gov/vocabulary/identifiers/id".freeze,
23
+ type: ["rdf:Property".freeze, "mads:Authority".freeze, "skos:Concept".freeze]
24
+ property :doi,
25
+ label: "Digital Object Identifier".freeze,
26
+ "mads:authoritativeLabel" => %(Digital Object Identifier).freeze,
27
+ "mads:code" => %(doi).freeze,
28
+ "skos:notation" => %(doi).freeze,
29
+ "skos:prefLabel" => %(Digital Object Identifier).freeze,
30
+ subPropertyOf: "http://id.loc.gov/vocabulary/identifiers/id".freeze,
31
+ type: ["rdf:Property".freeze, "mads:Authority".freeze, "skos:Concept".freeze]
32
+ property :ean,
33
+ label: "International Article Number".freeze,
34
+ "mads:authoritativeLabel" => %(International Article Number).freeze,
35
+ "mads:code" => %(ean).freeze,
36
+ "skos:notation" => %(ean).freeze,
37
+ "skos:prefLabel" => %(International Article Number).freeze,
38
+ subPropertyOf: "http://id.loc.gov/vocabulary/identifiers/id".freeze,
39
+ type: ["rdf:Property".freeze, "mads:Authority".freeze, "skos:Concept".freeze]
40
+ property :"gtin-14",
41
+ label: "Global Trade Identification Number 14 (EAN/UCC-128 or ITF-14)".freeze,
42
+ "mads:authoritativeLabel" => %(Global Trade Identification Number 14 \(EAN/UCC-128 or ITF-14\)).freeze,
43
+ "mads:code" => %(gtin-14).freeze,
44
+ "skos:notation" => %(gtin-14).freeze,
45
+ "skos:prefLabel" => %(Global Trade Identification Number 14 \(EAN/UCC-128 or ITF-14\)).freeze,
46
+ subPropertyOf: "http://id.loc.gov/vocabulary/identifiers/id".freeze,
47
+ type: ["rdf:Property".freeze, "mads:Authority".freeze, "skos:Concept".freeze]
48
+ property :hdl,
49
+ label: "Handle".freeze,
50
+ "mads:authoritativeLabel" => %(Handle).freeze,
51
+ "mads:code" => %(hdl).freeze,
52
+ "skos:notation" => %(hdl).freeze,
53
+ "skos:prefLabel" => %(Handle).freeze,
54
+ subPropertyOf: "http://id.loc.gov/vocabulary/identifiers/id".freeze,
55
+ type: ["rdf:Property".freeze, "mads:Authority".freeze, "skos:Concept".freeze]
56
+ property :isan,
57
+ label: "International Standard Audiovisual Number".freeze,
58
+ "mads:authoritativeLabel" => %(International Standard Audiovisual Number).freeze,
59
+ "mads:code" => %(isan).freeze,
60
+ "skos:notation" => %(isan).freeze,
61
+ "skos:prefLabel" => %(International Standard Audiovisual Number).freeze,
62
+ subPropertyOf: "http://id.loc.gov/vocabulary/identifiers/id".freeze,
63
+ type: ["rdf:Property".freeze, "mads:Authority".freeze, "skos:Concept".freeze]
64
+ property :isbn,
65
+ label: "International Standard Book Number".freeze,
66
+ "mads:authoritativeLabel" => %(International Standard Book Number).freeze,
67
+ "mads:code" => %(isbn).freeze,
68
+ "skos:notation" => %(isbn).freeze,
69
+ "skos:prefLabel" => %(International Standard Book Number).freeze,
70
+ subPropertyOf: "http://id.loc.gov/vocabulary/identifiers/id".freeze,
71
+ type: ["rdf:Property".freeze, "mads:Authority".freeze, "skos:Concept".freeze]
72
+ property :ismn,
73
+ label: "International Standard Music Number".freeze,
74
+ "mads:authoritativeLabel" => %(International Standard Music Number).freeze,
75
+ "mads:code" => %(ismn).freeze,
76
+ "skos:notation" => %(ismn).freeze,
77
+ "skos:prefLabel" => %(International Standard Music Number).freeze,
78
+ subPropertyOf: "http://id.loc.gov/vocabulary/identifiers/id".freeze,
79
+ type: ["rdf:Property".freeze, "mads:Authority".freeze, "skos:Concept".freeze]
80
+ property :isni,
81
+ label: "International Standard Name Identifier".freeze,
82
+ "mads:authoritativeLabel" => %(International Standard Name Identifier).freeze,
83
+ "mads:code" => %(isni).freeze,
84
+ "skos:notation" => %(isni).freeze,
85
+ "skos:prefLabel" => %(International Standard Name Identifier).freeze,
86
+ subPropertyOf: "http://id.loc.gov/vocabulary/identifiers/id".freeze,
87
+ type: ["rdf:Property".freeze, "mads:Authority".freeze, "skos:Concept".freeze]
88
+ property :iso,
89
+ label: "International Organization for Standardization number for an ISO standard".freeze,
90
+ "mads:authoritativeLabel" => %(International Organization for Standardization number for an ISO standard).freeze,
91
+ "mads:code" => %(iso).freeze,
92
+ "skos:notation" => %(iso).freeze,
93
+ "skos:prefLabel" => %(International Organization for Standardization number for an ISO standard).freeze,
94
+ subPropertyOf: "http://id.loc.gov/vocabulary/identifiers/id".freeze,
95
+ type: ["rdf:Property".freeze, "mads:Authority".freeze, "skos:Concept".freeze]
96
+ property :isrc,
97
+ label: "International Standard Recording Code".freeze,
98
+ "mads:authoritativeLabel" => %(International Standard Recording Code).freeze,
99
+ "mads:code" => %(isrc).freeze,
100
+ "skos:notation" => %(isrc).freeze,
101
+ "skos:prefLabel" => %(International Standard Recording Code).freeze,
102
+ subPropertyOf: "http://id.loc.gov/vocabulary/identifiers/id".freeze,
103
+ type: ["rdf:Property".freeze, "mads:Authority".freeze, "skos:Concept".freeze]
104
+ property :issn,
105
+ label: "International Standard Serial Number".freeze,
106
+ "mads:authoritativeLabel" => %(International Standard Serial Number).freeze,
107
+ "mads:code" => %(issn).freeze,
108
+ "skos:notation" => %(issn).freeze,
109
+ "skos:prefLabel" => %(International Standard Serial Number).freeze,
110
+ subPropertyOf: "http://id.loc.gov/vocabulary/identifiers/id".freeze,
111
+ type: ["rdf:Property".freeze, "mads:Authority".freeze, "skos:Concept".freeze]
112
+ property :"issn-l",
113
+ label: "Linking International Standard Serial Number".freeze,
114
+ "mads:authoritativeLabel" => %(Linking International Standard Serial Number).freeze,
115
+ "mads:code" => %(issn-l).freeze,
116
+ "skos:notation" => %(issn-l).freeze,
117
+ "skos:prefLabel" => %(Linking International Standard Serial Number).freeze,
118
+ subPropertyOf: "http://id.loc.gov/vocabulary/identifiers/id".freeze,
119
+ type: ["rdf:Property".freeze, "mads:Authority".freeze, "skos:Concept".freeze]
120
+ property :"issue-number",
121
+ label: "Sound recording issue number".freeze,
122
+ "mads:authoritativeLabel" => %(Sound recording issue number).freeze,
123
+ "mads:code" => %(issue-number).freeze,
124
+ "skos:notation" => %(issue-number).freeze,
125
+ "skos:prefLabel" => %(Sound recording issue number).freeze,
126
+ subPropertyOf: "http://id.loc.gov/vocabulary/identifiers/id".freeze,
127
+ type: ["rdf:Property".freeze, "mads:Authority".freeze, "skos:Concept".freeze]
128
+ property :istc,
129
+ label: "International Standard Text Code".freeze,
130
+ "mads:authoritativeLabel" => %(International Standard Text Code).freeze,
131
+ "mads:code" => %(istc).freeze,
132
+ "skos:notation" => %(istc).freeze,
133
+ "skos:prefLabel" => %(International Standard Text Code).freeze,
134
+ subPropertyOf: "http://id.loc.gov/vocabulary/identifiers/id".freeze,
135
+ type: ["rdf:Property".freeze, "mads:Authority".freeze, "skos:Concept".freeze]
136
+ property :iswc,
137
+ label: "International Standard Musical Work Code".freeze,
138
+ "mads:authoritativeLabel" => %(International Standard Musical Work Code).freeze,
139
+ "mads:code" => %(iswc).freeze,
140
+ "skos:notation" => %(iswc).freeze,
141
+ "skos:prefLabel" => %(International Standard Musical Work Code).freeze,
142
+ subPropertyOf: "http://id.loc.gov/vocabulary/identifiers/id".freeze,
143
+ type: ["rdf:Property".freeze, "mads:Authority".freeze, "skos:Concept".freeze]
144
+ property :itar,
145
+ label: "ITAR (Importtjeneste og autoritetsregistre)".freeze,
146
+ "mads:authoritativeLabel" => %(ITAR \(Importtjeneste og autoritetsregistre\)).freeze,
147
+ "mads:code" => %(itar).freeze,
148
+ "skos:notation" => %(itar).freeze,
149
+ "skos:prefLabel" => %(ITAR \(Importtjeneste og autoritetsregistre\)).freeze,
150
+ subPropertyOf: "http://id.loc.gov/vocabulary/identifiers/id".freeze,
151
+ type: ["rdf:Property".freeze, "mads:Authority".freeze, "skos:Concept".freeze]
152
+ property :lccn,
153
+ label: "Library of Congress Control Number".freeze,
154
+ "mads:authoritativeLabel" => %(Library of Congress Control Number).freeze,
155
+ "mads:code" => %(lccn).freeze,
156
+ "skos:notation" => %(lccn).freeze,
157
+ "skos:prefLabel" => %(Library of Congress Control Number).freeze,
158
+ subPropertyOf: "http://id.loc.gov/vocabulary/identifiers/id".freeze,
159
+ type: ["rdf:Property".freeze, "mads:Authority".freeze, "skos:Concept".freeze]
160
+ property :local,
161
+ label: "Locally defined identifier".freeze,
162
+ "mads:authoritativeLabel" => %(Locally defined identifier).freeze,
163
+ "mads:code" => %(local).freeze,
164
+ "skos:notation" => %(local).freeze,
165
+ "skos:prefLabel" => %(Locally defined identifier).freeze,
166
+ subPropertyOf: "http://id.loc.gov/vocabulary/identifiers/id".freeze,
167
+ type: ["rdf:Property".freeze, "mads:Authority".freeze, "skos:Concept".freeze]
168
+ property :"matrix-number",
169
+ label: "Sound recording matrix number".freeze,
170
+ "mads:authoritativeLabel" => %(Sound recording matrix number).freeze,
171
+ "mads:code" => %(matrix-number).freeze,
172
+ "skos:notation" => %(matrix-number).freeze,
173
+ "skos:prefLabel" => %(Sound recording matrix number).freeze,
174
+ subPropertyOf: "http://id.loc.gov/vocabulary/identifiers/id".freeze,
175
+ type: ["rdf:Property".freeze, "mads:Authority".freeze, "skos:Concept".freeze]
176
+ property :"music-plate",
177
+ label: "Publisher's music plate number".freeze,
178
+ "mads:authoritativeLabel" => %(Publisher's music plate number).freeze,
179
+ "mads:code" => %(music-plate).freeze,
180
+ "skos:notation" => %(music-plate).freeze,
181
+ "skos:prefLabel" => %(Publisher's music plate number).freeze,
182
+ subPropertyOf: "http://id.loc.gov/vocabulary/identifiers/id".freeze,
183
+ type: ["rdf:Property".freeze, "mads:Authority".freeze, "skos:Concept".freeze]
184
+ property :"music-publisher",
185
+ label: "Publisher-assigned music number".freeze,
186
+ "mads:authoritativeLabel" => %(Publisher-assigned music number).freeze,
187
+ "mads:code" => %(music-publisher).freeze,
188
+ "skos:notation" => %(music-publisher).freeze,
189
+ "skos:prefLabel" => %(Publisher-assigned music number).freeze,
190
+ subPropertyOf: "http://id.loc.gov/vocabulary/identifiers/id".freeze,
191
+ type: ["rdf:Property".freeze, "mads:Authority".freeze, "skos:Concept".freeze]
192
+ property :natgazfid,
193
+ label: "U.S. National Gazetteer Feature Name Identifier".freeze,
194
+ "mads:authoritativeLabel" => %(U.S. National Gazetteer Feature Name Identifier).freeze,
195
+ "mads:code" => %(natgazfid).freeze,
196
+ "skos:notation" => %(natgazfid).freeze,
197
+ "skos:prefLabel" => %(U.S. National Gazetteer Feature Name Identifier).freeze,
198
+ subPropertyOf: "http://id.loc.gov/vocabulary/identifiers/id".freeze,
199
+ type: ["rdf:Property".freeze, "mads:Authority".freeze, "skos:Concept".freeze]
200
+ property :nipo,
201
+ label: "Número de Identificación de las Publicaciones Oficiales".freeze,
202
+ "mads:authoritativeLabel" => %(Número de Identificación de las Publicaciones Oficiales).freeze,
203
+ "mads:code" => %(nipo).freeze,
204
+ "skos:notation" => %(nipo).freeze,
205
+ "skos:prefLabel" => %(Número de Identificación de las Publicaciones Oficiales).freeze,
206
+ subPropertyOf: "http://id.loc.gov/vocabulary/identifiers/id".freeze,
207
+ type: ["rdf:Property".freeze, "mads:Authority".freeze, "skos:Concept".freeze]
208
+ property :orcid,
209
+ label: "Open Researcher and Contributor IDentifier".freeze,
210
+ "mads:authoritativeLabel" => %(Open Researcher and Contributor IDentifier).freeze,
211
+ "mads:code" => %(orcid).freeze,
212
+ "skos:notation" => %(orcid).freeze,
213
+ "skos:prefLabel" => %(Open Researcher and Contributor IDentifier).freeze,
214
+ subPropertyOf: "http://id.loc.gov/vocabulary/identifiers/id".freeze,
215
+ type: ["rdf:Property".freeze, "mads:Authority".freeze, "skos:Concept".freeze]
216
+ property :sici,
217
+ label: "Serial Item and Contribution Identifier".freeze,
218
+ "mads:authoritativeLabel" => %(Serial Item and Contribution Identifier).freeze,
219
+ "mads:code" => %(sici).freeze,
220
+ "skos:notation" => %(sici).freeze,
221
+ "skos:prefLabel" => %(Serial Item and Contribution Identifier).freeze,
222
+ subPropertyOf: "http://id.loc.gov/vocabulary/identifiers/id".freeze,
223
+ type: ["rdf:Property".freeze, "mads:Authority".freeze, "skos:Concept".freeze]
224
+ property :"stock-number",
225
+ label: "Publisher, distributor, or vendor stock number".freeze,
226
+ "mads:authoritativeLabel" => %(Publisher, distributor, or vendor stock number).freeze,
227
+ "mads:code" => %(stock-number).freeze,
228
+ "skos:notation" => %(stock-number).freeze,
229
+ "skos:prefLabel" => %(Publisher, distributor, or vendor stock number).freeze,
230
+ subPropertyOf: "http://id.loc.gov/vocabulary/identifiers/id".freeze,
231
+ type: ["rdf:Property".freeze, "mads:Authority".freeze, "skos:Concept".freeze]
232
+ property :strn,
233
+ label: "Standard Technical Report Number".freeze,
234
+ "mads:authoritativeLabel" => %(Standard Technical Report Number).freeze,
235
+ "mads:code" => %(strn).freeze,
236
+ "skos:notation" => %(strn).freeze,
237
+ "skos:prefLabel" => %(Standard Technical Report Number).freeze,
238
+ subPropertyOf: "http://id.loc.gov/vocabulary/identifiers/id".freeze,
239
+ type: ["rdf:Property".freeze, "mads:Authority".freeze, "skos:Concept".freeze]
240
+ property :upc,
241
+ label: "Universal Product Code".freeze,
242
+ "mads:authoritativeLabel" => %(Universal Product Code).freeze,
243
+ "mads:code" => %(upc).freeze,
244
+ "skos:notation" => %(upc).freeze,
245
+ "skos:prefLabel" => %(Universal Product Code).freeze,
246
+ subPropertyOf: "http://id.loc.gov/vocabulary/identifiers/id".freeze,
247
+ type: ["rdf:Property".freeze, "mads:Authority".freeze, "skos:Concept".freeze]
248
+ property :uri,
249
+ label: "Uniform Resource Identifier".freeze,
250
+ "mads:authoritativeLabel" => %(Uniform Resource Identifier).freeze,
251
+ "mads:code" => %(uri).freeze,
252
+ "skos:notation" => %(uri).freeze,
253
+ "skos:prefLabel" => %(Uniform Resource Identifier).freeze,
254
+ subPropertyOf: "http://id.loc.gov/vocabulary/identifiers/id".freeze,
255
+ type: ["rdf:Property".freeze, "mads:Authority".freeze, "skos:Concept".freeze]
256
+ property :urn,
257
+ label: "Uniform Resource Name".freeze,
258
+ "mads:authoritativeLabel" => %(Uniform Resource Name).freeze,
259
+ "mads:code" => %(urn).freeze,
260
+ "skos:notation" => %(urn).freeze,
261
+ "skos:prefLabel" => %(Uniform Resource Name).freeze,
262
+ subPropertyOf: "http://id.loc.gov/vocabulary/identifiers/id".freeze,
263
+ type: ["rdf:Property".freeze, "mads:Authority".freeze, "skos:Concept".freeze]
264
+ property :viaf,
265
+ label: "Virtual International Authority File number".freeze,
266
+ "mads:authoritativeLabel" => %(Virtual International Authority File number).freeze,
267
+ "mads:code" => %(viaf).freeze,
268
+ "skos:notation" => %(viaf).freeze,
269
+ "skos:prefLabel" => %(Virtual International Authority File number).freeze,
270
+ subPropertyOf: "http://id.loc.gov/vocabulary/identifiers/id".freeze,
271
+ type: ["rdf:Property".freeze, "mads:Authority".freeze, "skos:Concept".freeze]
272
+ property :"videorecording-identifier",
273
+ label: "Publisher-assigned videorecording number".freeze,
274
+ "mads:authoritativeLabel" => %(Publisher-assigned videorecording number).freeze,
275
+ "mads:code" => %(videorecording-identifier).freeze,
276
+ "skos:notation" => %(videorecording-identifier).freeze,
277
+ "skos:prefLabel" => %(Publisher-assigned videorecording number).freeze,
278
+ subPropertyOf: "http://id.loc.gov/vocabulary/identifiers/id".freeze,
279
+ type: ["rdf:Property".freeze, "mads:Authority".freeze, "skos:Concept".freeze]
280
+ end
281
+ end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: rdf-vocab
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.3.0
4
+ version: 0.4.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - David Chandek-Stark
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2014-12-16 00:00:00.000000000 Z
11
+ date: 2014-12-17 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: linkeddata
@@ -85,6 +85,9 @@ files:
85
85
  - lib/rdf-vocab/config/vocab.yml
86
86
  - lib/rdf-vocab/tasks/vocab.rake
87
87
  - lib/rdf-vocab/version.rb
88
+ - lib/rdf-vocab/vocab/acl.rb
89
+ - lib/rdf-vocab/vocab/fcrepo3.rb
90
+ - lib/rdf-vocab/vocab/identifiers.rb
88
91
  - lib/rdf-vocab/vocab/ldp.rb
89
92
  - lib/rdf-vocab/vocab/mads.rb
90
93
  - lib/rdf-vocab/vocab/marc_relators.rb