rdf-vocab 0.5.0 → 0.6.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: 9f4ea465fafbe9f219480699507fc2f14d248530
4
- data.tar.gz: a497f8cf359e06798f369003b54985e738abbc4a
3
+ metadata.gz: fc3d76a2895974ffcb89f4cb398163a1d74f5bdd
4
+ data.tar.gz: 4dfacc8e2fb59baf2a62cab892812ea98cc61aca
5
5
  SHA512:
6
- metadata.gz: 77f58a33afed65cf2e82365e697a298ef4c0ba07939e79decbc0aaf6b90ddae6f16315de698f6d64b88e54e8771153d966d2b83ec3bb8df01fb980b16d557131
7
- data.tar.gz: 84e17ebb110af8aefa4b8532dcd99a3c16500dad679dfea4ca56ee80a0880984d9b7b25b7c4e79a10b60a3d4622231d8cd9ec08cab1379b7fa75e4bcecc8afa8
6
+ metadata.gz: 401f22b487c281de3a9f90ac68377310c86093630c15c3a5f1f7abf7529e0d1515400bb1f0fa6f2e093e1de064747d53afc6040a3535e995bc7ec85ab57da7e5
7
+ data.tar.gz: 27884408cf3b815ed26cfa7faf839248c67bef2d8c6eb62eb5b79487ed021c7627579aa63b5090491690c1043797fadc61ccc5b9f9e2409fd691c84eb64a012b
data/CONTRIBUTING.md ADDED
@@ -0,0 +1,116 @@
1
+ # How to Contribute
2
+
3
+ We want your help to make Project Hydra great.
4
+ There are a few guidelines that we need contributors to follow so that we can have a chance of keeping on top of things.
5
+
6
+ ## Hydra Project Intellectual Property Licensing and Ownership
7
+
8
+ All code contributors must have an Individual Contributor License Agreement (iCLA) on file with the Hydra Project Steering Group.
9
+ If the contributor works for an institution, the institution must have a Corporate Contributor License Agreement (cCLA) on file.
10
+
11
+ https://wiki.duraspace.org/display/hydra/Hydra+Project+Intellectual+Property+Licensing+and+Ownership
12
+
13
+ You should also add yourself to the `CONTRIBUTORS.md` file in the root of the project.
14
+
15
+ ## Contribution Tasks
16
+
17
+ * Reporting Issues
18
+ * Making Changes
19
+ * Submitting Changes
20
+ * Merging Changes
21
+
22
+ ### Reporting Issues
23
+
24
+ * Make sure you have a [GitHub account](https://github.com/signup/free)
25
+ * Submit a [Github issue](./issues) by:
26
+ * Clearly describing the issue
27
+ * Provide a descriptive summary
28
+ * Explain the expected behavior
29
+ * Explain the actual behavior
30
+ * Provide steps to reproduce the actual behavior
31
+
32
+ ### Making Changes
33
+
34
+ * Fork the repository on GitHub
35
+ * Create a topic branch from where you want to base your work.
36
+ * This is usually the master branch.
37
+ * To quickly create a topic branch based on master; `git branch fix/master/my_contribution master`
38
+ * Then checkout the new branch with `git checkout fix/master/my_contribution`.
39
+ * Please avoid working directly on the `master` branch.
40
+ * You may find the [hub suite of commands](https://github.com/defunkt/hub) helpful
41
+ * Make commits of logical units.
42
+ * Your commit should include a high level description of your work in HISTORY.textile
43
+ * Check for unnecessary whitespace with `git diff --check` before committing.
44
+ * Make sure your commit messages are [well formed](http://tbaggery.com/2008/04/19/a-note-about-git-commit-messages.html).
45
+ * If you created an issue, you can close it by including "Closes #issue" in your commit message. See [Github's blog post for more details](https://github.com/blog/1386-closing-issues-via-commit-messages)
46
+
47
+ ```
48
+ Present tense short summary (50 characters or less)
49
+
50
+ More detailed description, if necessary. It should be wrapped to 72
51
+ characters. Try to be as descriptive as you can, even if you think that
52
+ the commit content is obvious, it may not be obvious to others. You
53
+ should add such description also if it's already present in bug tracker,
54
+ it should not be necessary to visit a webpage to check the history.
55
+
56
+ Include Closes #<issue-number> when relavent.
57
+
58
+ Description can have multiple paragraphs and you can use code examples
59
+ inside, just indent it with 4 spaces:
60
+
61
+ class PostsController
62
+ def index
63
+ respond_with Post.limit(10)
64
+ end
65
+ end
66
+
67
+ You can also add bullet points:
68
+
69
+ - you can use dashes or asterisks
70
+
71
+ - also, try to indent next line of a point for readability, if it's too
72
+ long to fit in 72 characters
73
+ ```
74
+
75
+ * Make sure you have added the necessary tests for your changes.
76
+ * Run _all_ the tests to assure nothing else was accidentally broken.
77
+ * When you are ready to submit a pull request
78
+
79
+ ### Submitting Changes
80
+
81
+ [Detailed Walkthrough of One Pull Request per Commit](http://ndlib.github.io/practices/one-commit-per-pull-request/)
82
+
83
+ * Read the article ["Using Pull Requests"](https://help.github.com/articles/using-pull-requests) on GitHub.
84
+ * Make sure your branch is up to date with its parent branch (i.e. master)
85
+ * `git checkout master`
86
+ * `git pull --rebase`
87
+ * `git checkout <your-branch>`
88
+ * `git rebase master`
89
+ * It is likely a good idea to run your tests again.
90
+ * Squash the commits for your branch into one commit
91
+ * `git rebase --interactive HEAD~<number-of-commits>` ([See Github help](https://help.github.com/articles/interactive-rebase))
92
+ * To determine the number of commits on your branch: `git log master..<your-branch> --oneline | wc -l`
93
+ * Squashing your branch's changes into one commit is "good form" and helps the person merging your request to see everything that is going on.
94
+ * Push your changes to a topic branch in your fork of the repository.
95
+ * Submit a pull request from your fork to the project.
96
+
97
+ ### Merging Changes
98
+
99
+ * It is considered "poor from" to merge your own request.
100
+ * Please take the time to review the changes and get a sense of what is being changed. Things to consider:
101
+ * Does the commit message explain what is going on?
102
+ * Does the code changes have tests? _Not all changes need new tests, some changes are refactorings_
103
+ * Does the commit contain more than it should? Are two separate concerns being addressed in one commit?
104
+ * Did the Travis tests complete successfully?
105
+ * If you are uncertain, bring other contributors into the conversation by creating a comment that includes their @username.
106
+ * If you like the pull request, but want others to chime in, create a +1 comment and tag a user.
107
+
108
+ ## New Developers
109
+ A great way to get new developers involved and to learn the process is to have them go through the Hierarchy of Promises and create a pull request to improve it.
110
+
111
+ # Additional Resources
112
+
113
+ * [General GitHub documentation](http://help.github.com/)
114
+ * [GitHub pull request documentation](http://help.github.com/send-pull-requests/)
115
+ * [Pro Git](http://git-scm.com/book) is both a free and excellent book about Git.
116
+ * [A Git Config for Contributing](http://ndlib.github.io/practices/my-typical-per-project-git-config/)
data/CONTRIBUTORS.md CHANGED
@@ -2,4 +2,5 @@ Contributors to this project:
2
2
 
3
3
  - David Chandek-Stark
4
4
  - Aaron Coburn
5
+ - Ronan McHugh
5
6
  - Jon Stroop
data/README.md CHANGED
@@ -11,6 +11,9 @@ See the list of rake tasks in the `vocab` namespace for specific vocabulary gene
11
11
  ## Vocabularies
12
12
 
13
13
  - RDF::Vocab::ACL - [Web Access Control](http://www.w3.org/wiki/WebAccessControl) (W3C)
14
+ - RDF::Vocab::Bibframe - [Bibliographic Framework Initiative](http://bibframe.org/vocab/) (LoC)
15
+ - RDF::Vocab::DataCite - [DataCite Ontology](http://purl.org/spar/datacite/)
16
+ - RDF::Vocab::DWC - [Darwin Core](http://rs.tdwg.org/dwc/terms/)
14
17
  - RDF::Vocab::Fcrepo3 (module) - [Fedora Commons Repository 3](https://github.com/fcrepo3)*
15
18
  - RDF::Vocab::Fcrepo4 - [Fedora Commons Repository 4 Ontology](http://fedora.info/definitions/v4/repository)
16
19
  - RDF::Vocab::Identifiers - [Standard Identifiers Scheme](http://id.loc.gov/vocabulary/identifiers.html) (LoC)
@@ -18,11 +21,11 @@ See the list of rake tasks in the `vocab` namespace for specific vocabulary gene
18
21
  - RDF::Vocab::MADS - [Metadata Authority Description Schema](http://www.loc.gov/standards/mads/) (LoC)
19
22
  - RDF::Vocab::MARCRelators - [MARC Code List for Relators](http://id.loc.gov/vocabulary/relators.html) (LoC)
20
23
  - RDF::Vocab::MODS - [Metadata Object Description Schema](http://www.loc.gov/standards/mods/) (LoC)
21
- - RDF::Vocab::ORE - [Object Reuse and Exchange Ontology](http://www.openarchives.org/ore/1.0/rdfxml) (OAI)
22
24
  - RDF::Vocab::OA - [Open Annotation Data Model](http://www.w3.org/ns/oa) (W3C)
25
+ - RDF::Vocab::ORE - [Object Reuse and Exchange Ontology](http://www.openarchives.org/ore/1.0/rdfxml) (OAI)
23
26
  - RDF::Vocab::PREMIS::V1 - [Preservation Metadata Implementation Strategies (PREMIS) Ontology](http://id.loc.gov/ontologies/premis.html) (LoC)
24
- - RDF::Vocab::PremisEventType - [PREMIS Event Type](http://id.loc.gov/vocabulary/preservation/eventType.html) (LoC)
25
27
  - RDF::Vocab::PROV - [PROV Ontology](http://www.w3.org/TR/prov-o/) (W3C)
28
+ - RDF::Vocab::PremisEventType - [PREMIS Event Type](http://id.loc.gov/vocabulary/preservation/eventType.html) (LoC)
26
29
 
27
30
  * The Fcrepo3 module was extracted from [ActiveFedora](https://github.com/projecthydra/active_fedora), so does not have a generator task.
28
31
 
data/lib/rdf-vocab.rb CHANGED
@@ -1,4 +1,5 @@
1
1
  require "yaml"
2
+ require "uri"
2
3
  require "rdf/cli/vocab-loader"
3
4
 
4
5
  module RDF
@@ -12,6 +13,15 @@ module RDF
12
13
  loader = RDF::VocabularyLoader.new
13
14
  loader.module_name = "RDF::Vocab" unless config[vocab]["module_name"]
14
15
  config[vocab].each do |param, value|
16
+ if param == "source"
17
+ if URI.parse(value).scheme.nil? && !File.exists?(value)
18
+ if File.exists?(path = File.join(File.expand_path("../../sources", __FILE__), value))
19
+ value = path
20
+ else
21
+ raise IOError, "Source file not found."
22
+ end
23
+ end
24
+ end
15
25
  loader.send("#{param}=", value)
16
26
  end
17
27
  loader.output = output if output # default: $stdout
@@ -32,6 +32,18 @@ acl:
32
32
  class_name: ACL
33
33
  uri: http://www.w3.org/ns/auth/acl#
34
34
  source: http://www.w3.org/ns/auth/acl
35
+ bibframe:
36
+ class_name: Bibframe
37
+ uri: http://bibframe.org/vocab/
38
+ source: http://bibframe.org/vocab.rdf
39
+ datacite:
40
+ class_name: DataCite
41
+ uri: http://purl.org/spar/datacite/
42
+ source: http://eelst.cs.unibo.it/apps/LODE/source?url=http://purl.org/spar/datacite
43
+ dwc:
44
+ class_name: DWC
45
+ uri: http://rs.tdwg.org/dwc/terms/
46
+ source: dwcterms.rdf
35
47
  fcrepo4:
36
48
  class_name: Fcrepo4
37
49
  uri: http://fedora.info/definitions/v4/repository#
@@ -16,3 +16,29 @@ namespace :vocab do
16
16
  end
17
17
  end
18
18
  end
19
+
20
+ # Return a Hash of class_name => class for all
21
+ # vocab classes in rdf-vocab
22
+ def vocab_classes(mod = RDF::Vocab, memo = {})
23
+ mod.constants(false).each do |const|
24
+ cls = mod.const_get(const)
25
+ if cls.is_a?(Class)
26
+ memo[cls.__name__] = cls if cls < RDF::Vocabulary
27
+ elsif cls.is_a?(Module)
28
+ vocab_classes(cls, memo)
29
+ end
30
+ end
31
+ memo
32
+ end
33
+
34
+ namespace :vocabs do
35
+ desc "List all vocabularies in this package and their URIs"
36
+ task :list do
37
+ vocabs = vocab_classes
38
+ spaces = vocabs.keys.map(&:size).max + 2
39
+ vocabs.keys.sort.each do |key|
40
+ print "%-#{spaces}s" % key
41
+ puts vocabs[key].to_uri.to_s
42
+ end
43
+ end
44
+ end
@@ -1,5 +1,5 @@
1
1
  module RDF
2
2
  module Vocab
3
- VERSION = "0.5.0"
3
+ VERSION = "0.6.0"
4
4
  end
5
5
  end
@@ -0,0 +1,2056 @@
1
+ # -*- encoding: utf-8 -*-
2
+ # This file generated automatically using vocab-fetch from http://bibframe.org/vocab.rdf
3
+ require 'rdf'
4
+ module RDF::Vocab
5
+ class Bibframe < RDF::StrictVocabulary("http://bibframe.org/vocab/")
6
+
7
+ # Class definitions
8
+ term :Agent,
9
+ comment: %(Entity having a role in a resource \(Person, Organization, etc.\).).freeze,
10
+ label: "Agent".freeze,
11
+ subClassOf: "http://bibframe.org/vocab/Authority".freeze,
12
+ type: "rdfs:Class".freeze
13
+ term :Annotation,
14
+ comment: %(Resource that asserts additional information about other BIBFRAME resource.).freeze,
15
+ label: "Annotation".freeze,
16
+ subClassOf: "http://bibframe.org/vocab/Resource".freeze,
17
+ type: "rdfs:Class".freeze
18
+ term :Archival,
19
+ comment: %(Resources organically created, accumulated, and/or used by a person, family, or organization in the course of conduct of affairs and preserved because of their continuing value.).freeze,
20
+ "dc:modified" => %(2014-10-28 \(Updated\)).freeze,
21
+ label: "Archival controlled".freeze,
22
+ subClassOf: "http://bibframe.org/vocab/Instance".freeze,
23
+ type: "rdfs:Class".freeze
24
+ term :Arrangement,
25
+ comment: %(Information about the organization and arrangement of a collection of items. For instance, for computer files, organization and arrangement information may be the file structure and sort sequence of a file; for visual materials, this information may be how a collection is arranged.).freeze,
26
+ label: "Organization of materials information".freeze,
27
+ subClassOf: "http://bibframe.org/vocab/Resource".freeze,
28
+ type: "rdfs:Class".freeze
29
+ term :Audio,
30
+ comment: %(Resources expressed in an audible form, including music or other sounds.).freeze,
31
+ label: "Audio".freeze,
32
+ subClassOf: "http://bibframe.org/vocab/Work".freeze,
33
+ type: "rdfs:Class".freeze
34
+ term :Authority,
35
+ comment: %(Representation of a key concept or thing. Works and Instances, for example, have defined relationships to these concepts and things.).freeze,
36
+ label: "Authority".freeze,
37
+ subClassOf: "http://bibframe.org/vocab/Resource".freeze,
38
+ type: "rdfs:Class".freeze
39
+ term :Cartography,
40
+ comment: %(Resource that show spatial information, including maps, atlases, globes,digital maps, and other cartographic items.).freeze,
41
+ label: "Cartography".freeze,
42
+ subClassOf: "http://bibframe.org/vocab/Work".freeze,
43
+ type: "rdfs:Class".freeze
44
+ term :Category,
45
+ comment: %(Generic list of values information.).freeze,
46
+ "dc:modified" => %(2014-03-21 \(Definition Updated\)).freeze,
47
+ label: "Category".freeze,
48
+ subClassOf: "http://bibframe.org/vocab/Resource".freeze,
49
+ type: "rdfs:Class".freeze
50
+ term :Classification,
51
+ comment: %(System of coding, assorting and organizing materials according to their subject.).freeze,
52
+ label: "Classification Entity".freeze,
53
+ subClassOf: "http://bibframe.org/vocab/Resource".freeze,
54
+ type: "rdfs:Class".freeze
55
+ term :Collection,
56
+ comment: %(Aggregation of resources, generally gathered together artificially.).freeze,
57
+ label: "Collection".freeze,
58
+ subClassOf: "http://bibframe.org/vocab/Instance".freeze,
59
+ type: "rdfs:Class".freeze
60
+ term :CoverArt,
61
+ comment: %(Link to a cover illustration of an instance.).freeze,
62
+ label: "Cover Art Annotation".freeze,
63
+ subClassOf: "http://bibframe.org/vocab/Annotation".freeze,
64
+ type: "rdfs:Class".freeze
65
+ term :Dataset,
66
+ comment: %(Data encoded in a defined structure. Includes numeric data, environmental data,etc., used by applications software to calculate averages, correlations, etc., or to produce models, etc., but not normally displayed in its raw form.).freeze,
67
+ label: "Dataset".freeze,
68
+ subClassOf: "http://bibframe.org/vocab/Work".freeze,
69
+ type: "rdfs:Class".freeze
70
+ term :DescriptionAdminInfo,
71
+ comment: %(Administrative metadata associated with the graph.).freeze,
72
+ "dc:modified" => %(2014-03-21 \(Definition Updated\)).freeze,
73
+ label: "Administrative metadata".freeze,
74
+ subClassOf: "http://bibframe.org/vocab/Resource".freeze,
75
+ type: "rdfs:Class".freeze
76
+ term :Electronic,
77
+ comment: %(Resource that is intended for manipulation by a computer, residing in a carrier accessed either directly or remotely.).freeze,
78
+ "dc:modified" => %(2014-10-28 \(Updated\)).freeze,
79
+ label: "Electronic".freeze,
80
+ subClassOf: "http://bibframe.org/vocab/Instance".freeze,
81
+ type: "rdfs:Class".freeze
82
+ term :Event,
83
+ comment: %(Time or place of an event.).freeze,
84
+ "dc:modified" => %(2014-03-21 \(Definition Updated\)).freeze,
85
+ label: "Event Entity".freeze,
86
+ subClassOf: "http://bibframe.org/vocab/Resource".freeze,
87
+ type: "rdfs:Class".freeze
88
+ term :Family,
89
+ comment: %(Two or more persons related by birth, marriage, adoption, civil union, or similar legal status, or who otherwise present themselves as a family.).freeze,
90
+ label: "Family".freeze,
91
+ subClassOf: "http://bibframe.org/vocab/Agent".freeze,
92
+ type: "rdfs:Class".freeze
93
+ term :HeldItem,
94
+ comment: %(Item holding information.).freeze,
95
+ "dc:modified" => %(2014-03-21 \(Label Updated\)).freeze,
96
+ label: "Item held".freeze,
97
+ subClassOf: "http://bibframe.org/vocab/HeldMaterial".freeze,
98
+ type: "rdfs:Class".freeze
99
+ term :HeldMaterial,
100
+ comment: %(Summary holdings information.).freeze,
101
+ "dc:modified" => %(2014-03-21 \(Label Updated\)).freeze,
102
+ label: "Material held".freeze,
103
+ subClassOf: "http://bibframe.org/vocab/Annotation".freeze,
104
+ type: "rdfs:Class".freeze
105
+ term :Identifier,
106
+ comment: %(Token or name that is associated with a resource, such as a URI, or an ISBN, etc..).freeze,
107
+ label: "Identifier".freeze,
108
+ subClassOf: "http://bibframe.org/vocab/Resource".freeze,
109
+ type: "rdfs:Class".freeze
110
+ term :Instance,
111
+ comment: %(Resource reflecting an individual, material embodiment of the Work.).freeze,
112
+ label: "Instance".freeze,
113
+ subClassOf: "http://bibframe.org/vocab/Resource".freeze,
114
+ type: "rdfs:Class".freeze
115
+ term :Integrating,
116
+ comment: %(Cataloging resource that is added to or changed by means of updates that do not remain discrete but are integrated into the whole.).freeze,
117
+ label: "Integrating".freeze,
118
+ subClassOf: "http://bibframe.org/vocab/Instance".freeze,
119
+ type: "rdfs:Class".freeze
120
+ term :IntendedAudience,
121
+ comment: %(Information that identifies the specific intended or target audience or intellectual level for which the content described item is considered appropriate. Used to record interest and motivation levels and special learner characteristics.).freeze,
122
+ label: "Intended Audience Information".freeze,
123
+ subClassOf: "http://bibframe.org/vocab/Resource".freeze,
124
+ type: "rdfs:Class".freeze
125
+ term :Jurisdiction,
126
+ comment: %(Legal or political unit administering a geographic area.).freeze,
127
+ label: "Jurisdiction".freeze,
128
+ subClassOf: "http://bibframe.org/vocab/Agent".freeze,
129
+ type: "rdfs:Class".freeze
130
+ term :Language,
131
+ comment: %(Language entity.).freeze,
132
+ label: "Language Entity".freeze,
133
+ subClassOf: "http://bibframe.org/vocab/Resource".freeze,
134
+ type: "rdfs:Class".freeze
135
+ term :Manuscript,
136
+ comment: %(Resource that is written in handwriting or typescript. These are generally unique resources.).freeze,
137
+ label: "Manuscript".freeze,
138
+ subClassOf: "http://bibframe.org/vocab/Instance".freeze,
139
+ type: "rdfs:Class".freeze
140
+ term :Meeting,
141
+ comment: %(Gathering of individuals or representatives of various bodies for the purpose of discussing and/or acting on topics of common interest.).freeze,
142
+ label: "Meeting".freeze,
143
+ subClassOf: "http://bibframe.org/vocab/Agent".freeze,
144
+ type: "rdfs:Class".freeze
145
+ term :MixedMaterial,
146
+ comment: %(Resource comprised of multiple types which are not driven by software. This may include materials in two or more forms that are related by virtue of their having been accumulated by or about a person or body, e.g. archival forms.).freeze,
147
+ label: "Mixed Material".freeze,
148
+ subClassOf: "http://bibframe.org/vocab/Work".freeze,
149
+ type: "rdfs:Class".freeze
150
+ term :Monograph,
151
+ comment: %(Single unit cataloging resource.).freeze,
152
+ label: "Single unit".freeze,
153
+ subClassOf: "http://bibframe.org/vocab/Instance".freeze,
154
+ type: "rdfs:Class".freeze
155
+ term :MovingImage,
156
+ comment: %(Images intended to be perceived as moving, including motion pictures \(using liveaction and/or animation\), film and video recordings of performances, events,etc.).freeze,
157
+ label: "Moving Image".freeze,
158
+ subClassOf: "http://bibframe.org/vocab/Work".freeze,
159
+ type: "rdfs:Class".freeze
160
+ term :Multimedia,
161
+ comment: %(Electronic resource that is a computer program \(i.e. digitally encoded instructions intended to be processed and performed by a computer\) or which consist of multiple media types that are software driven. Examples include videogames and websites.).freeze,
162
+ label: "Software or Multimedia".freeze,
163
+ subClassOf: "http://bibframe.org/vocab/Work".freeze,
164
+ type: "rdfs:Class".freeze
165
+ term :MultipartMonograph,
166
+ comment: %(Multiple unit cataloging resource that is complete or intended to be completed within a finite number of parts.).freeze,
167
+ label: "Multiple units".freeze,
168
+ subClassOf: "http://bibframe.org/vocab/Instance".freeze,
169
+ type: "rdfs:Class".freeze
170
+ term :NotatedMovement,
171
+ comment: %(Graphic, non-realized representations of movement intended to be perceived visually, e.g. dance.).freeze,
172
+ label: "Notated Movement".freeze,
173
+ subClassOf: "http://bibframe.org/vocab/Work".freeze,
174
+ type: "rdfs:Class".freeze
175
+ term :NotatedMusic,
176
+ comment: %(Graphic, non-realized representations of musical works intended to be perceived visually.).freeze,
177
+ label: "Notated Music".freeze,
178
+ subClassOf: "http://bibframe.org/vocab/Work".freeze,
179
+ type: "rdfs:Class".freeze
180
+ term :Organization,
181
+ comment: %(Corporation or group of persons and/or organizations that acts, or may act, as a unit.).freeze,
182
+ label: "Organization".freeze,
183
+ subClassOf: "http://bibframe.org/vocab/Agent".freeze,
184
+ type: "rdfs:Class".freeze
185
+ term :Person,
186
+ comment: %(Individual or identity established by an individual \(either alone or in collaboration with one or more other individuals\)).freeze,
187
+ label: "Person".freeze,
188
+ subClassOf: "http://bibframe.org/vocab/Agent".freeze,
189
+ type: "rdfs:Class".freeze
190
+ term :Place,
191
+ comment: %(Geographic location.).freeze,
192
+ label: "Place".freeze,
193
+ subClassOf: "http://bibframe.org/vocab/Authority".freeze,
194
+ type: "rdfs:Class".freeze
195
+ term :Print,
196
+ comment: %(Resource that is printed.).freeze,
197
+ label: "Printed".freeze,
198
+ subClassOf: "http://bibframe.org/vocab/Instance".freeze,
199
+ type: "rdfs:Class".freeze
200
+ term :Provider,
201
+ comment: %(Name of agent relating to the publication, printing, distribution, issue,release, or production of a resource.).freeze,
202
+ label: "Provider Entity".freeze,
203
+ subClassOf: "http://bibframe.org/vocab/Resource".freeze,
204
+ type: "rdfs:Class".freeze
205
+ term :Relator,
206
+ comment: %(How an agent is related to a resource.).freeze,
207
+ "dc:modified" => %(2014-04-30 \(New\)).freeze,
208
+ label: "Relationship".freeze,
209
+ subClassOf: "http://bibframe.org/vocab/Resource".freeze,
210
+ type: "rdfs:Class".freeze
211
+ term :Resource,
212
+ comment: %(Any BIBFRAME object.).freeze,
213
+ label: "Resource".freeze,
214
+ type: "rdfs:Class".freeze
215
+ term :Review,
216
+ comment: %(Critique of a resource, such as a book review, analysis, etc.).freeze,
217
+ label: "Review Annotation".freeze,
218
+ subClassOf: "http://bibframe.org/vocab/Annotation".freeze,
219
+ type: "rdfs:Class".freeze
220
+ term :Serial,
221
+ comment: %(Multiple unit cataloging resource issued in successive parts that has no predetermined conclusion.).freeze,
222
+ label: "Serial".freeze,
223
+ subClassOf: "http://bibframe.org/vocab/Instance".freeze,
224
+ type: "rdfs:Class".freeze
225
+ term :StillImage,
226
+ comment: %(Resource expressed through line, shape, shading, etc., intended to be perceived visually as a still image or images in two dimensions. Includes two-dimensional images and slides and transparencies.).freeze,
227
+ label: "Still Image".freeze,
228
+ subClassOf: "http://bibframe.org/vocab/Work".freeze,
229
+ type: "rdfs:Class".freeze
230
+ term :Summary,
231
+ comment: %(Description of the content of a resource, such as an abstract, summary, etc..).freeze,
232
+ label: "Summary Annotation".freeze,
233
+ subClassOf: "http://bibframe.org/vocab/Annotation".freeze,
234
+ type: "rdfs:Class".freeze
235
+ term :TableOfContents,
236
+ comment: %(Table of Contents information for a resource.).freeze,
237
+ "dc:modified" => %(2014-03-21 \(Label Updated\)).freeze,
238
+ label: "Table of Contents Annotation".freeze,
239
+ subClassOf: "http://bibframe.org/vocab/Annotation".freeze,
240
+ type: "rdfs:Class".freeze
241
+ term :Tactile,
242
+ comment: %(Resource that is intended to be perceived by touch.).freeze,
243
+ label: "Tactile Material".freeze,
244
+ subClassOf: "http://bibframe.org/vocab/Instance".freeze,
245
+ type: "rdfs:Class".freeze
246
+ term :Temporal,
247
+ comment: %(Chronological period.).freeze,
248
+ label: "Temporal Concept".freeze,
249
+ subClassOf: "http://bibframe.org/vocab/Authority".freeze,
250
+ type: "rdfs:Class".freeze
251
+ term :Text,
252
+ comment: %(Form of notation for language intended to be perceived visually and understood through the use of language in written or spoken form.).freeze,
253
+ label: "Text".freeze,
254
+ subClassOf: "http://bibframe.org/vocab/Work".freeze,
255
+ type: "rdfs:Class".freeze
256
+ term :ThreeDimensionalObject,
257
+ comment: %(Resource in a form intended to be perceived visually in three-dimensions.Includes man-made objects such as models, sculptures, clothing, and toys, as well as naturally occurring objects such as specimens mounted for viewing.).freeze,
258
+ label: "Three-dimensional Object".freeze,
259
+ subClassOf: "http://bibframe.org/vocab/Work".freeze,
260
+ type: "rdfs:Class".freeze
261
+ term :Title,
262
+ comment: %(Title information relating to a resource: title proper, translated title, or variant form of title.).freeze,
263
+ label: "Title Entity".freeze,
264
+ subClassOf: "http://bibframe.org/vocab/Resource".freeze,
265
+ type: "rdfs:Class".freeze
266
+ term :Topic,
267
+ comment: %(Concept or area of knowledge.).freeze,
268
+ label: "Topic".freeze,
269
+ subClassOf: "http://bibframe.org/vocab/Authority".freeze,
270
+ type: "rdfs:Class".freeze
271
+ term :Work,
272
+ comment: %(Resource reflecting a conceptual essence of the cataloging resource.).freeze,
273
+ label: "Work".freeze,
274
+ subClassOf: "http://bibframe.org/vocab/Resource".freeze,
275
+ type: "rdfs:Class".freeze
276
+
277
+ # Property definitions
278
+ property :abbreviatedTitle,
279
+ comment: %(Title as abbreviated for indexing or identification.).freeze,
280
+ domain: "http://bibframe.org/vocab/Instance".freeze,
281
+ label: "Abbreviated title".freeze,
282
+ range: "http://bibframe.org/vocab/Title".freeze,
283
+ subPropertyOf: "http://bibframe.org/vocab/instanceTitle".freeze,
284
+ type: "rdf:Property".freeze
285
+ property :absorbed,
286
+ comment: %(Work that has been incorporated into another Work).freeze,
287
+ "dc:modified" => %(2014-04-10 \(Updated subproperty\)).freeze,
288
+ domain: "http://bibframe.org/vocab/Work".freeze,
289
+ label: "Absorbed".freeze,
290
+ range: "http://bibframe.org/vocab/Work".freeze,
291
+ subPropertyOf: "http://bibframe.org/vocab/precededBy".freeze,
292
+ type: "rdf:Property".freeze
293
+ property :absorbedBy,
294
+ comment: %(Work that incorporates another work.).freeze,
295
+ "dc:modified" => %(2014-04-10 \(Updated subproperty\)).freeze,
296
+ domain: "http://bibframe.org/vocab/Work".freeze,
297
+ label: "Absorbed by".freeze,
298
+ range: "http://bibframe.org/vocab/Work".freeze,
299
+ subPropertyOf: "http://bibframe.org/vocab/succeededBy".freeze,
300
+ type: "rdf:Property".freeze
301
+ property :absorbedInPart,
302
+ comment: %(Work that has been partially incorporated into another work.).freeze,
303
+ "dc:modified" => %(2014-04-10 \(Updated subproperty\)).freeze,
304
+ domain: "http://bibframe.org/vocab/Work".freeze,
305
+ label: "Absorbed in part".freeze,
306
+ range: "http://bibframe.org/vocab/Work".freeze,
307
+ subPropertyOf: "http://bibframe.org/vocab/precededBy".freeze,
308
+ type: "rdf:Property".freeze
309
+ property :absorbedInPartBy,
310
+ comment: %(Work that incorporates part of the content of another work.).freeze,
311
+ "dc:modified" => %(2014-04-10 \(Updated subproperty\)).freeze,
312
+ domain: "http://bibframe.org/vocab/Work".freeze,
313
+ label: "Absorbed in part by".freeze,
314
+ range: "http://bibframe.org/vocab/Work".freeze,
315
+ subPropertyOf: "http://bibframe.org/vocab/succeededBy".freeze,
316
+ type: "rdf:Property".freeze
317
+ property :accessCondition,
318
+ comment: %(Allowances and restrictions on access.).freeze,
319
+ domain: "http://bibframe.org/vocab/HeldMaterial".freeze,
320
+ label: "Access condition".freeze,
321
+ range: "rdfs:Literal".freeze,
322
+ type: "rdf:Property".freeze
323
+ property :accompaniedBy,
324
+ comment: %(Resource that has an accompanying resource which adds to it).freeze,
325
+ "dc:modified" => %(2014-04-10 \(Range updated\)).freeze,
326
+ label: "Accompanied by".freeze,
327
+ subPropertyOf: "http://bibframe.org/vocab/relatedTo".freeze,
328
+ type: "rdf:Property".freeze
329
+ property :accompanies,
330
+ comment: %(Resource that adds to or is issued with the described resource).freeze,
331
+ "dc:modified" => %(2014-04-10 \(Range updated\)).freeze,
332
+ label: "Accompanies".freeze,
333
+ subPropertyOf: "http://bibframe.org/vocab/relatedTo".freeze,
334
+ type: "rdf:Property".freeze
335
+ property :agent,
336
+ comment: %(Entity associated with a resource or element of description).freeze,
337
+ label: "Associated agent".freeze,
338
+ range: "http://bibframe.org/vocab/Authority".freeze,
339
+ type: "rdf:Property".freeze
340
+ property :annotates,
341
+ comment: %(Resource to which the annotation relates.).freeze,
342
+ domain: "http://bibframe.org/vocab/Annotation".freeze,
343
+ label: "Target of Annotation".freeze,
344
+ range: "rdfs:Resource".freeze,
345
+ type: "rdf:Property".freeze
346
+ property :annotationAssertedBy,
347
+ comment: %(Annotation was asserted by the given entity.).freeze,
348
+ domain: "http://bibframe.org/vocab/Annotation".freeze,
349
+ label: "Annotation asserted by".freeze,
350
+ range: "http://bibframe.org/vocab/Agent".freeze,
351
+ type: "rdf:Property".freeze
352
+ property :annotationBody,
353
+ comment: %(Content of the annotation about the resource.).freeze,
354
+ domain: "http://bibframe.org/vocab/Annotation".freeze,
355
+ label: "Annotation Body".freeze,
356
+ range: "rdfs:Resource".freeze,
357
+ type: "rdf:Property".freeze
358
+ property :annotationSource,
359
+ comment: %(Source of the annotation.).freeze,
360
+ domain: "http://bibframe.org/vocab/Annotation".freeze,
361
+ label: "Annotation Source".freeze,
362
+ range: "http://bibframe.org/vocab/Agent".freeze,
363
+ type: "rdf:Property".freeze
364
+ property :ansi,
365
+ comment: %(American National Standards Institute identifier.).freeze,
366
+ domain: "http://bibframe.org/vocab/Instance".freeze,
367
+ label: "ANSI number".freeze,
368
+ range: "http://bibframe.org/vocab/Identifier".freeze,
369
+ subPropertyOf: "http://bibframe.org/vocab/identifier".freeze,
370
+ type: "rdf:Property".freeze
371
+ property :arrangement,
372
+ comment: %(Information about the organization and arrangement of a collection of resources.).freeze,
373
+ domain: "http://bibframe.org/vocab/Instance".freeze,
374
+ label: "Organization and Arrangement".freeze,
375
+ range: "http://bibframe.org/vocab/Arrangement".freeze,
376
+ type: "rdf:Property".freeze
377
+ property :aspectRatio,
378
+ comment: %(Proportional relationship between an image's width and its height.).freeze,
379
+ domain: "http://bibframe.org/vocab/Instance".freeze,
380
+ label: "Aspect ratio".freeze,
381
+ range: "rdfs:Literal".freeze,
382
+ type: "rdf:Property".freeze
383
+ property :assertionDate,
384
+ comment: %(Date when annotation was asserted.).freeze,
385
+ domain: "http://bibframe.org/vocab/Annotation".freeze,
386
+ label: "Annotation Assertion Date".freeze,
387
+ range: "rdfs:Literal".freeze,
388
+ type: "rdf:Property".freeze
389
+ property :audience,
390
+ comment: %(Information that identifies the specific audience or intellectual level for which the content of the resource is considered appropriate.).freeze,
391
+ domain: "http://bibframe.org/vocab/IntendedAudience".freeze,
392
+ label: "Audience".freeze,
393
+ range: "rdfs:Literal".freeze,
394
+ type: "rdf:Property".freeze
395
+ property :audienceAssigner,
396
+ comment: %(Entity that assigned the intended audience information.).freeze,
397
+ domain: "http://bibframe.org/vocab/IntendedAudience".freeze,
398
+ label: "Audience assigner".freeze,
399
+ range: "rdfs:Literal".freeze,
400
+ type: "rdf:Property".freeze
401
+ property :authorityAssigner,
402
+ comment: %(Entity that assigned the information.).freeze,
403
+ domain: "http://bibframe.org/vocab/Authority".freeze,
404
+ label: "Authority assigner".freeze,
405
+ range: "http://bibframe.org/vocab/Agent".freeze,
406
+ type: "rdf:Property".freeze
407
+ property :authoritySource,
408
+ comment: %(Authority list from which a value is taken.).freeze,
409
+ domain: "http://bibframe.org/vocab/Authority".freeze,
410
+ label: "Authority source".freeze,
411
+ range: "rdfs:Literal".freeze,
412
+ type: "rdf:Property".freeze
413
+ property :authorizedAccessPoint,
414
+ comment: %(Controlled string form of a resource label intended to help uniquely identify it, such as a unique title or a unique name plus title.).freeze,
415
+ domain: "http://bibframe.org/vocab/Resource".freeze,
416
+ label: "Authorized access point".freeze,
417
+ range: "rdfs:Literal".freeze,
418
+ type: "rdf:Property".freeze
419
+ property :awardNote,
420
+ comment: %(Information on awards associated with the described resource.).freeze,
421
+ domain: "http://bibframe.org/vocab/Instance".freeze,
422
+ label: "Award note".freeze,
423
+ range: "rdfs:Literal".freeze,
424
+ type: "rdf:Property".freeze
425
+ property :barcode,
426
+ comment: %(Identification number of the physical item.).freeze,
427
+ domain: "http://bibframe.org/vocab/HeldItem".freeze,
428
+ label: "Barcode".freeze,
429
+ range: "rdfs:Literal".freeze,
430
+ type: "rdf:Property".freeze
431
+ property :carrierCategory,
432
+ comment: %(Categorization reflecting the format of the storage medium and housing of a carrier.).freeze,
433
+ domain: "http://bibframe.org/vocab/Instance".freeze,
434
+ label: "Carrier type".freeze,
435
+ range: "http://bibframe.org/vocab/Category".freeze,
436
+ type: "rdf:Property".freeze
437
+ property :cartographicAscensionAndDeclination,
438
+ comment: %(System for identifying the location of a celestial object in the sky covered by the cartographic content of a resource using the angles of right ascension and declination.).freeze,
439
+ domain: "http://bibframe.org/vocab/Cartography".freeze,
440
+ label: "Cartographic ascension and declination".freeze,
441
+ range: "rdfs:Literal".freeze,
442
+ type: "rdf:Property".freeze
443
+ property :cartographicCoordinates,
444
+ comment: %(Mathematical system for identifying the area covered by the cartographic content of a resource, Expressed either by means of longitude and latitude on the surface of planets or by the angles of right ascension and declination for celestial cartographic content.).freeze,
445
+ domain: "http://bibframe.org/vocab/Cartography".freeze,
446
+ label: "Cartographic coordinates".freeze,
447
+ range: "rdfs:Literal".freeze,
448
+ type: "rdf:Property".freeze
449
+ property :cartographicEquinox,
450
+ comment: %(One of two points of intersection of the ecliptic and the celestial equator, occupied by the sun when its declination is 0 degrees.).freeze,
451
+ domain: "http://bibframe.org/vocab/Cartography".freeze,
452
+ label: "Cartographic equinox".freeze,
453
+ range: "rdfs:Literal".freeze,
454
+ type: "rdf:Property".freeze
455
+ property :cartographicExclusionGRing,
456
+ comment: %(Coordinate pairs that identify the closed non-intersecting boundary of the area contained within the G-polygon outer ring that is excluded.).freeze,
457
+ domain: "http://bibframe.org/vocab/Cartography".freeze,
458
+ label: "Cartographic G ring area excluded".freeze,
459
+ range: "rdfs:Literal".freeze,
460
+ type: "rdf:Property".freeze
461
+ property :cartographicOuterGRing,
462
+ comment: %(Coordinate pairs that identify the closed non-intersecting boundary of the area covered.).freeze,
463
+ domain: "http://bibframe.org/vocab/Cartography".freeze,
464
+ label: "Cartographic outer G ring area covered".freeze,
465
+ range: "rdfs:Literal".freeze,
466
+ type: "rdf:Property".freeze
467
+ property :cartographicProjection,
468
+ comment: %(Method or system used to represent the surface of the Earth or of a celestial sphere on a plane.).freeze,
469
+ domain: "http://bibframe.org/vocab/Cartography".freeze,
470
+ label: "Cartographic projection".freeze,
471
+ range: "rdfs:Literal".freeze,
472
+ type: "rdf:Property".freeze
473
+ property :cartographicScale,
474
+ comment: %(Ratio of the dimensions of a form contained or embodied in a resource to the dimensions of the entity it represents.).freeze,
475
+ domain: "http://bibframe.org/vocab/Cartography".freeze,
476
+ label: "Cartographic scale".freeze,
477
+ range: "rdfs:Literal".freeze,
478
+ type: "rdf:Property".freeze
479
+ property :cartography,
480
+ comment: %(Cartographic data that identifies scale, coordinates, etc.).freeze,
481
+ "dc:modified" => %(2014-03-27 \(Updated\)).freeze,
482
+ label: "Cartographic data".freeze,
483
+ range: "http://bibframe.org/vocab/Cartography".freeze,
484
+ type: "rdf:Property".freeze
485
+ property :categorySource,
486
+ comment: %(Category list from which value is taken.).freeze,
487
+ domain: "http://bibframe.org/vocab/Category".freeze,
488
+ label: "Category source".freeze,
489
+ range: "rdfs:Literal".freeze,
490
+ type: "rdf:Property".freeze
491
+ property :categoryType,
492
+ comment: %(Type of category recorded, e.g., content, genre, media, form, carrier.).freeze,
493
+ domain: "http://bibframe.org/vocab/Category".freeze,
494
+ label: "Type of category".freeze,
495
+ range: "rdfs:Literal".freeze,
496
+ type: "rdf:Property".freeze
497
+ property :categoryValue,
498
+ comment: %(Category code or text.).freeze,
499
+ domain: "http://bibframe.org/vocab/Category".freeze,
500
+ label: "Category".freeze,
501
+ range: "rdfs:Literal".freeze,
502
+ type: "rdf:Property".freeze
503
+ property :changeDate,
504
+ comment: %(Date or date and time on which the metadata was modified.).freeze,
505
+ label: "Description change date".freeze,
506
+ range: "rdfs:Literal".freeze,
507
+ type: "rdf:Property".freeze
508
+ property :circulationStatus,
509
+ comment: %(Circulation status of an item.).freeze,
510
+ domain: "http://bibframe.org/vocab/HeldItem".freeze,
511
+ label: "Circulation status".freeze,
512
+ range: "rdfs:Literal".freeze,
513
+ type: "rdf:Property".freeze
514
+ property :classification,
515
+ comment: %(Classification number in any scheme.).freeze,
516
+ domain: "http://bibframe.org/vocab/Work".freeze,
517
+ label: "Classification".freeze,
518
+ range: "http://bibframe.org/vocab/Classification".freeze,
519
+ type: "rdf:Property".freeze
520
+ property :classificationAssigner,
521
+ comment: %(Entity that assigned the classification number.).freeze,
522
+ domain: "http://bibframe.org/vocab/Classification".freeze,
523
+ label: "Institution assigning classification".freeze,
524
+ range: "rdfs:Literal".freeze,
525
+ type: "rdf:Property".freeze
526
+ property :classificationDdc,
527
+ comment: %(Dewey Decimal Classification number used for subject access.).freeze,
528
+ domain: "http://bibframe.org/vocab/Work".freeze,
529
+ label: "DDC Classification".freeze,
530
+ range: "http://bibframe.org/vocab/Classification".freeze,
531
+ subPropertyOf: "http://bibframe.org/vocab/classification".freeze,
532
+ type: "rdf:Property".freeze
533
+ property :classificationDesignation,
534
+ comment: %(Designates whether the classification number contained in the field is from the standard or optional part of the schedules or tables.).freeze,
535
+ domain: "http://bibframe.org/vocab/Classification".freeze,
536
+ label: "Classification designation".freeze,
537
+ range: "rdfs:Literal".freeze,
538
+ type: "rdf:Property".freeze
539
+ property :classificationEdition,
540
+ comment: %(Edition of the classification scheme, such as full, abridged or a number, when a classification scheme designates editions.).freeze,
541
+ "dc:modified" => %(2014-10-09 \(Updated\)).freeze,
542
+ domain: "http://bibframe.org/vocab/Classification".freeze,
543
+ label: "Classification scheme edition".freeze,
544
+ range: "rdfs:Literal".freeze,
545
+ type: "rdf:Property".freeze
546
+ property :classificationItem,
547
+ comment: %(Number attached to a classification number that indicates a particular item.).freeze,
548
+ domain: "http://bibframe.org/vocab/Classification".freeze,
549
+ label: "Classification item number".freeze,
550
+ range: "rdfs:Literal".freeze,
551
+ type: "rdf:Property".freeze
552
+ property :classificationLcc,
553
+ comment: %(Library of Congress Classification number used for subject access.).freeze,
554
+ domain: "http://bibframe.org/vocab/Work".freeze,
555
+ label: "LCC Classification".freeze,
556
+ range: "http://bibframe.org/vocab/Classification".freeze,
557
+ subPropertyOf: "http://bibframe.org/vocab/classification".freeze,
558
+ type: "rdf:Property".freeze
559
+ property :classificationNlm,
560
+ comment: %(National Library of Medicine Classification number used for subject access).freeze,
561
+ domain: "http://bibframe.org/vocab/Work".freeze,
562
+ label: "NLM classification".freeze,
563
+ range: "http://bibframe.org/vocab/Classification".freeze,
564
+ subPropertyOf: "http://bibframe.org/vocab/classification".freeze,
565
+ type: "rdf:Property".freeze
566
+ property :classificationNumber,
567
+ comment: %(Classification number \(single class number or beginning number of a span\) that indicates the subject by applying a formal system of coding and organizing resources.).freeze,
568
+ domain: "http://bibframe.org/vocab/Classification".freeze,
569
+ label: "Classification number".freeze,
570
+ range: "rdfs:Literal".freeze,
571
+ type: "rdf:Property".freeze
572
+ property :classificationNumberUri,
573
+ comment: %(Classification number represented as a URI.).freeze,
574
+ domain: "http://bibframe.org/vocab/Classification".freeze,
575
+ label: "Classification number URI".freeze,
576
+ range: "rdfs:Resource".freeze,
577
+ type: "rdf:Property".freeze
578
+ property :classificationScheme,
579
+ comment: %(Formal scheme from which a classification number is taken.).freeze,
580
+ domain: "http://bibframe.org/vocab/Classification".freeze,
581
+ label: "Classification scheme".freeze,
582
+ range: "rdfs:Literal".freeze,
583
+ type: "rdf:Property".freeze
584
+ property :classificationSpanEnd,
585
+ comment: %(Ending number of classification number span.).freeze,
586
+ domain: "http://bibframe.org/vocab/Classification".freeze,
587
+ label: "Classification number span end".freeze,
588
+ range: "rdfs:Literal".freeze,
589
+ type: "rdf:Property".freeze
590
+ property :classificationStatus,
591
+ comment: %(Indicator that the classification number is canceled or invalid.).freeze,
592
+ domain: "http://bibframe.org/vocab/Classification".freeze,
593
+ label: "Classification status".freeze,
594
+ range: "rdfs:Literal".freeze,
595
+ type: "rdf:Property".freeze
596
+ property :classificationTable,
597
+ comment: %(DDC Table identification. Number of the table from which the classification number in a subdivision record is taken.).freeze,
598
+ domain: "http://bibframe.org/vocab/Classification".freeze,
599
+ label: "Classification table identification".freeze,
600
+ range: "rdfs:Literal".freeze,
601
+ type: "rdf:Property".freeze
602
+ property :classificationTableSeq,
603
+ comment: %(Sequence number or other identifier for an internal classification subarrangement or add in a classification scheme.).freeze,
604
+ domain: "http://bibframe.org/vocab/Classification".freeze,
605
+ label: "Classification table sequence number".freeze,
606
+ range: "rdfs:Literal".freeze,
607
+ type: "rdf:Property".freeze
608
+ property :classificationUdc,
609
+ comment: %(Universal Decimal Classification number used for subject access.).freeze,
610
+ domain: "http://bibframe.org/vocab/Work".freeze,
611
+ label: "UDC Classification".freeze,
612
+ range: "http://bibframe.org/vocab/Classification".freeze,
613
+ subPropertyOf: "http://bibframe.org/vocab/classification".freeze,
614
+ type: "rdf:Property".freeze
615
+ property :coden,
616
+ comment: %(Identifier for scientific and technical periodical titles assigned by the International CODEN Section of Chemical Abstracts Service.).freeze,
617
+ domain: "http://bibframe.org/vocab/Instance".freeze,
618
+ label: "CODEN".freeze,
619
+ range: "http://bibframe.org/vocab/Identifier".freeze,
620
+ subPropertyOf: "http://bibframe.org/vocab/identifier".freeze,
621
+ type: "rdf:Property".freeze
622
+ property :colorContent,
623
+ comment: %(Color characteristics, e.g. black and white, multicolored, etc.).freeze,
624
+ "dc:modified" => %(2014-10-14 \(Updated\)).freeze,
625
+ domain: "http://bibframe.org/vocab/Instance".freeze,
626
+ label: "Color content".freeze,
627
+ range: "rdfs:Literal".freeze,
628
+ type: "rdf:Property".freeze
629
+ property :componentOf,
630
+ comment: %(Link to held material).freeze,
631
+ domain: "http://bibframe.org/vocab/HeldItem".freeze,
632
+ label: "Held item".freeze,
633
+ range: "http://bibframe.org/vocab/HeldMaterial".freeze,
634
+ type: "rdf:Property".freeze
635
+ property :contentAccessibility,
636
+ comment: %(Content that assists those with a sensory impairment for greater understanding of content, e.g., labels, captions.).freeze,
637
+ domain: "http://bibframe.org/vocab/Instance".freeze,
638
+ label: "Content accessibility note".freeze,
639
+ range: "rdfs:Literal".freeze,
640
+ type: "rdf:Property".freeze
641
+ property :contentCategory,
642
+ comment: %(Categorization reflecting the fundamental form of communication in which the content is expressed and the human sense through which it is intended to be perceived.).freeze,
643
+ domain: "http://bibframe.org/vocab/Work".freeze,
644
+ label: "Content type".freeze,
645
+ range: "http://bibframe.org/vocab/Category".freeze,
646
+ type: "rdf:Property".freeze
647
+ property :contentsNote,
648
+ comment: %(List of subunits of the resource.).freeze,
649
+ domain: "http://bibframe.org/vocab/Instance".freeze,
650
+ label: "Contents".freeze,
651
+ range: "rdfs:Literal".freeze,
652
+ type: "rdf:Property".freeze
653
+ property :continuedBy,
654
+ comment: %(Work whose content continues an earlier work under a new title.).freeze,
655
+ "dc:modified" => %(2014-04-10 \(Updated subproperty\)).freeze,
656
+ domain: "http://bibframe.org/vocab/Work".freeze,
657
+ label: "Continued by".freeze,
658
+ range: "http://bibframe.org/vocab/Work".freeze,
659
+ subPropertyOf: "http://bibframe.org/vocab/succeededBy".freeze,
660
+ type: "rdf:Property".freeze
661
+ property :continuedInPartBy,
662
+ comment: %(Work part of whose content separated from an earlier work to form a new work.).freeze,
663
+ "dc:modified" => %(2014-04-10 \(Updated subproperty\)).freeze,
664
+ domain: "http://bibframe.org/vocab/Work".freeze,
665
+ label: "Continued in part by".freeze,
666
+ range: "http://bibframe.org/vocab/Work".freeze,
667
+ subPropertyOf: "http://bibframe.org/vocab/succeededBy".freeze,
668
+ type: "rdf:Property".freeze
669
+ property :continues,
670
+ comment: %(Work that is continued by the content of a later work under a new title.).freeze,
671
+ "dc:modified" => %(2014-04-10 \(Updated subproperty\)).freeze,
672
+ domain: "http://bibframe.org/vocab/Work".freeze,
673
+ label: "Continues".freeze,
674
+ range: "http://bibframe.org/vocab/Work".freeze,
675
+ subPropertyOf: "http://bibframe.org/vocab/precededBy".freeze,
676
+ type: "rdf:Property".freeze
677
+ property :continuesInPart,
678
+ comment: %(Work that split into two or more separate works with new titles.).freeze,
679
+ "dc:modified" => %(2014-04-10 \(Updated subproperty\)).freeze,
680
+ domain: "http://bibframe.org/vocab/Work".freeze,
681
+ label: "Continues in part".freeze,
682
+ range: "http://bibframe.org/vocab/Work".freeze,
683
+ subPropertyOf: "http://bibframe.org/vocab/precededBy".freeze,
684
+ type: "rdf:Property".freeze
685
+ property :contributor,
686
+ comment: %(Generalized expressive responsibility role.).freeze,
687
+ label: "Contributor role".freeze,
688
+ range: "http://bibframe.org/vocab/Authority".freeze,
689
+ type: "rdf:Property".freeze
690
+ property :copyNote,
691
+ comment: %(Information about this copy.).freeze,
692
+ domain: "http://bibframe.org/vocab/HeldItem".freeze,
693
+ label: "Copy note".freeze,
694
+ range: "rdfs:Literal".freeze,
695
+ type: "rdf:Property".freeze
696
+ property :copyrightDate,
697
+ comment: %(Date associated with a claim of protection under copyright or a similar regime.).freeze,
698
+ domain: "http://bibframe.org/vocab/Provider".freeze,
699
+ label: "Copyright date".freeze,
700
+ range: "rdfs:Literal".freeze,
701
+ type: "rdf:Property".freeze
702
+ property :coverArt,
703
+ comment: %(Cover art image.).freeze,
704
+ domain: "http://bibframe.org/vocab/CoverArt".freeze,
705
+ label: "Cover art".freeze,
706
+ range: "rdfs:Resource".freeze,
707
+ subPropertyOf: "http://bibframe.org/vocab/annotationBody".freeze,
708
+ type: "rdf:Property".freeze
709
+ property :coverArtFor,
710
+ comment: %(Resource to which the cover art pertains.).freeze,
711
+ domain: "http://bibframe.org/vocab/CoverArt".freeze,
712
+ label: "Cover art of instance".freeze,
713
+ range: "http://bibframe.org/vocab/Instance".freeze,
714
+ subPropertyOf: "http://bibframe.org/vocab/annotates".freeze,
715
+ type: "rdf:Property".freeze
716
+ property :coverArtThumb,
717
+ comment: %(Thumbnail version of cover art image.).freeze,
718
+ domain: "http://bibframe.org/vocab/CoverArt".freeze,
719
+ label: "Thumbnail of cover art".freeze,
720
+ range: "rdfs:Resource".freeze,
721
+ subPropertyOf: "http://bibframe.org/vocab/annotationBody".freeze,
722
+ type: "rdf:Property".freeze
723
+ property :creationDate,
724
+ comment: %(Date or date and time on which the original metadata first created.).freeze,
725
+ label: "Description creation date".freeze,
726
+ range: "rdfs:Literal".freeze,
727
+ type: "rdf:Property".freeze
728
+ property :creator,
729
+ comment: %(Generalized creative responsibility role.).freeze,
730
+ label: "Creator role".freeze,
731
+ range: "http://bibframe.org/vocab/Authority".freeze,
732
+ type: "rdf:Property".freeze
733
+ property :creditsNote,
734
+ comment: %(Credits for persons or organizations, other than members of the cast, who have participated in the creation and/or production of the.).freeze,
735
+ label: "Credits note".freeze,
736
+ range: "rdfs:Literal".freeze,
737
+ type: "rdf:Property".freeze
738
+ property :custodialHistory,
739
+ comment: %(Information about the provenance, such as origin, ownership and custodial history \(chain of custody\), of a resource.).freeze,
740
+ domain: "http://bibframe.org/vocab/Instance".freeze,
741
+ label: "Custodial history".freeze,
742
+ range: "rdfs:Literal".freeze,
743
+ type: "rdf:Property".freeze
744
+ property :dataSource,
745
+ comment: %(Work that is a data source to which the described resource is related. It may contain information about other files, printed sources, or collection procedures.).freeze,
746
+ domain: "http://bibframe.org/vocab/Work".freeze,
747
+ label: "Has data source".freeze,
748
+ range: "http://bibframe.org/vocab/Work".freeze,
749
+ subPropertyOf: "http://bibframe.org/vocab/relatedTo".freeze,
750
+ type: "rdf:Property".freeze
751
+ property :derivativeOf,
752
+ comment: %(Work is a modification of a source work.).freeze,
753
+ "dc:modified" => %(2014-04-30 \(New\)).freeze,
754
+ label: "Is derivative of".freeze,
755
+ subPropertyOf: "http://bibframe.org/vocab/relatedTo".freeze,
756
+ type: "rdf:Property".freeze
757
+ property :derivedFrom,
758
+ comment: %(Link to the record that was the source of the data, when applicable.).freeze,
759
+ label: "Source record".freeze,
760
+ range: "rdfs:Resource".freeze,
761
+ type: "rdf:Property".freeze
762
+ property :descriptionAuthentication,
763
+ comment: %(Indication of specific types of reviews of description information.).freeze,
764
+ "dc:modified" => %(2014-10-27 \(Updated\)).freeze,
765
+ label: "Description authentication".freeze,
766
+ range: "rdfs:Literal".freeze,
767
+ type: "rdf:Property".freeze
768
+ property :descriptionConventions,
769
+ comment: %(Rules used for the descriptive content of the description.).freeze,
770
+ "dc:modified" => %(2014-05-13 \(updated\)).freeze,
771
+ label: "Description conventions".freeze,
772
+ range: "rdfs:Resource".freeze,
773
+ type: "rdf:Property".freeze
774
+ property :descriptionLanguage,
775
+ comment: %(Language used for the metadata.).freeze,
776
+ label: "Description language".freeze,
777
+ range: "rdfs:Resource".freeze,
778
+ type: "rdf:Property".freeze
779
+ property :descriptionModifier,
780
+ comment: %(Agency that modified a description.).freeze,
781
+ "dc:modified" => %(2014-10-27 \(Updated\)).freeze,
782
+ label: "Description modifier".freeze,
783
+ range: "rdfs:Resource".freeze,
784
+ type: "rdf:Property".freeze
785
+ property :descriptionOf,
786
+ comment: %(Related resource that is analyzed, commented upon, critiqued, evaluated, reviewed, or otherwise described by the resource.).freeze,
787
+ "dc:modified" => %(2014-04-30 \(New\)).freeze,
788
+ label: "Is description of".freeze,
789
+ subPropertyOf: "http://bibframe.org/vocab/relatedTo".freeze,
790
+ type: "rdf:Property".freeze
791
+ property :descriptionSource,
792
+ comment: %(Entity that created or modified the metadata.).freeze,
793
+ label: "Description source".freeze,
794
+ range: "rdfs:Resource".freeze,
795
+ type: "rdf:Property".freeze
796
+ property :descriptionStatus,
797
+ comment: %(Indicaton of whether the description is new or revised or in other states.).freeze,
798
+ "dc:modified" => %(2014-10-27 \(Updated\)).freeze,
799
+ label: "Description status".freeze,
800
+ range: "rdfs:Literal".freeze,
801
+ type: "rdf:Property".freeze
802
+ property :dimensions,
803
+ comment: %(Measurements of the carrier or carriers and/or the container of a resource.).freeze,
804
+ domain: "http://bibframe.org/vocab/Instance".freeze,
805
+ label: "Dimensions".freeze,
806
+ range: "rdfs:Literal".freeze,
807
+ type: "rdf:Property".freeze
808
+ property :dissertationDegree,
809
+ comment: %(Degree for which author was a candidate.).freeze,
810
+ domain: "http://bibframe.org/vocab/Work".freeze,
811
+ label: "Degree".freeze,
812
+ range: "rdfs:Literal".freeze,
813
+ type: "rdf:Property".freeze
814
+ property :dissertationIdentifier,
815
+ comment: %(Identifier assigned to a dissertation for identification purposes .).freeze,
816
+ domain: "http://bibframe.org/vocab/Work".freeze,
817
+ label: "Dissertation identifier".freeze,
818
+ range: "http://bibframe.org/vocab/Identifier".freeze,
819
+ subPropertyOf: "http://bibframe.org/vocab/identifier".freeze,
820
+ type: "rdf:Property".freeze
821
+ property :dissertationInstitution,
822
+ comment: %(Name of degree granting institution.).freeze,
823
+ domain: "http://bibframe.org/vocab/Work".freeze,
824
+ label: "Degree issuing institution".freeze,
825
+ range: "http://bibframe.org/vocab/Agent".freeze,
826
+ type: "rdf:Property".freeze
827
+ property :dissertationNote,
828
+ comment: %(Textual information about the dissertation.).freeze,
829
+ domain: "http://bibframe.org/vocab/Work".freeze,
830
+ label: "Dissertation note".freeze,
831
+ range: "rdfs:Literal".freeze,
832
+ type: "rdf:Property".freeze
833
+ property :dissertationYear,
834
+ comment: %(Year degree awarded.).freeze,
835
+ domain: "http://bibframe.org/vocab/Work".freeze,
836
+ label: "Year degree awarded".freeze,
837
+ range: "rdfs:Literal".freeze,
838
+ type: "rdf:Property".freeze
839
+ property :distribution,
840
+ comment: %(Information relating to distribution of an instance.).freeze,
841
+ domain: "http://bibframe.org/vocab/Instance".freeze,
842
+ label: "Distribution event".freeze,
843
+ range: "http://bibframe.org/vocab/Provider".freeze,
844
+ subPropertyOf: "http://bibframe.org/vocab/provider".freeze,
845
+ type: "rdf:Property".freeze
846
+ property :doi,
847
+ comment: %(Digital Object Identifier.).freeze,
848
+ domain: "http://bibframe.org/vocab/Instance".freeze,
849
+ label: "DOI".freeze,
850
+ range: "http://bibframe.org/vocab/Identifier".freeze,
851
+ subPropertyOf: "http://bibframe.org/vocab/identifier".freeze,
852
+ type: "rdf:Property".freeze
853
+ property :duration,
854
+ comment: %(Information about the playing time or duration in an unstructured form, e.g., "2 hours".).freeze,
855
+ domain: "http://bibframe.org/vocab/Instance".freeze,
856
+ label: "Duration".freeze,
857
+ range: "rdfs:Literal".freeze,
858
+ type: "rdf:Property".freeze
859
+ property :ean,
860
+ comment: %(International Article Identifier.).freeze,
861
+ domain: "http://bibframe.org/vocab/Instance".freeze,
862
+ label: "EAN".freeze,
863
+ range: "http://bibframe.org/vocab/Identifier".freeze,
864
+ subPropertyOf: "http://bibframe.org/vocab/identifier".freeze,
865
+ type: "rdf:Property".freeze
866
+ property :edition,
867
+ comment: %(Information identifying the edition or version of the resource.).freeze,
868
+ domain: "http://bibframe.org/vocab/Instance".freeze,
869
+ label: "Edition statement".freeze,
870
+ range: "rdfs:Literal".freeze,
871
+ type: "rdf:Property".freeze
872
+ property :editionResponsibility,
873
+ comment: %(Statement relating to the identification of any persons, families, or corporate bodies responsible for the edition being described.).freeze,
874
+ domain: "http://bibframe.org/vocab/Instance".freeze,
875
+ label: "Edition responsibility".freeze,
876
+ range: "rdfs:Literal".freeze,
877
+ type: "rdf:Property".freeze
878
+ property :electronicLocator,
879
+ comment: %(Electronic location from which the resource is available.).freeze,
880
+ "dc:modified" => %(2014-04-28 \(New\)).freeze,
881
+ domain: "http://bibframe.org/vocab/HeldMaterial".freeze,
882
+ label: "Electronic location".freeze,
883
+ range: "rdfs:Resource".freeze,
884
+ type: "rdf:Property".freeze
885
+ property :enumerationAndChronology,
886
+ comment: %(Numbering and dates of holding.).freeze,
887
+ domain: "http://bibframe.org/vocab/HeldMaterial".freeze,
888
+ label: "Enumeration and chronology".freeze,
889
+ range: "rdfs:Literal".freeze,
890
+ type: "rdf:Property".freeze
891
+ property :event,
892
+ comment: %(Information about the geographic area/or time period covered by an event \(e.g., a report\).).freeze,
893
+ "dc:modified" => %(2014-05-16 \(Updated\)).freeze,
894
+ domain: "http://bibframe.org/vocab/Work".freeze,
895
+ label: "Event associated with content".freeze,
896
+ range: "http://bibframe.org/vocab/Event".freeze,
897
+ type: "rdf:Property".freeze
898
+ property :eventAgent,
899
+ comment: %(Person or organization associated with event.).freeze,
900
+ "dc:modified" => %(2014-05-16 \(Updated\)).freeze,
901
+ domain: "http://bibframe.org/vocab/Event".freeze,
902
+ label: "Agent for event".freeze,
903
+ range: "http://bibframe.org/vocab/Agent".freeze,
904
+ type: "rdf:Property".freeze
905
+ property :eventDate,
906
+ comment: %(Date, time or period of event.).freeze,
907
+ "dc:modified" => %(2014-05-16 \(Updated\)).freeze,
908
+ domain: "http://bibframe.org/vocab/Event".freeze,
909
+ label: "Date(s) of event".freeze,
910
+ range: "rdfs:Literal".freeze,
911
+ type: "rdf:Property".freeze
912
+ property :eventPlace,
913
+ comment: %(Geographic area associated with event.).freeze,
914
+ domain: "http://bibframe.org/vocab/Event".freeze,
915
+ label: "Place of event".freeze,
916
+ range: "http://bibframe.org/vocab/Place".freeze,
917
+ type: "rdf:Property".freeze
918
+ property :expressionOf,
919
+ comment: %(Expression has a related work. For use to connect Works under FRBR/RDA rules.).freeze,
920
+ "dc:modified" => %(2014-04-10 \(Updated subproperty\)).freeze,
921
+ domain: "http://bibframe.org/vocab/Work".freeze,
922
+ label: "Expression of".freeze,
923
+ range: "http://bibframe.org/vocab/Work".freeze,
924
+ subPropertyOf: "http://bibframe.org/vocab/relatedTo".freeze,
925
+ type: "rdf:Property".freeze
926
+ property :extent,
927
+ comment: %(Number and type of units and/or subunits making up a resource.).freeze,
928
+ domain: "http://bibframe.org/vocab/Instance".freeze,
929
+ label: "Extent".freeze,
930
+ range: "rdfs:Literal".freeze,
931
+ type: "rdf:Property".freeze
932
+ property :findingAid,
933
+ comment: %(Relationship is to a finding aid or similar control materials for archival, visual, and manuscript resources.).freeze,
934
+ domain: "http://bibframe.org/vocab/Work".freeze,
935
+ label: "Has finding aid".freeze,
936
+ range: "http://bibframe.org/vocab/Work".freeze,
937
+ subPropertyOf: "http://bibframe.org/vocab/accompaniedBy".freeze,
938
+ type: "rdf:Property".freeze
939
+ property :findingAidNote,
940
+ comment: %(Note about availability of an index or finding aid.).freeze,
941
+ label: "Index or finding aid note".freeze,
942
+ range: "rdfs:Literal".freeze,
943
+ type: "rdf:Property".freeze
944
+ property :fingerprint,
945
+ comment: %(Identifier that is used to assist in the identification of antiquarian books by recording information comprising groups of characters taken from specified positions on specified pages of the book.).freeze,
946
+ domain: "http://bibframe.org/vocab/Instance".freeze,
947
+ label: "Fingerprint identifier".freeze,
948
+ range: "http://bibframe.org/vocab/Identifier".freeze,
949
+ subPropertyOf: "http://bibframe.org/vocab/identifier".freeze,
950
+ type: "rdf:Property".freeze
951
+ property :formDesignation,
952
+ comment: %(Class or genre to which a Work or Instance belongs.).freeze,
953
+ "dc:modified" => %(2014-03-21 \(Range updated\)).freeze,
954
+ domain: "http://bibframe.org/vocab/Title".freeze,
955
+ label: "Form designation".freeze,
956
+ range: "rdfs:Literal".freeze,
957
+ type: "rdf:Property".freeze
958
+ property :format,
959
+ comment: %(File format or physical medium of an instance.).freeze,
960
+ "dc:modified" => %(2014-10-27 \(Updated\)).freeze,
961
+ domain: "http://bibframe.org/vocab/Instance".freeze,
962
+ label: "Format".freeze,
963
+ range: "rdfs:Literal".freeze,
964
+ type: "rdf:Property".freeze
965
+ property :formatOfMusic,
966
+ comment: %(Format of a musical composition, e.g. full score, condensed score, vocal score, etc.).freeze,
967
+ domain: "http://bibframe.org/vocab/Instance".freeze,
968
+ label: "Format of music".freeze,
969
+ range: "rdfs:Literal".freeze,
970
+ type: "rdf:Property".freeze
971
+ property :frequency,
972
+ comment: %(Intervals at which the issues or parts of a serial or the updates to an integrating resource are issued.).freeze,
973
+ domain: "http://bibframe.org/vocab/Instance".freeze,
974
+ label: "Frequency".freeze,
975
+ range: "rdfs:Literal".freeze,
976
+ type: "rdf:Property".freeze
977
+ property :frequencyNote,
978
+ comment: %(Current or former publication frequency of a resource.).freeze,
979
+ domain: "http://bibframe.org/vocab/Instance".freeze,
980
+ label: "Frequency note".freeze,
981
+ range: "rdfs:Literal".freeze,
982
+ type: "rdf:Property".freeze
983
+ property :generationDate,
984
+ comment: %(Date of conversion of the data from another format.).freeze,
985
+ "dc:modified" => %(2014-10-27 \(Updated\)).freeze,
986
+ label: "Date generated".freeze,
987
+ range: "rdfs:Literal".freeze,
988
+ type: "rdf:Property".freeze
989
+ property :generationProcess,
990
+ comment: %(Indication of the program or process used to generate the description by application of a particular transformation.).freeze,
991
+ "dc:modified" => %(2014-10-27 \(Updated\)).freeze,
992
+ label: "Description generation".freeze,
993
+ range: "rdfs:Literal".freeze,
994
+ type: "rdf:Property".freeze
995
+ property :genre,
996
+ comment: %(Genre and other general characteristics associated with genre and form.).freeze,
997
+ "dc:modified" => %(2014-03-21 \(New\)).freeze,
998
+ label: "Genre".freeze,
999
+ range: "http://bibframe.org/vocab/Category".freeze,
1000
+ type: "rdf:Property".freeze
1001
+ property :geographicCoverageNote,
1002
+ comment: %(Geographic entities covered by the resource.).freeze,
1003
+ domain: "http://bibframe.org/vocab/Work".freeze,
1004
+ label: "Geographic coverage".freeze,
1005
+ range: "rdfs:Literal".freeze,
1006
+ type: "rdf:Property".freeze
1007
+ property :graphicScaleNote,
1008
+ comment: %(Textual information about scale, including the scale of graphic material item such as architectural drawings or three-dimensional artifacts.).freeze,
1009
+ domain: "http://bibframe.org/vocab/Instance".freeze,
1010
+ label: "Graphic scale".freeze,
1011
+ range: "rdfs:Literal".freeze,
1012
+ type: "rdf:Property".freeze
1013
+ property :hasAnnotation,
1014
+ comment: %(Resource has an annotation.).freeze,
1015
+ label: "Has annotation".freeze,
1016
+ range: "http://bibframe.org/vocab/Annotation".freeze,
1017
+ type: "rdf:Property".freeze
1018
+ property :hasAuthority,
1019
+ comment: %(Link to controlled form of name or subject and other information about.).freeze,
1020
+ "dc:modified" => %(2014-04-10 \(Updated range\)).freeze,
1021
+ domain: "http://bibframe.org/vocab/Authority".freeze,
1022
+ label: "Authority information".freeze,
1023
+ range: "http://bibframe.org/vocab/Resource".freeze,
1024
+ type: "rdf:Property".freeze
1025
+ property :hasDerivative,
1026
+ comment: %(Work has a modification for which it is the source.).freeze,
1027
+ "dc:modified" => %(2014-04-10 \(Range updated\)).freeze,
1028
+ label: "Has derivative".freeze,
1029
+ subPropertyOf: "http://bibframe.org/vocab/relatedTo".freeze,
1030
+ type: "rdf:Property".freeze
1031
+ property :hasDescription,
1032
+ comment: %(Related resource that analyzes, comments on, critiques, evaluates, reviews, or otherwise describes the resource.).freeze,
1033
+ "dc:modified" => %(2014-04-10 \(Range updated\)).freeze,
1034
+ label: "Has description".freeze,
1035
+ subPropertyOf: "http://bibframe.org/vocab/relatedTo".freeze,
1036
+ type: "rdf:Property".freeze
1037
+ property :hasEquivalent,
1038
+ comment: %(Instance embodies the same expression of a work as the resource being described.).freeze,
1039
+ "dc:modified" => %(2014-04-10 \(Range updated\)).freeze,
1040
+ label: "Equivalence".freeze,
1041
+ subPropertyOf: "http://bibframe.org/vocab/relatedTo".freeze,
1042
+ type: "rdf:Property".freeze
1043
+ property :hasExpression,
1044
+ comment: %(Work has a related expression. For use to connect Works under FRBR/RDA rules.).freeze,
1045
+ "dc:modified" => %(2014-04-10 \(Updated subproperty\)).freeze,
1046
+ domain: "http://bibframe.org/vocab/Work".freeze,
1047
+ label: "Expressed as".freeze,
1048
+ range: "http://bibframe.org/vocab/Work".freeze,
1049
+ subPropertyOf: "http://bibframe.org/vocab/relatedTo".freeze,
1050
+ type: "rdf:Property".freeze
1051
+ property :hasInstance,
1052
+ comment: %(Work has a related Instance/manifestation. For use to connect Works to Instances in the BIBFRAME structure.).freeze,
1053
+ "dc:modified" => %(2014--03-21 \(Updated definition\)).freeze,
1054
+ domain: "http://bibframe.org/vocab/Work".freeze,
1055
+ label: "Instance of Work".freeze,
1056
+ range: "http://bibframe.org/vocab/Instance".freeze,
1057
+ subPropertyOf: "http://bibframe.org/vocab/relatedTo".freeze,
1058
+ type: "rdf:Property".freeze
1059
+ property :hasPart,
1060
+ comment: %(Resource that is included either physically or logically contained in the described resource).freeze,
1061
+ "dc:modified" => %(2014-04-10 \(Range updated\)).freeze,
1062
+ label: "Has part".freeze,
1063
+ subPropertyOf: "http://bibframe.org/vocab/relatedTo".freeze,
1064
+ type: "rdf:Property".freeze
1065
+ property :hdl,
1066
+ comment: %(Unique and persistent identifier for digital objects developed by the Corporation for National Research Initiatives.).freeze,
1067
+ domain: "http://bibframe.org/vocab/Instance".freeze,
1068
+ label: "Handle".freeze,
1069
+ range: "http://bibframe.org/vocab/Identifier".freeze,
1070
+ subPropertyOf: "http://bibframe.org/vocab/identifier".freeze,
1071
+ type: "rdf:Property".freeze
1072
+ property :heldBy,
1073
+ comment: %(Entity holding the item or from which it is available).freeze,
1074
+ domain: "http://bibframe.org/vocab/HeldMaterial".freeze,
1075
+ label: "Held by".freeze,
1076
+ range: "http://bibframe.org/vocab/Agent".freeze,
1077
+ type: "rdf:Property".freeze
1078
+ property :holdingFor,
1079
+ comment: %(Instance for which holding is reported).freeze,
1080
+ domain: "http://bibframe.org/vocab/HeldMaterial".freeze,
1081
+ label: "Holding for".freeze,
1082
+ range: "http://bibframe.org/vocab/Instance".freeze,
1083
+ subPropertyOf: "http://bibframe.org/vocab/annotates".freeze,
1084
+ type: "rdf:Property".freeze
1085
+ property :identifier,
1086
+ comment: %(Number or code that uniquely identifies an entity.).freeze,
1087
+ domain: "http://bibframe.org/vocab/Resource".freeze,
1088
+ label: "Identifier".freeze,
1089
+ range: "http://bibframe.org/vocab/Identifier".freeze,
1090
+ type: "rdf:Property".freeze
1091
+ property :identifierAssigner,
1092
+ comment: %(Entity that assigned the identifier.).freeze,
1093
+ domain: "http://bibframe.org/vocab/Identifier".freeze,
1094
+ label: "Identifier assigner".freeze,
1095
+ range: "rdfs:Literal".freeze,
1096
+ type: "rdf:Property".freeze
1097
+ property :identifierQualifier,
1098
+ comment: %(Qualifying information associated with the identifier, e.g. specifying its applicability.).freeze,
1099
+ domain: "http://bibframe.org/vocab/Identifier".freeze,
1100
+ label: "Identifier qualifier".freeze,
1101
+ range: "rdfs:Literal".freeze,
1102
+ type: "rdf:Property".freeze
1103
+ property :identifierScheme,
1104
+ comment: %(Scheme within which the identifier is unique.).freeze,
1105
+ "dc:modified" => [%(2014-06-04 \(Updated mapping\)).freeze, %('2014-06-04 \(Updated range\)).freeze],
1106
+ domain: "http://bibframe.org/vocab/Identifier".freeze,
1107
+ label: "Identifier scheme".freeze,
1108
+ range: "rdfs:Resource".freeze,
1109
+ type: "rdf:Property".freeze
1110
+ property :identifierStatus,
1111
+ comment: %(Indication of whether the identifier is canceled or invalid.).freeze,
1112
+ domain: "http://bibframe.org/vocab/Identifier".freeze,
1113
+ label: "Identifier status".freeze,
1114
+ range: "rdfs:Literal".freeze,
1115
+ type: "rdf:Property".freeze
1116
+ property :identifierValue,
1117
+ comment: %(Value of the identifier.).freeze,
1118
+ domain: "http://bibframe.org/vocab/Identifier".freeze,
1119
+ label: "Identifier value".freeze,
1120
+ range: "rdfs:Literal".freeze,
1121
+ type: "rdf:Property".freeze
1122
+ property :illustrationNote,
1123
+ comment: %(Information about illustrative material in the resource.).freeze,
1124
+ domain: "http://bibframe.org/vocab/Instance".freeze,
1125
+ label: "Illustrative content note".freeze,
1126
+ range: "rdfs:Literal".freeze,
1127
+ type: "rdf:Property".freeze
1128
+ property :immediateAcquisition,
1129
+ comment: %(Information about the circumstances \(e.g., source, date, method\) under which the resource was directly acquired.).freeze,
1130
+ label: "Immediate acquisition".freeze,
1131
+ range: "rdfs:Literal".freeze,
1132
+ type: "rdf:Property".freeze
1133
+ property :index,
1134
+ comment: %(Work has an accompanying index).freeze,
1135
+ domain: "http://bibframe.org/vocab/Work".freeze,
1136
+ label: "Index".freeze,
1137
+ range: "http://bibframe.org/vocab/Work".freeze,
1138
+ subPropertyOf: "http://bibframe.org/vocab/accompaniedBy".freeze,
1139
+ type: "rdf:Property".freeze
1140
+ property :instanceOf,
1141
+ comment: %(Work this resource instantiates or manifests. For use to connect Instances to Works in the BIBFRAME structure.).freeze,
1142
+ "dc:modified" => %(2014--03-21 \(Updated definition\)).freeze,
1143
+ domain: "http://bibframe.org/vocab/Instance".freeze,
1144
+ label: "Instance of".freeze,
1145
+ range: "http://bibframe.org/vocab/Work".freeze,
1146
+ subPropertyOf: "http://bibframe.org/vocab/relatedTo".freeze,
1147
+ type: "rdf:Property".freeze
1148
+ property :instanceTitle,
1149
+ comment: %(Word, character, or group of words and/or characters that is the main name of an instance.).freeze,
1150
+ domain: "http://bibframe.org/vocab/Instance".freeze,
1151
+ label: "Instance title".freeze,
1152
+ range: "http://bibframe.org/vocab/Title".freeze,
1153
+ type: "rdf:Property".freeze
1154
+ property :intendedAudience,
1155
+ comment: %(Information that identifies the specific audience or intellectual level for which the content of the resource is considered appropriate.).freeze,
1156
+ label: "Intended audience".freeze,
1157
+ range: "http://bibframe.org/vocab/IntendedAudience".freeze,
1158
+ type: "rdf:Property".freeze
1159
+ property :isan,
1160
+ comment: %(International Standard Audiovisual Number.).freeze,
1161
+ domain: "http://bibframe.org/vocab/Work".freeze,
1162
+ label: "ISAN".freeze,
1163
+ range: "http://bibframe.org/vocab/Identifier".freeze,
1164
+ subPropertyOf: "http://bibframe.org/vocab/identifier".freeze,
1165
+ type: "rdf:Property".freeze
1166
+ property :isbn,
1167
+ comment: %(International Standard Book Number.).freeze,
1168
+ domain: "http://bibframe.org/vocab/Instance".freeze,
1169
+ label: "ISBN".freeze,
1170
+ range: "http://bibframe.org/vocab/Identifier".freeze,
1171
+ subPropertyOf: "http://bibframe.org/vocab/identifier".freeze,
1172
+ type: "rdf:Property".freeze
1173
+ property :isbn10,
1174
+ comment: %(10 digit version of the International Standard Book Number.).freeze,
1175
+ domain: "http://bibframe.org/vocab/Instance".freeze,
1176
+ label: "ISBN-10".freeze,
1177
+ range: "http://bibframe.org/vocab/Identifier".freeze,
1178
+ subPropertyOf: "http://bibframe.org/vocab/isbn".freeze,
1179
+ type: "rdf:Property".freeze
1180
+ property :isbn13,
1181
+ comment: %(13 digit version of the International Standard Book Number.).freeze,
1182
+ domain: "http://bibframe.org/vocab/Instance".freeze,
1183
+ label: "ISBN-13".freeze,
1184
+ range: "http://bibframe.org/vocab/Identifier".freeze,
1185
+ subPropertyOf: "http://bibframe.org/vocab/isbn".freeze,
1186
+ type: "rdf:Property".freeze
1187
+ property :ismn,
1188
+ comment: %(International Standard Music Number.).freeze,
1189
+ domain: "http://bibframe.org/vocab/Instance".freeze,
1190
+ label: "ISMN".freeze,
1191
+ range: "http://bibframe.org/vocab/Identifier".freeze,
1192
+ subPropertyOf: "http://bibframe.org/vocab/identifier".freeze,
1193
+ type: "rdf:Property".freeze
1194
+ property :iso,
1195
+ comment: %(International Organization for Standardization standard number.).freeze,
1196
+ domain: "http://bibframe.org/vocab/Instance".freeze,
1197
+ label: "ISO number".freeze,
1198
+ range: "http://bibframe.org/vocab/Identifier".freeze,
1199
+ subPropertyOf: "http://bibframe.org/vocab/identifier".freeze,
1200
+ type: "rdf:Property".freeze
1201
+ property :issn,
1202
+ comment: %(International Standard Serial Number identifier.).freeze,
1203
+ domain: "http://bibframe.org/vocab/Instance".freeze,
1204
+ label: "ISSN".freeze,
1205
+ range: "http://bibframe.org/vocab/Identifier".freeze,
1206
+ subPropertyOf: "http://bibframe.org/vocab/identifier".freeze,
1207
+ type: "rdf:Property".freeze
1208
+ property :issnL,
1209
+ comment: %(International Standard Serial Number that links together various media versions of a continuing resource.).freeze,
1210
+ domain: "http://bibframe.org/vocab/Work".freeze,
1211
+ label: "ISSN-L".freeze,
1212
+ range: "http://bibframe.org/vocab/Identifier".freeze,
1213
+ subPropertyOf: "http://bibframe.org/vocab/identifier".freeze,
1214
+ type: "rdf:Property".freeze
1215
+ property :issueNumber,
1216
+ comment: %(Number used to identify the issue designation, or serial identification, assigned by a publisher to a sound recording.).freeze,
1217
+ domain: "http://bibframe.org/vocab/Instance".freeze,
1218
+ label: "Audio issue number".freeze,
1219
+ range: "http://bibframe.org/vocab/Identifier".freeze,
1220
+ subPropertyOf: "http://bibframe.org/vocab/identifier".freeze,
1221
+ type: "rdf:Property".freeze
1222
+ property :issuedWith,
1223
+ comment: %(Instance that is issued on the same carrier as the manifestation being described.).freeze,
1224
+ domain: "http://bibframe.org/vocab/Instance".freeze,
1225
+ label: "Issued with".freeze,
1226
+ range: "http://bibframe.org/vocab/Instance".freeze,
1227
+ subPropertyOf: "http://bibframe.org/vocab/hasAccompaniment".freeze,
1228
+ type: "rdf:Property".freeze
1229
+ property :istc,
1230
+ comment: %(International Standard Text code, a numbering system developed to enable the unique identification of textual works.).freeze,
1231
+ "dc:modified" => %(a,z).freeze,
1232
+ domain: "http://bibframe.org/vocab/Work".freeze,
1233
+ label: "ISTC".freeze,
1234
+ range: "http://bibframe.org/vocab/Identifier".freeze,
1235
+ subPropertyOf: "http://bibframe.org/vocab/identifier".freeze,
1236
+ type: "rdf:Property".freeze
1237
+ property :iswc,
1238
+ comment: %(International Standard Musical Work Code, a unique, persistent reference number for the identification of musical works.).freeze,
1239
+ domain: "http://bibframe.org/vocab/Work".freeze,
1240
+ label: "ISWC".freeze,
1241
+ range: "http://bibframe.org/vocab/Identifier".freeze,
1242
+ subPropertyOf: "http://bibframe.org/vocab/identifier".freeze,
1243
+ type: "rdf:Property".freeze
1244
+ property :itemId,
1245
+ comment: %(Identification number assigned to data about one item held.).freeze,
1246
+ domain: "http://bibframe.org/vocab/HeldItem".freeze,
1247
+ label: "System item identifier".freeze,
1248
+ range: "rdfs:Literal".freeze,
1249
+ type: "rdf:Property".freeze
1250
+ property :keyTitle,
1251
+ comment: %(Unique title for a continuing resource that is assigned by the ISSN International Center in conjunction with an ISSN.).freeze,
1252
+ domain: "http://bibframe.org/vocab/Instance".freeze,
1253
+ label: "Key title".freeze,
1254
+ range: "http://bibframe.org/vocab/Title".freeze,
1255
+ subPropertyOf: "http://bibframe.org/vocab/instanceTitle".freeze,
1256
+ type: "rdf:Property".freeze
1257
+ property :label,
1258
+ comment: %(Text string expressing the property value.).freeze,
1259
+ domain: "http://bibframe.org/vocab/Resource".freeze,
1260
+ label: "Label".freeze,
1261
+ range: "rdfs:Literal".freeze,
1262
+ type: "rdf:Property".freeze
1263
+ property :language,
1264
+ comment: %(Languages associated with a resource including those for multilingual resources and translated resources.).freeze,
1265
+ label: "Language".freeze,
1266
+ range: "http://bibframe.org/vocab/Language".freeze,
1267
+ type: "rdf:Property".freeze
1268
+ property :languageNote,
1269
+ comment: %(Note concerning the language of the material or its parts.).freeze,
1270
+ domain: "http://bibframe.org/vocab/Work".freeze,
1271
+ label: "Language note".freeze,
1272
+ range: "rdfs:Literal".freeze,
1273
+ type: "rdf:Property".freeze
1274
+ property :languageOfPart,
1275
+ comment: %(Language or notation system used to convey the content of the resource \(associated with part or all of a resource\).).freeze,
1276
+ domain: "http://bibframe.org/vocab/Language".freeze,
1277
+ label: "Language of part".freeze,
1278
+ range: "rdfs:Literal".freeze,
1279
+ type: "rdf:Property".freeze
1280
+ property :languageOfPartUri,
1281
+ comment: %(Language or notation system used to convey the content of the resource \(associated with part or all of a resource\).).freeze,
1282
+ domain: "http://bibframe.org/vocab/Language".freeze,
1283
+ label: "Language of part URI".freeze,
1284
+ range: "rdfs:Resource".freeze,
1285
+ type: "rdf:Property".freeze
1286
+ property :languageSource,
1287
+ comment: %(Language code or name list from which value is taken.).freeze,
1288
+ domain: "http://bibframe.org/vocab/Language".freeze,
1289
+ label: "Language source".freeze,
1290
+ range: "rdfs:Literal".freeze,
1291
+ type: "rdf:Property".freeze
1292
+ property :lcOverseasAcq,
1293
+ comment: %(Identification number assigned by the Library of Congress to works acquired through one of its overseas acquisition programs.).freeze,
1294
+ domain: "http://bibframe.org/vocab/Instance".freeze,
1295
+ label: "LC acquisition program".freeze,
1296
+ range: "http://bibframe.org/vocab/Identifier".freeze,
1297
+ subPropertyOf: "http://bibframe.org/vocab/identifier".freeze,
1298
+ type: "rdf:Property".freeze
1299
+ property :lccn,
1300
+ comment: %(Library of Congress Control Number, which identifies the resource description.).freeze,
1301
+ domain: "http://bibframe.org/vocab/Instance".freeze,
1302
+ label: "LCCN".freeze,
1303
+ range: "http://bibframe.org/vocab/Identifier".freeze,
1304
+ subPropertyOf: "http://bibframe.org/vocab/identifier".freeze,
1305
+ type: "rdf:Property".freeze
1306
+ property :legalDate,
1307
+ comment: %(Date of legal work, or promulgation of a law, or signing of a treaty.).freeze,
1308
+ label: "Date of legal work".freeze,
1309
+ range: "rdfs:Literal".freeze,
1310
+ type: "rdf:Property".freeze
1311
+ property :legalDeposit,
1312
+ comment: %(Number assigned to a copyright or legal deposit, which Identifies a resource description.).freeze,
1313
+ domain: "http://bibframe.org/vocab/Instance".freeze,
1314
+ label: "Copyright number".freeze,
1315
+ range: "http://bibframe.org/vocab/Identifier".freeze,
1316
+ subPropertyOf: "http://bibframe.org/vocab/identifier".freeze,
1317
+ type: "rdf:Property".freeze
1318
+ property :lendingPolicy,
1319
+ comment: %(Policy statement about whether and with what restrictions the holding may be lent).freeze,
1320
+ domain: "http://bibframe.org/vocab/HeldMaterial".freeze,
1321
+ label: "Lending policy".freeze,
1322
+ range: "rdfs:Literal".freeze,
1323
+ type: "rdf:Property".freeze
1324
+ property :local,
1325
+ comment: %(Identifier established locally and not a standard number.).freeze,
1326
+ label: "Local identifier".freeze,
1327
+ range: "http://bibframe.org/vocab/Identifier".freeze,
1328
+ subPropertyOf: "http://bibframe.org/vocab/identifier".freeze,
1329
+ type: "rdf:Property".freeze
1330
+ property :manufacture,
1331
+ comment: %(Information relating to manufacture of an instance.).freeze,
1332
+ domain: "http://bibframe.org/vocab/Instance".freeze,
1333
+ label: "Manufacture event".freeze,
1334
+ range: "http://bibframe.org/vocab/Provider".freeze,
1335
+ subPropertyOf: "http://bibframe.org/vocab/provider".freeze,
1336
+ type: "rdf:Property".freeze
1337
+ property :materialArrangement,
1338
+ comment: %(Pattern of arrangement of materials within a unit.).freeze,
1339
+ domain: "http://bibframe.org/vocab/Arrangement".freeze,
1340
+ label: "Arrangement of material".freeze,
1341
+ range: "rdfs:Literal".freeze,
1342
+ type: "rdf:Property".freeze
1343
+ property :materialHierarchicalLevel,
1344
+ comment: %(Hierarchical position of the described materials relative to other material from the same source.).freeze,
1345
+ domain: "http://bibframe.org/vocab/Arrangement".freeze,
1346
+ label: "Hierarchical level of material".freeze,
1347
+ range: "rdfs:Literal".freeze,
1348
+ type: "rdf:Property".freeze
1349
+ property :materialOrganization,
1350
+ comment: %(Manner in which resource is divided into smaller units.).freeze,
1351
+ domain: "http://bibframe.org/vocab/Arrangement".freeze,
1352
+ label: "Organization of material".freeze,
1353
+ range: "rdfs:Literal".freeze,
1354
+ type: "rdf:Property".freeze
1355
+ property :materialPart,
1356
+ comment: %(Part of the resource to which information applies.).freeze,
1357
+ domain: "http://bibframe.org/vocab/Arrangement".freeze,
1358
+ label: "Part of material".freeze,
1359
+ range: "rdfs:Literal".freeze,
1360
+ type: "rdf:Property".freeze
1361
+ property :matrixNumber,
1362
+ comment: %(Matrix number from the master from which a specific sound recording was pressed.).freeze,
1363
+ domain: "http://bibframe.org/vocab/Instance".freeze,
1364
+ label: "Audio matrix number".freeze,
1365
+ range: "http://bibframe.org/vocab/Identifier".freeze,
1366
+ subPropertyOf: "http://bibframe.org/vocab/identifier".freeze,
1367
+ type: "rdf:Property".freeze
1368
+ property :mediaCategory,
1369
+ comment: %(Categorization reflecting the general type of intermediation device required to view, play, run, etc., the content of a resource.).freeze,
1370
+ domain: "http://bibframe.org/vocab/Instance".freeze,
1371
+ label: "Media type".freeze,
1372
+ range: "http://bibframe.org/vocab/Category".freeze,
1373
+ type: "rdf:Property".freeze
1374
+ property :mergedToForm,
1375
+ comment: %(One of two or more works that come together to form a new work.).freeze,
1376
+ "dc:modified" => %(2014-04-10 \(Updated subproperty\)).freeze,
1377
+ domain: "http://bibframe.org/vocab/Work".freeze,
1378
+ label: "Merged to form".freeze,
1379
+ range: "http://bibframe.org/vocab/Work".freeze,
1380
+ subPropertyOf: "http://bibframe.org/vocab/succeededBy".freeze,
1381
+ type: "rdf:Property".freeze
1382
+ property :modeOfIssuance,
1383
+ comment: %(Categorization reflecting whether a resource is issued in one or more parts, the way it is updated, and its intended termination.).freeze,
1384
+ domain: "http://bibframe.org/vocab/Instance".freeze,
1385
+ label: "Mode of issuance".freeze,
1386
+ range: "rdfs:Literal".freeze,
1387
+ type: "rdf:Property".freeze
1388
+ property :musicKey,
1389
+ comment: %(Pitch and mode for music.).freeze,
1390
+ label: "Music Key".freeze,
1391
+ range: "rdfs:Literal".freeze,
1392
+ type: "rdf:Property".freeze
1393
+ property :musicMedium,
1394
+ comment: %(Instrumental, vocal, and/or other medium of performance for which a musical resource was originally conceived, written or performed.).freeze,
1395
+ label: "Music medium".freeze,
1396
+ range: "rdfs:Resource".freeze,
1397
+ type: "rdf:Property".freeze
1398
+ property :musicMediumNote,
1399
+ comment: %(Instrumental, vocal, and/or other medium of performance for which a musical resource was originally conceived, written or performed.).freeze,
1400
+ label: "Music medium note".freeze,
1401
+ range: "rdfs:Literal".freeze,
1402
+ type: "rdf:Property".freeze
1403
+ property :musicNumber,
1404
+ comment: %(Serial, opus, or thematic number or code for music.).freeze,
1405
+ label: "Music number".freeze,
1406
+ range: "rdfs:Literal".freeze,
1407
+ type: "rdf:Property".freeze
1408
+ property :musicPlate,
1409
+ comment: %(Number assigned by a music publisher to a specific music publication.).freeze,
1410
+ domain: "http://bibframe.org/vocab/Instance".freeze,
1411
+ label: "Music plate number".freeze,
1412
+ range: "http://bibframe.org/vocab/Identifier".freeze,
1413
+ subPropertyOf: "http://bibframe.org/vocab/identifier".freeze,
1414
+ type: "rdf:Property".freeze
1415
+ property :musicPublisherNumber,
1416
+ comment: %(Number assigned to a music publication other than an issue, matrix, or plate number.).freeze,
1417
+ domain: "http://bibframe.org/vocab/Instance".freeze,
1418
+ label: "Music publisher number".freeze,
1419
+ range: "http://bibframe.org/vocab/Identifier".freeze,
1420
+ subPropertyOf: "http://bibframe.org/vocab/identifier".freeze,
1421
+ type: "rdf:Property".freeze
1422
+ property :musicVersion,
1423
+ comment: %(Versions such as arrangements, transcriptions, etc. of music.).freeze,
1424
+ "dc:modified" => %(2014-06-19 \(Example Added\)).freeze,
1425
+ label: "Music version".freeze,
1426
+ range: "rdfs:Literal".freeze,
1427
+ type: "rdf:Property".freeze
1428
+ property :nban,
1429
+ comment: %(National Bibliography Agency Number, which identifies the resource description.).freeze,
1430
+ domain: "http://bibframe.org/vocab/Instance".freeze,
1431
+ label: "NBAN".freeze,
1432
+ range: "http://bibframe.org/vocab/Identifier".freeze,
1433
+ subPropertyOf: "http://bibframe.org/vocab/identifier".freeze,
1434
+ type: "rdf:Property".freeze
1435
+ property :nbn,
1436
+ comment: %(National Bibliography Number, which identifies the resource description.).freeze,
1437
+ domain: "http://bibframe.org/vocab/Instance".freeze,
1438
+ label: "NBN".freeze,
1439
+ range: "http://bibframe.org/vocab/Identifier".freeze,
1440
+ subPropertyOf: "http://bibframe.org/vocab/identifier".freeze,
1441
+ type: "rdf:Property".freeze
1442
+ property :notation,
1443
+ comment: %(Information on the alphabet, script, or symbol system used to convey the content of the resource, including specialized scripts, typefaces, tactile notation, and musical notation.).freeze,
1444
+ domain: "http://bibframe.org/vocab/Instance".freeze,
1445
+ label: "Notation system".freeze,
1446
+ range: "rdfs:Literal".freeze,
1447
+ type: "rdf:Property".freeze
1448
+ property :note,
1449
+ comment: %(General textual information relating to a resource.).freeze,
1450
+ "dc:modified" => %(2014-10-14 \(Updated\)).freeze,
1451
+ label: "Note".freeze,
1452
+ range: "rdfs:Literal".freeze,
1453
+ type: "rdf:Property".freeze
1454
+ property :originDate,
1455
+ comment: %(Date or date range associated with the creation of the work.).freeze,
1456
+ "dc:modified" => %(2014-07-23 \(Example added\)).freeze,
1457
+ domain: "http://bibframe.org/vocab/Work".freeze,
1458
+ label: "Associated title date".freeze,
1459
+ range: "rdfs:Literal".freeze,
1460
+ type: "rdf:Property".freeze
1461
+ property :originPlace,
1462
+ comment: %(Place from which the creation of the work originated.).freeze,
1463
+ domain: "http://bibframe.org/vocab/Work".freeze,
1464
+ label: "Associated title place".freeze,
1465
+ range: "http://bibframe.org/vocab/Place".freeze,
1466
+ type: "rdf:Property".freeze
1467
+ property :originalVersion,
1468
+ comment: %(Instance is the original version of which this resource is a reproduction.).freeze,
1469
+ domain: "http://bibframe.org/vocab/Work".freeze,
1470
+ label: "Has original version".freeze,
1471
+ range: "http://bibframe.org/vocab/Work".freeze,
1472
+ subPropertyOf: "http://bibframe.org/vocab/derivativeOf".freeze,
1473
+ type: "rdf:Property".freeze
1474
+ property :otherEdition,
1475
+ comment: %(Resource has other available editions, for example simultaneously published language editions or reprints.).freeze,
1476
+ domain: "http://bibframe.org/vocab/Work".freeze,
1477
+ label: "hasOtherEdition".freeze,
1478
+ range: "http://bibframe.org/vocab/Work".freeze,
1479
+ subPropertyOf: "http://bibframe.org/vocab/derivativeOf".freeze,
1480
+ type: "rdf:Property".freeze
1481
+ property :otherPhysicalFormat,
1482
+ comment: %(Resource that is manifested in another physical carrier.).freeze,
1483
+ "dc:modified" => %(2014-10-14 \(Updated\)).freeze,
1484
+ domain: "http://bibframe.org/vocab/Instance".freeze,
1485
+ label: "Has other physical format".freeze,
1486
+ range: "http://bibframe.org/vocab/Instance".freeze,
1487
+ subPropertyOf: "http://bibframe.org/vocab/hasEquivalent".freeze,
1488
+ type: "rdf:Property".freeze
1489
+ property :partNumber,
1490
+ comment: %(Part or section number of a title.).freeze,
1491
+ domain: "http://bibframe.org/vocab/Title".freeze,
1492
+ label: "Part number".freeze,
1493
+ range: "rdfs:Literal".freeze,
1494
+ type: "rdf:Property".freeze
1495
+ property :partOf,
1496
+ comment: %(Resource in which the described resource is physically or logically contained.).freeze,
1497
+ "dc:modified" => %(2014-04-30 \(New\)).freeze,
1498
+ label: "Is part of".freeze,
1499
+ subPropertyOf: "http://bibframe.org/vocab/relatedTo".freeze,
1500
+ type: "rdf:Property".freeze
1501
+ property :partTitle,
1502
+ comment: %(Part or section name of a title.).freeze,
1503
+ domain: "http://bibframe.org/vocab/Title".freeze,
1504
+ label: "Part title".freeze,
1505
+ range: "rdfs:Literal".freeze,
1506
+ type: "rdf:Property".freeze
1507
+ property :performerNote,
1508
+ comment: %(Information about the participants, players, narrators, presenters, or performers.).freeze,
1509
+ label: "Performer note".freeze,
1510
+ range: "rdfs:Literal".freeze,
1511
+ type: "rdf:Property".freeze
1512
+ property :postalRegistration,
1513
+ comment: %(Number assigned to a publication for which the specified postal service permits the use of a special mailing class privilege.).freeze,
1514
+ domain: "http://bibframe.org/vocab/Instance".freeze,
1515
+ label: "Postal registration number".freeze,
1516
+ range: "http://bibframe.org/vocab/Identifier".freeze,
1517
+ subPropertyOf: "http://bibframe.org/vocab/identifier".freeze,
1518
+ type: "rdf:Property".freeze
1519
+ property :precededBy,
1520
+ comment: %(Resource that precedes the resource being described \(e.g., is earlier in time or before in narrative\).).freeze,
1521
+ "dc:modified" => %(2014-04-10 \(Renamed\)).freeze,
1522
+ label: "Preceded By".freeze,
1523
+ subPropertyOf: "http://bibframe.org/vocab/relatedTo".freeze,
1524
+ type: "rdf:Property".freeze
1525
+ property :preferredCitation,
1526
+ comment: %(Citation to the resource preferred by its custodian.).freeze,
1527
+ domain: "http://bibframe.org/vocab/Instance".freeze,
1528
+ label: "Preferred citation".freeze,
1529
+ range: "rdfs:Literal".freeze,
1530
+ type: "rdf:Property".freeze
1531
+ property :production,
1532
+ comment: %(Information relating to production of an instance.).freeze,
1533
+ domain: "http://bibframe.org/vocab/Instance".freeze,
1534
+ label: "Production event".freeze,
1535
+ range: "http://bibframe.org/vocab/Provider".freeze,
1536
+ subPropertyOf: "http://bibframe.org/vocab/provider".freeze,
1537
+ type: "rdf:Property".freeze
1538
+ property :provider,
1539
+ comment: %(Place, name, and/or date information relating to the publication, printing, distribution, issue, release, or production instance.).freeze,
1540
+ domain: "http://bibframe.org/vocab/Instance".freeze,
1541
+ label: "Provider".freeze,
1542
+ range: "http://bibframe.org/vocab/Provider".freeze,
1543
+ type: "rdf:Property".freeze
1544
+ property :providerDate,
1545
+ comment: %(Date associated with the publication, printing, distribution, issue, release or production of the instance.).freeze,
1546
+ domain: "http://bibframe.org/vocab/Provider".freeze,
1547
+ label: "Provider date".freeze,
1548
+ range: "rdfs:Literal".freeze,
1549
+ type: "rdf:Property".freeze
1550
+ property :providerName,
1551
+ comment: %(Name of the entity responsible for the publication, printing, distribution, issue, release or production of the instance.).freeze,
1552
+ domain: "http://bibframe.org/vocab/Provider".freeze,
1553
+ label: "Provider name".freeze,
1554
+ range: "http://bibframe.org/vocab/Agent".freeze,
1555
+ type: "rdf:Property".freeze
1556
+ property :providerPlace,
1557
+ comment: %(Place associated with the publication, printing, distribution, issue, release or production of the instance.).freeze,
1558
+ domain: "http://bibframe.org/vocab/Provider".freeze,
1559
+ label: "Provider place".freeze,
1560
+ range: "http://bibframe.org/vocab/Place".freeze,
1561
+ type: "rdf:Property".freeze
1562
+ property :providerRole,
1563
+ comment: %(The type of role played by the provider of an instance, e.g. production, publication, manufacture, distribution.).freeze,
1564
+ domain: "http://bibframe.org/vocab/Provider".freeze,
1565
+ label: "Provider role".freeze,
1566
+ range: "rdfs:Literal".freeze,
1567
+ type: "rdf:Property".freeze
1568
+ property :providerStatement,
1569
+ comment: %(Transcribed provider statement).freeze,
1570
+ domain: "http://bibframe.org/vocab/Instance".freeze,
1571
+ label: "Provider statement".freeze,
1572
+ range: "rdfs:Literal".freeze,
1573
+ type: "rdf:Property".freeze
1574
+ property :publication,
1575
+ comment: %(Information relating to publication of an instance.).freeze,
1576
+ domain: "http://bibframe.org/vocab/Instance".freeze,
1577
+ label: "Publication event".freeze,
1578
+ range: "http://bibframe.org/vocab/Provider".freeze,
1579
+ subPropertyOf: "http://bibframe.org/vocab/provider".freeze,
1580
+ type: "rdf:Property".freeze
1581
+ property :publisherNumber,
1582
+ comment: %(Number assigned by a publisher that is not one of the specific defined types.).freeze,
1583
+ domain: "http://bibframe.org/vocab/Instance".freeze,
1584
+ label: "Other publisher number".freeze,
1585
+ range: "http://bibframe.org/vocab/Identifier".freeze,
1586
+ subPropertyOf: "http://bibframe.org/vocab/identifier".freeze,
1587
+ type: "rdf:Property".freeze
1588
+ property :referenceAuthority,
1589
+ comment: %(Link to authority information).freeze,
1590
+ "dc:modified" => %(2014-03-27 \(Updated\)).freeze,
1591
+ domain: "http://bibframe.org/vocab/Authority".freeze,
1592
+ label: "Other authority information".freeze,
1593
+ range: "http://bibframe.org/vocab/Resource".freeze,
1594
+ type: "rdf:Property".freeze
1595
+ property :relatedInstance,
1596
+ comment: %(General instance to instance relationship.).freeze,
1597
+ domain: "http://bibframe.org/vocab/Instance".freeze,
1598
+ label: "Related Instance".freeze,
1599
+ range: "http://bibframe.org/vocab/Instance".freeze,
1600
+ subPropertyOf: "http://bibframe.org/vocab/relatedTo".freeze,
1601
+ type: "rdf:Property".freeze
1602
+ property :relatedTo,
1603
+ comment: %(Any relationship between work or instance resources.).freeze,
1604
+ "dc:modified" => %(2014-04-10 \(Range updated\)).freeze,
1605
+ domain: "http://bibframe.org/vocab/Resource".freeze,
1606
+ label: "Related resource".freeze,
1607
+ range: "http://bibframe.org/vocab/Resource".freeze,
1608
+ type: "rdf:Property".freeze
1609
+ property :relatedWork,
1610
+ comment: %(General work to work relationship.).freeze,
1611
+ domain: "http://bibframe.org/vocab/Work".freeze,
1612
+ label: "Related Work".freeze,
1613
+ range: "http://bibframe.org/vocab/Work".freeze,
1614
+ subPropertyOf: "http://bibframe.org/vocab/relatedTo".freeze,
1615
+ type: "rdf:Property".freeze
1616
+ property :relator,
1617
+ comment: %(link to role and agent information.).freeze,
1618
+ "dc:modified" => %(2014-04-30 \(New\)).freeze,
1619
+ label: "Relationship of agent".freeze,
1620
+ range: "http://bibframe.org/vocab/Relator".freeze,
1621
+ type: "rdf:Property".freeze
1622
+ property :relatorRole,
1623
+ comment: %(Specific role of agent.).freeze,
1624
+ "dc:modified" => %(2014-04-30 \(New\)).freeze,
1625
+ domain: "http://bibframe.org/vocab/Relator".freeze,
1626
+ label: "Agent role".freeze,
1627
+ range: "rdfs:Literal".freeze,
1628
+ type: "rdf:Property".freeze
1629
+ property :reportNumber,
1630
+ comment: %(Identification number of a report that is not a Standard Technical Report Number.).freeze,
1631
+ domain: "http://bibframe.org/vocab/Instance".freeze,
1632
+ label: "Technical report number".freeze,
1633
+ range: "http://bibframe.org/vocab/Identifier".freeze,
1634
+ subPropertyOf: "http://bibframe.org/vocab/identifier".freeze,
1635
+ type: "rdf:Property".freeze
1636
+ property :reproduction,
1637
+ comment: %(Instance that reproduces another Instance embodying the same work.).freeze,
1638
+ domain: "http://bibframe.org/vocab/Instance".freeze,
1639
+ label: "Has reproduction".freeze,
1640
+ range: "http://bibframe.org/vocab/Instance".freeze,
1641
+ subPropertyOf: "http://bibframe.org/vocab/hasEquivalent".freeze,
1642
+ type: "rdf:Property".freeze
1643
+ property :reproductionPolicy,
1644
+ comment: %(Policy statement about whether reproductions of the holding can be made).freeze,
1645
+ "dc:modified" => %(2014-10-21 \(Added\)).freeze,
1646
+ domain: "http://bibframe.org/vocab/HeldMaterial".freeze,
1647
+ label: "Reproduction policy".freeze,
1648
+ range: "rdfs:Literal".freeze,
1649
+ type: "rdf:Property".freeze
1650
+ property :resourcePart,
1651
+ comment: %(Part of a resource for which language is being indicated.).freeze,
1652
+ domain: "http://bibframe.org/vocab/Language".freeze,
1653
+ label: "Resource part".freeze,
1654
+ range: "rdfs:Literal".freeze,
1655
+ type: "rdf:Property".freeze
1656
+ property :responsibilityStatement,
1657
+ comment: %(Statement relating to the identification and/or function of any persons, families, or corporate bodies responsible for the creation of, or contributing to the content of a resource.).freeze,
1658
+ domain: "http://bibframe.org/vocab/Instance".freeze,
1659
+ label: "Edition responsibility".freeze,
1660
+ range: "rdfs:Literal".freeze,
1661
+ type: "rdf:Property".freeze
1662
+ property :retentionPolicy,
1663
+ comment: %(Policy statement about how many and/or how long the holdings are retained).freeze,
1664
+ "dc:modified" => %(2014-10-21 \(Added\)).freeze,
1665
+ domain: "http://bibframe.org/vocab/HeldMaterial".freeze,
1666
+ label: "Retention policy".freeze,
1667
+ range: "rdfs:Literal".freeze,
1668
+ type: "rdf:Property".freeze
1669
+ property :review,
1670
+ comment: %(Review content.).freeze,
1671
+ domain: "http://bibframe.org/vocab/Review".freeze,
1672
+ label: "Review content".freeze,
1673
+ range: "rdfs:Resource".freeze,
1674
+ subPropertyOf: "http://bibframe.org/vocab/annotationBody".freeze,
1675
+ type: "rdf:Property".freeze
1676
+ property :reviewOf,
1677
+ comment: %(Resource to which the review pertains.).freeze,
1678
+ domain: "http://bibframe.org/vocab/Review".freeze,
1679
+ label: "Resource reviewed".freeze,
1680
+ range: "http://bibframe.org/vocab/Work".freeze,
1681
+ subPropertyOf: "http://bibframe.org/vocab/annotates".freeze,
1682
+ type: "rdf:Property".freeze
1683
+ property :separatedFrom,
1684
+ comment: %(Work that spun off a part of its content to form a new work.).freeze,
1685
+ "dc:modified" => %(2014-04-10 \(Updated subproperty\)).freeze,
1686
+ domain: "http://bibframe.org/vocab/Work".freeze,
1687
+ label: "Separated from".freeze,
1688
+ range: "http://bibframe.org/vocab/Work".freeze,
1689
+ subPropertyOf: "http://bibframe.org/vocab/precededBy".freeze,
1690
+ type: "rdf:Property".freeze
1691
+ property :serialFirstIssue,
1692
+ comment: %(Beginning date of an instance and/or the sequential designations.).freeze,
1693
+ domain: "http://bibframe.org/vocab/Instance".freeze,
1694
+ label: "Serial first issue".freeze,
1695
+ range: "rdfs:Literal".freeze,
1696
+ type: "rdf:Property".freeze
1697
+ property :serialLastIssue,
1698
+ comment: %(Ending date of an instance and/or the sequential designations.).freeze,
1699
+ domain: "http://bibframe.org/vocab/Instance".freeze,
1700
+ label: "Serial last issue".freeze,
1701
+ range: "rdfs:Literal".freeze,
1702
+ type: "rdf:Property".freeze
1703
+ property :series,
1704
+ comment: %(Work in which the part has been issued; the title of the larger work appears on the part.).freeze,
1705
+ "dc:modified" => %(2014-10-14 \(Updated\)).freeze,
1706
+ domain: "http://bibframe.org/vocab/Work".freeze,
1707
+ label: "Has series".freeze,
1708
+ range: "http://bibframe.org/vocab/Work".freeze,
1709
+ subPropertyOf: "http://bibframe.org/vocab/partOf".freeze,
1710
+ type: "rdf:Property".freeze
1711
+ property :shelfMark,
1712
+ comment: %(Physical location, such as a call number or a special shelf/location indicator.).freeze,
1713
+ domain: "http://bibframe.org/vocab/HeldItem".freeze,
1714
+ label: "Shelf Location".freeze,
1715
+ range: "rdfs:Literal".freeze,
1716
+ type: "rdf:Property".freeze
1717
+ property :shelfMarkDdc,
1718
+ comment: %(Shelf mark based on Dewey Decimal Classification.).freeze,
1719
+ domain: "http://bibframe.org/vocab/HeldItem".freeze,
1720
+ label: "DDC call number".freeze,
1721
+ range: "rdfs:Literal".freeze,
1722
+ type: "rdf:Property".freeze
1723
+ property :shelfMarkLcc,
1724
+ comment: %(Shelf mark based on Library of Congress Classification.).freeze,
1725
+ domain: "http://bibframe.org/vocab/HeldItem".freeze,
1726
+ label: "LCC call number".freeze,
1727
+ range: "rdfs:Literal".freeze,
1728
+ type: "rdf:Property".freeze
1729
+ property :shelfMarkNlm,
1730
+ comment: %(Shelf mark based on National Library of Medicine Classification.).freeze,
1731
+ domain: "http://bibframe.org/vocab/HeldItem".freeze,
1732
+ label: "NLM call number".freeze,
1733
+ range: "rdfs:Literal".freeze,
1734
+ type: "rdf:Property".freeze
1735
+ property :shelfMarkScheme,
1736
+ comment: %(Scheme from which a shelf mark is taken.).freeze,
1737
+ domain: "http://bibframe.org/vocab/HeldItem".freeze,
1738
+ label: "Shelf mark scheme".freeze,
1739
+ range: "rdfs:Literal".freeze,
1740
+ type: "rdf:Property".freeze
1741
+ property :shelfMarkUdc,
1742
+ comment: %(Shelf mark based on Universal Decimal Classification.).freeze,
1743
+ domain: "http://bibframe.org/vocab/HeldItem".freeze,
1744
+ label: "UDC call number".freeze,
1745
+ range: "rdfs:Literal".freeze,
1746
+ type: "rdf:Property".freeze
1747
+ property :sici,
1748
+ comment: %(Serial Item and Contribution Identifier.).freeze,
1749
+ domain: "http://bibframe.org/vocab/Instance".freeze,
1750
+ label: "SICI".freeze,
1751
+ range: "http://bibframe.org/vocab/Identifier".freeze,
1752
+ subPropertyOf: "http://bibframe.org/vocab/identifier".freeze,
1753
+ type: "rdf:Property".freeze
1754
+ property :soundContent,
1755
+ comment: %(Indication of whether the production of sound is an integral part of the resource.).freeze,
1756
+ domain: "http://bibframe.org/vocab/Instance".freeze,
1757
+ label: "Sound content".freeze,
1758
+ range: "rdfs:Literal".freeze,
1759
+ type: "rdf:Property".freeze
1760
+ property :splitInto,
1761
+ comment: %(One of two or more works resulting from the division of an earlier work into separate works.).freeze,
1762
+ "dc:modified" => %(2014-04-10 \(Updated subproperty\)).freeze,
1763
+ domain: "http://bibframe.org/vocab/Work".freeze,
1764
+ label: "Split into".freeze,
1765
+ range: "http://bibframe.org/vocab/Work".freeze,
1766
+ subPropertyOf: "http://bibframe.org/vocab/succeededBy".freeze,
1767
+ type: "rdf:Property".freeze
1768
+ property :startOfReview,
1769
+ comment: %(First part of review.).freeze,
1770
+ domain: "http://bibframe.org/vocab/Review".freeze,
1771
+ label: "Review beginning".freeze,
1772
+ range: "rdfs:Literal".freeze,
1773
+ type: "rdf:Property".freeze
1774
+ property :startOfSummary,
1775
+ comment: %(First part of description.).freeze,
1776
+ domain: "http://bibframe.org/vocab/Summary".freeze,
1777
+ label: "Summary beginning".freeze,
1778
+ range: "rdfs:Literal".freeze,
1779
+ type: "rdf:Property".freeze
1780
+ property :stockNumber,
1781
+ comment: %(Identification number such as distributor, publisher, or vendor number.).freeze,
1782
+ domain: "http://bibframe.org/vocab/Instance".freeze,
1783
+ label: "Stock number".freeze,
1784
+ range: "http://bibframe.org/vocab/Identifier".freeze,
1785
+ subPropertyOf: "http://bibframe.org/vocab/identifier".freeze,
1786
+ type: "rdf:Property".freeze
1787
+ property :strn,
1788
+ comment: %(Standard Technical Report Number.).freeze,
1789
+ domain: "http://bibframe.org/vocab/Instance".freeze,
1790
+ label: "STRN".freeze,
1791
+ range: "http://bibframe.org/vocab/Identifier".freeze,
1792
+ subPropertyOf: "http://bibframe.org/vocab/identifier".freeze,
1793
+ type: "rdf:Property".freeze
1794
+ property :studyNumber,
1795
+ comment: %(Identification number for a computer data file.).freeze,
1796
+ domain: "http://bibframe.org/vocab/Instance".freeze,
1797
+ label: "Study number".freeze,
1798
+ range: "http://bibframe.org/vocab/Identifier".freeze,
1799
+ subPropertyOf: "http://bibframe.org/vocab/identifier".freeze,
1800
+ type: "rdf:Property".freeze
1801
+ property :subLocation,
1802
+ comment: %(Specific place within the holding entity where the item is located or made available).freeze,
1803
+ "dc:modified" => %(2014-04-28 \(Updated Mapping\)).freeze,
1804
+ domain: "http://bibframe.org/vocab/HeldMaterial".freeze,
1805
+ label: "Held in sublocation".freeze,
1806
+ range: "rdfs:Literal".freeze,
1807
+ type: "rdf:Property".freeze
1808
+ property :subject,
1809
+ comment: %(Subject term\(s\) describing a resource.).freeze,
1810
+ domain: "http://bibframe.org/vocab/Work".freeze,
1811
+ label: "Subject".freeze,
1812
+ range: ["http://bibframe.org/vocab/Authority".freeze, "http://bibframe.org/vocab/Work".freeze],
1813
+ type: "rdf:Property".freeze
1814
+ property :subseries,
1815
+ comment: %(Work, which is part of another series, in which the part has been issued.).freeze,
1816
+ "dc:modified" => %(2014-10-14 \(Updated\)).freeze,
1817
+ domain: "http://bibframe.org/vocab/Work".freeze,
1818
+ label: "Has subseries".freeze,
1819
+ range: "http://bibframe.org/vocab/Work".freeze,
1820
+ subPropertyOf: "http://bibframe.org/vocab/hasPart".freeze,
1821
+ type: "rdf:Property".freeze
1822
+ property :subseriesOf,
1823
+ comment: %(Work in which the part consistently appears; the title of the larger work appears on all issues or parts of the subseries\).).freeze,
1824
+ "dc:modified" => %(2014-10-14 \(Updated\)).freeze,
1825
+ domain: "http://bibframe.org/vocab/Work".freeze,
1826
+ label: "Subseries of".freeze,
1827
+ range: "http://bibframe.org/vocab/Work".freeze,
1828
+ subPropertyOf: "http://bibframe.org/vocab/partOf".freeze,
1829
+ type: "rdf:Property".freeze
1830
+ property :subtitle,
1831
+ comment: %(Word, character, or group of words and/or characters that contains the remainder of the title information after the main title.).freeze,
1832
+ domain: "http://bibframe.org/vocab/Title".freeze,
1833
+ label: "Subtitle".freeze,
1834
+ range: "rdfs:Literal".freeze,
1835
+ type: "rdf:Property".freeze
1836
+ property :succeededBy,
1837
+ comment: %(Resource that succeeds the resource being described \(e.g., later in time or after in a narrative\).).freeze,
1838
+ "dc:modified" => %(2014-04-10 \(Renamed\)).freeze,
1839
+ label: "Succeeded By".freeze,
1840
+ subPropertyOf: "http://bibframe.org/vocab/relatedTo".freeze,
1841
+ type: "rdf:Property".freeze
1842
+ property :summary,
1843
+ comment: %(Summary or abstract of the target work or instance.).freeze,
1844
+ domain: "http://bibframe.org/vocab/Summary".freeze,
1845
+ label: "Summary content".freeze,
1846
+ range: "rdfs:Resource".freeze,
1847
+ subPropertyOf: "http://bibframe.org/vocab/annotationBody".freeze,
1848
+ type: "rdf:Property".freeze
1849
+ property :summaryOf,
1850
+ comment: %(Resource to which the description pertains.).freeze,
1851
+ domain: "http://bibframe.org/vocab/Summary".freeze,
1852
+ label: "Resource summarized".freeze,
1853
+ subPropertyOf: "http://bibframe.org/vocab/annotates".freeze,
1854
+ type: "rdf:Property".freeze
1855
+ property :supersededBy,
1856
+ comment: %(Later Work used in place of an earlier work, usually because the later work contains updated or new information.).freeze,
1857
+ "dc:modified" => %(2014-04-10 \(Updated subproperty\)).freeze,
1858
+ domain: "http://bibframe.org/vocab/Work".freeze,
1859
+ label: "Superseded by".freeze,
1860
+ range: "http://bibframe.org/vocab/Work".freeze,
1861
+ subPropertyOf: "http://bibframe.org/vocab/succeededBy".freeze,
1862
+ type: "rdf:Property".freeze
1863
+ property :supersededInPartBy,
1864
+ comment: %(Later Work used in part in place of an earlier work, usually because the later work contains updated or new information.).freeze,
1865
+ "dc:modified" => %(2014-04-10 \(Updated subproperty\)).freeze,
1866
+ domain: "http://bibframe.org/vocab/Work".freeze,
1867
+ label: "Superseded in part by".freeze,
1868
+ range: "http://bibframe.org/vocab/Work".freeze,
1869
+ subPropertyOf: "http://bibframe.org/vocab/succeededBy".freeze,
1870
+ type: "rdf:Property".freeze
1871
+ property :supersedes,
1872
+ comment: %(Earlier work whose content has been replaced by a later work, usually because the later work contains updated or new information.).freeze,
1873
+ "dc:modified" => %(2014-04-10 \(Updated subproperty\)).freeze,
1874
+ domain: "http://bibframe.org/vocab/Work".freeze,
1875
+ label: "Supersedes".freeze,
1876
+ range: "http://bibframe.org/vocab/Work".freeze,
1877
+ subPropertyOf: "http://bibframe.org/vocab/precededBy".freeze,
1878
+ type: "rdf:Property".freeze
1879
+ property :supersedesInPart,
1880
+ comment: %(Earlier work whose content has been partially replaced by a later work, usually because the later work contains updated or new information.).freeze,
1881
+ "dc:modified" => %(2014-04-10 \(Updated subproperty\)).freeze,
1882
+ domain: "http://bibframe.org/vocab/Work".freeze,
1883
+ label: "Supersedes in part".freeze,
1884
+ range: "http://bibframe.org/vocab/Work".freeze,
1885
+ subPropertyOf: "http://bibframe.org/vocab/precededBy".freeze,
1886
+ type: "rdf:Property".freeze
1887
+ property :supplement,
1888
+ comment: %(Work that updates or otherwise complements the predominant work.).freeze,
1889
+ domain: "http://bibframe.org/vocab/Work".freeze,
1890
+ label: "Has supplement".freeze,
1891
+ range: "http://bibframe.org/vocab/Work".freeze,
1892
+ subPropertyOf: "http://bibframe.org/vocab/accompaniedBy".freeze,
1893
+ type: "rdf:Property".freeze
1894
+ property :supplementTo,
1895
+ comment: %(Work that is updated or otherwise complemented by the augmenting work.).freeze,
1896
+ domain: "http://bibframe.org/vocab/Work".freeze,
1897
+ label: "Supplement to".freeze,
1898
+ range: "http://bibframe.org/vocab/Work".freeze,
1899
+ subPropertyOf: "http://bibframe.org/vocab/accompanies".freeze,
1900
+ type: "rdf:Property".freeze
1901
+ property :supplementaryContentNote,
1902
+ comment: %(Information on the presence of one or more bibliographies, discographies, filmographies, and/or other bibliographic references in a described resource or in accompanying material.).freeze,
1903
+ domain: "http://bibframe.org/vocab/Instance".freeze,
1904
+ label: "Supplementary content note".freeze,
1905
+ range: "rdfs:Literal".freeze,
1906
+ type: "rdf:Property".freeze
1907
+ property :systemNumber,
1908
+ comment: %(Control number of a system other than LCCN or NBAN, which Identifies a resource description.).freeze,
1909
+ label: "System control number".freeze,
1910
+ range: "http://bibframe.org/vocab/Identifier".freeze,
1911
+ subPropertyOf: "http://bibframe.org/vocab/identifier".freeze,
1912
+ type: "rdf:Property".freeze
1913
+ property :tableOfContents,
1914
+ comment: %(Table of contents of the target work or instance.).freeze,
1915
+ domain: "http://bibframe.org/vocab/TableOfContents".freeze,
1916
+ label: "Table of contents content".freeze,
1917
+ range: "rdfs:Resource".freeze,
1918
+ subPropertyOf: "http://bibframe.org/vocab/annotationBody".freeze,
1919
+ type: "rdf:Property".freeze
1920
+ property :tableOfContentsFor,
1921
+ comment: %(Resource to which the table of contents pertains.).freeze,
1922
+ domain: "http://bibframe.org/vocab/TableOfContents".freeze,
1923
+ label: "Table of contents of resource".freeze,
1924
+ range: "rdfs:Resource".freeze,
1925
+ subPropertyOf: "http://bibframe.org/vocab/annotates".freeze,
1926
+ type: "rdf:Property".freeze
1927
+ property :temporalCoverageNote,
1928
+ comment: %(Time period covered by the resource.).freeze,
1929
+ domain: "http://bibframe.org/vocab/Work".freeze,
1930
+ label: "Temporal coverage".freeze,
1931
+ range: "rdfs:Literal".freeze,
1932
+ type: "rdf:Property".freeze
1933
+ property :title,
1934
+ comment: %(Word, character, or group of words and/or characters that is a name given to a resource).freeze,
1935
+ label: "Title".freeze,
1936
+ range: "rdfs:Literal".freeze,
1937
+ type: "rdf:Property".freeze
1938
+ property :titleAttribute,
1939
+ comment: %(Other distinguishing characteristic of a work, such as version, etc..).freeze,
1940
+ domain: "http://bibframe.org/vocab/Title".freeze,
1941
+ label: "Other title attribute".freeze,
1942
+ range: "rdfs:Literal".freeze,
1943
+ type: "rdf:Property".freeze
1944
+ property :titleQualifier,
1945
+ comment: %(Qualifier of title information to make it unique.).freeze,
1946
+ domain: "http://bibframe.org/vocab/Title".freeze,
1947
+ label: "Title qualifier".freeze,
1948
+ range: "rdfs:Literal".freeze,
1949
+ type: "rdf:Property".freeze
1950
+ property :titleSource,
1951
+ comment: %(Title list from which title is taken, e.g., list of abbreviated titles.).freeze,
1952
+ domain: "http://bibframe.org/vocab/Title".freeze,
1953
+ label: "Title source".freeze,
1954
+ range: "rdfs:Literal".freeze,
1955
+ type: "rdf:Property".freeze
1956
+ property :titleStatement,
1957
+ comment: %(Title transcribed from an instance.).freeze,
1958
+ "dc:modified" => %(2014-09-03 \(Updated\)).freeze,
1959
+ domain: "http://bibframe.org/vocab/Instance".freeze,
1960
+ label: "Transcribed title".freeze,
1961
+ range: "rdfs:Literal".freeze,
1962
+ type: "rdf:Property".freeze
1963
+ property :titleType,
1964
+ comment: %(Type of title variation, e.g., acronym, cover, spine. .).freeze,
1965
+ "dc:modified" => %(2014-08-07 \(Example added\)).freeze,
1966
+ domain: "http://bibframe.org/vocab/Title".freeze,
1967
+ label: "Variant title type".freeze,
1968
+ range: "rdfs:Literal".freeze,
1969
+ type: "rdf:Property".freeze
1970
+ property :titleValue,
1971
+ comment: %(Title being addressed.).freeze,
1972
+ domain: "http://bibframe.org/vocab/Title".freeze,
1973
+ label: "Title".freeze,
1974
+ range: "rdfs:Literal".freeze,
1975
+ type: "rdf:Property".freeze
1976
+ property :titleVariation,
1977
+ comment: %(Title associated with the resource that is different from the main title.).freeze,
1978
+ label: "Title variation".freeze,
1979
+ range: "http://bibframe.org/vocab/Title".freeze,
1980
+ type: "rdf:Property".freeze
1981
+ property :titleVariationDate,
1982
+ comment: %(Date or sequential designation of title variation.).freeze,
1983
+ domain: "http://bibframe.org/vocab/Title".freeze,
1984
+ label: "Variant title date".freeze,
1985
+ range: "rdfs:Literal".freeze,
1986
+ type: "rdf:Property".freeze
1987
+ property :translation,
1988
+ comment: %(Work that translates the text of the source entity into a language different from that of the original.).freeze,
1989
+ domain: "http://bibframe.org/vocab/Work".freeze,
1990
+ label: "Has translation".freeze,
1991
+ range: "http://bibframe.org/vocab/Work".freeze,
1992
+ subPropertyOf: "http://bibframe.org/vocab/derivativeOf".freeze,
1993
+ type: "rdf:Property".freeze
1994
+ property :translationOf,
1995
+ comment: %(Work that has been translated, i.e., the text expressed in a language different from that of the original work\).).freeze,
1996
+ domain: "http://bibframe.org/vocab/Work".freeze,
1997
+ label: "Translation of".freeze,
1998
+ range: "http://bibframe.org/vocab/Work".freeze,
1999
+ subPropertyOf: "http://bibframe.org/vocab/hasDerivative".freeze,
2000
+ type: "rdf:Property".freeze
2001
+ property :treatySignator,
2002
+ comment: %(Government of other party that has formally signed a treaty.).freeze,
2003
+ "dc:modified" => %(2014-03-21 \(Range updated\)).freeze,
2004
+ label: "Signatory to a treaty".freeze,
2005
+ range: "rdfs:Literal".freeze,
2006
+ type: "rdf:Property".freeze
2007
+ property :unionOf,
2008
+ comment: %(One of two or more works which came together to form a new work.).freeze,
2009
+ "dc:modified" => %(2014-04-10 \(Updated subproperty\)).freeze,
2010
+ domain: "http://bibframe.org/vocab/Work".freeze,
2011
+ label: "Union of".freeze,
2012
+ range: "http://bibframe.org/vocab/Work".freeze,
2013
+ subPropertyOf: "http://bibframe.org/vocab/precededBy".freeze,
2014
+ type: "rdf:Property".freeze
2015
+ property :upc,
2016
+ comment: %(Universal Product Code.).freeze,
2017
+ domain: "http://bibframe.org/vocab/Instance".freeze,
2018
+ label: "UPC".freeze,
2019
+ range: "http://bibframe.org/vocab/Identifier".freeze,
2020
+ subPropertyOf: "http://bibframe.org/vocab/identifier".freeze,
2021
+ type: "rdf:Property".freeze
2022
+ property :uri,
2023
+ comment: %(Uniform Resource Identifier.).freeze,
2024
+ label: "URI".freeze,
2025
+ range: "http://bibframe.org/vocab/Identifier".freeze,
2026
+ subPropertyOf: "http://bibframe.org/vocab/identifier".freeze,
2027
+ type: "rdf:Property".freeze
2028
+ property :urn,
2029
+ comment: %(Uniform Resource Number.).freeze,
2030
+ domain: "http://bibframe.org/vocab/Instance".freeze,
2031
+ label: "URN".freeze,
2032
+ range: "http://bibframe.org/vocab/Identifier".freeze,
2033
+ subPropertyOf: "http://bibframe.org/vocab/identifier".freeze,
2034
+ type: "rdf:Property".freeze
2035
+ property :videorecordingNumber,
2036
+ comment: %(Number assigned by a publisher to a videorecording.).freeze,
2037
+ domain: "http://bibframe.org/vocab/Instance".freeze,
2038
+ label: "Videorecording number".freeze,
2039
+ range: "http://bibframe.org/vocab/Identifier".freeze,
2040
+ subPropertyOf: "http://bibframe.org/vocab/identifier".freeze,
2041
+ type: "rdf:Property".freeze
2042
+ property :workTitle,
2043
+ comment: %(Title or form of title chosen to identify the work, such as a preferred title, preferred title with additions, uniform title, etc..).freeze,
2044
+ domain: "http://bibframe.org/vocab/Work".freeze,
2045
+ label: "Work title".freeze,
2046
+ range: "http://bibframe.org/vocab/Title".freeze,
2047
+ type: "rdf:Property".freeze
2048
+
2049
+ # Extra definitions
2050
+ term :"",
2051
+ "dc:modified" => %(2014-12-10T20:23:05.638677Z).freeze,
2052
+ label: "".freeze,
2053
+ "owl:versionInfo" => %(Initially automatically generated.).freeze,
2054
+ type: "owl:Ontology".freeze
2055
+ end
2056
+ end