rdf-vocab 3.1.9 → 3.1.14

Sign up to get free protection for your applications and to get access to all the features.
Files changed (86) hide show
  1. checksums.yaml +4 -4
  2. data/README.md +6 -1
  3. data/VERSION +1 -1
  4. data/lib/rdf/vocab.rb +48 -7
  5. data/lib/rdf/vocab/acl.rb +47 -134
  6. data/lib/rdf/vocab/as.rb +381 -894
  7. data/lib/rdf/vocab/bf2.rb +1520 -2676
  8. data/lib/rdf/vocab/bibframe.rb +2437 -1843
  9. data/lib/rdf/vocab/bibo.rb +576 -1078
  10. data/lib/rdf/vocab/cc.rb +57 -167
  11. data/lib/rdf/vocab/cert.rb +90 -268
  12. data/lib/rdf/vocab/cnt.rb +70 -152
  13. data/lib/rdf/vocab/crm.rb +1180 -2486
  14. data/lib/rdf/vocab/datacite.rb +161 -161
  15. data/lib/rdf/vocab/dbo.rb +3901 -14146
  16. data/lib/rdf/vocab/dc.rb +458 -848
  17. data/lib/rdf/vocab/dc11.rb +62 -128
  18. data/lib/rdf/vocab/dcat.rb +217 -383
  19. data/lib/rdf/vocab/dcmitype.rb +65 -119
  20. data/lib/rdf/vocab/disco.rb +170 -401
  21. data/lib/rdf/vocab/doap.rb +250 -430
  22. data/lib/rdf/vocab/dwc.rb +1451 -2207
  23. data/lib/rdf/vocab/earl.rb +93 -218
  24. data/lib/rdf/vocab/ebucore.rb +2991 -7439
  25. data/lib/rdf/vocab/edm.rb +159 -351
  26. data/lib/rdf/vocab/exif.rb +614 -1268
  27. data/lib/rdf/vocab/extensions.rb +3 -3
  28. data/lib/rdf/vocab/fcrepo4.rb +247 -627
  29. data/lib/rdf/vocab/foaf.rb +373 -681
  30. data/lib/rdf/vocab/geo.rb +16 -58
  31. data/lib/rdf/vocab/geojson.rb +16 -85
  32. data/lib/rdf/vocab/geonames.rb +1573 -1742
  33. data/lib/rdf/vocab/gr.rb +539 -1427
  34. data/lib/rdf/vocab/gs1.rb +3780 -5380
  35. data/lib/rdf/vocab/ht.rb +93 -260
  36. data/lib/rdf/vocab/hydra.rb +255 -477
  37. data/lib/rdf/vocab/iana.rb +71 -304
  38. data/lib/rdf/vocab/ical.rb +460 -925
  39. data/lib/rdf/vocab/identifiers.rb +212 -515
  40. data/lib/rdf/vocab/iiif.rb +81 -220
  41. data/lib/rdf/vocab/jsonld.rb +130 -272
  42. data/lib/rdf/vocab/ldp.rb +161 -294
  43. data/lib/rdf/vocab/lrmi.rb +146 -234
  44. data/lib/rdf/vocab/ma.rb +233 -623
  45. data/lib/rdf/vocab/mads.rb +516 -1113
  46. data/lib/rdf/vocab/marcrelators.rb +539 -1351
  47. data/lib/rdf/vocab/mo.rb +1383 -2305
  48. data/lib/rdf/vocab/mods.rb +384 -903
  49. data/lib/rdf/vocab/nfo.rb +311 -315
  50. data/lib/rdf/vocab/oa.rb +196 -474
  51. data/lib/rdf/vocab/og.rb +158 -239
  52. data/lib/rdf/vocab/ogc.rb +25 -62
  53. data/lib/rdf/vocab/ore.rb +51 -110
  54. data/lib/rdf/vocab/org.rb +180 -376
  55. data/lib/rdf/vocab/pcdm.rb +50 -100
  56. data/lib/rdf/vocab/pplan.rb +16 -24
  57. data/lib/rdf/vocab/premis.rb +674 -1825
  58. data/lib/rdf/vocab/premiseventtype.rb +114 -272
  59. data/lib/rdf/vocab/prov.rb +996 -1618
  60. data/lib/rdf/vocab/ptr.rb +77 -218
  61. data/lib/rdf/vocab/rdau.rb +10516 -0
  62. data/lib/rdf/vocab/rightsstatements.rb +90 -98
  63. data/lib/rdf/vocab/rsa.rb +37 -89
  64. data/lib/rdf/vocab/rss.rb +24 -69
  65. data/lib/rdf/vocab/schema.rb +9677 -18984
  66. data/lib/rdf/vocab/schemas.rb +9677 -18984
  67. data/lib/rdf/vocab/sd.rb +85 -242
  68. data/lib/rdf/vocab/sh.rb +729 -1468
  69. data/lib/rdf/vocab/sioc.rb +416 -820
  70. data/lib/rdf/vocab/siocservices.rb +31 -72
  71. data/lib/rdf/vocab/sioctypes.rb +145 -306
  72. data/lib/rdf/vocab/skos.rb +95 -217
  73. data/lib/rdf/vocab/skosxl.rb +26 -59
  74. data/lib/rdf/vocab/v.rb +199 -493
  75. data/lib/rdf/vocab/vcard.rb +290 -920
  76. data/lib/rdf/vocab/vmd.rb +199 -493
  77. data/lib/rdf/vocab/void.rb +86 -210
  78. data/lib/rdf/vocab/vs.rb +16 -38
  79. data/lib/rdf/vocab/wdrs.rb +43 -136
  80. data/lib/rdf/vocab/wot.rb +95 -176
  81. data/lib/rdf/vocab/xhtml.rb +2 -7
  82. data/lib/rdf/vocab/xhv.rb +122 -463
  83. data/lib/rdf/vocab/xkos.rb +116 -269
  84. data/spec/extensions_spec.rb +1 -1
  85. data/spec/spec_helper.rb +13 -0
  86. metadata +68 -21
@@ -1,2062 +1,2656 @@
1
1
  # -*- encoding: utf-8 -*-
2
2
  # frozen_string_literal: true
3
- # This file generated automatically using rdf vocabulary format from http://bibframe.org/vocab/
3
+ # This file generated automatically using rdf vocabulary format from http://id.loc.gov/ontologies/bibframe/
4
4
  require 'rdf'
5
5
  module RDF::Vocab
6
- # @!parse
7
- # # Vocabulary for <http://bibframe.org/vocab/>
8
- # class Bibframe < RDF::StrictVocabulary
9
- # end
10
- Bibframe = Class.new(RDF::StrictVocabulary("http://bibframe.org/vocab/")) do
6
+ Bibframe = Class.new(RDF::StrictVocabulary("http://id.loc.gov/ontologies/bibframe/")) do
7
+
11
8
  # Ontology definition
12
- ontology :"http://bibframe.org/vocab/",
13
- "dc:modified": "2014-12-10T20:23:05.638677Z".freeze,
14
- "owl:versionInfo": "Initially automatically generated.".freeze,
15
- type: "owl:Ontology".freeze
9
+ ontology :"http://id.loc.gov/ontologies/bibframe/",
10
+ "http://creativecommons.org/ns#license": "https://creativecommons.org/publicdomain/zero/1.0/".freeze,
11
+ "http://purl.org/dc/terms/creator": "".freeze,
12
+ "http://purl.org/dc/terms/description": "The Bibframe vocabulary consists of RDF classes and properties used for the description of \r\n items cataloged principally by libraries, but may also be used to describe items cataloged by museums and archives. \r\n Classes include the three core classes - Work, Instance, and Item - in addition to many more \r\n classes to support description. Properties describe characteristics of the resource being \r\n described as well as relationships among resources. For example: one Work\r\n might be a \"translation of\" another Work; an Instance may be an \r\n \"instance of\" a particular Bibframe Work. Other properties describe attributes of Works and Instances. For\r\n example: the Bibframe property \"subject\" expresses an important attribute of a Work \r\n (what the Work is about), and the property \"extent\" (e.g. number of pages) expresses an\r\n attribute of an Instance.".freeze,
13
+ "http://purl.org/dc/terms/issued": "2021-06-10T12:00:00.000-05:00".freeze,
14
+ "http://purl.org/dc/terms/modified": "2021-06-24T13:27:14.395-04:00".freeze,
15
+ "http://purl.org/dc/terms/publisher": "".freeze,
16
+ "http://purl.org/dc/terms/rights": "https://creativecommons.org/publicdomain/zero/1.0/".freeze,
17
+ "http://www.w3.org/2002/07/owl#priorVersion": "http://id.loc.gov/ontologies/bibframe-2-0-1/".freeze,
18
+ "http://www.w3.org/2002/07/owl#versionIRI": "http://id.loc.gov/ontologies/bibframe-2-1-0/".freeze,
19
+ "http://www.w3.org/2002/07/owl#versionInfo": "2.1.0".freeze,
20
+ label: "BIBFRAME vocabulary".freeze,
21
+ type: "http://www.w3.org/2002/07/owl#Ontology".freeze
16
22
 
17
23
  # Class definitions
24
+ term :AbbreviatedTitle,
25
+ definition: "Title as abbreviated for citation, indexing, and/or identification.".freeze,
26
+ "http://purl.org/dc/terms/modified": "2016-04-21 (New)".freeze,
27
+ label: "Abbreviated title".freeze,
28
+ subClassOf: "http://id.loc.gov/ontologies/bibframe/VariantTitle".freeze,
29
+ type: "http://www.w3.org/2002/07/owl#Class".freeze
30
+ term :AccessPolicy,
31
+ definition: "Access restrictions and allowances regarding access to a resource, e.g., lending policy, access restrictions, embargos.".freeze,
32
+ "http://purl.org/dc/terms/modified": "2016-04-21 (New)".freeze,
33
+ label: "Access policy".freeze,
34
+ subClassOf: "http://id.loc.gov/ontologies/bibframe/UsageAndAccessPolicy".freeze,
35
+ type: "http://www.w3.org/2002/07/owl#Class".freeze
36
+ term :AccessionNumber,
37
+ definition: "Accession Number".freeze,
38
+ "http://purl.org/dc/terms/modified": "2021-06-09 (New [GH11])".freeze,
39
+ label: "Accession number".freeze,
40
+ subClassOf: "http://id.loc.gov/ontologies/bibframe/Identifier".freeze,
41
+ type: "http://www.w3.org/2002/07/owl#Class".freeze
42
+ term :AcquisitionSource,
43
+ definition: "Information about an organization, person, etc., from which a resource may be obtained.".freeze,
44
+ "http://purl.org/dc/terms/modified": "2017-02-06 (New)".freeze,
45
+ label: "Acquisition source".freeze,
46
+ type: "http://www.w3.org/2002/07/owl#Class".freeze
47
+ term :AdminMetadata,
48
+ definition: "Metadata about the metadata, especially provenance information.".freeze,
49
+ "http://purl.org/dc/terms/modified": "2016-04-21 (New)".freeze,
50
+ label: "Administrative metadata".freeze,
51
+ type: "http://www.w3.org/2002/07/owl#Class".freeze
18
52
  term :Agent,
19
- comment: %(Entity having a role in a resource \(Person, Organization, etc.\).).freeze,
53
+ definition: "Entity having a role in a resource, such as a person or organization.".freeze,
54
+ "http://purl.org/dc/terms/modified": ["2016-04-21 (New)".freeze, "2016-05-13 (New subclass)".freeze],
20
55
  label: "Agent".freeze,
21
- subClassOf: "bibframe:Authority".freeze,
22
- type: "rdfs:Class".freeze
23
- term :Annotation,
24
- comment: %(Resource that asserts additional information about other BIBFRAME resource.).freeze,
25
- label: "Annotation".freeze,
26
- subClassOf: "bibframe:Resource".freeze,
27
- type: "rdfs:Class".freeze
56
+ subClassOf: "http://xmlns.com/foaf/0.1/Agent".freeze,
57
+ type: "http://www.w3.org/2002/07/owl#Class".freeze
58
+ term :Ansi,
59
+ definition: "American National Standards Institute identifier.".freeze,
60
+ "http://purl.org/dc/terms/modified": "2016-04-21 (New)".freeze,
61
+ label: "ANSI number".freeze,
62
+ subClassOf: "http://id.loc.gov/ontologies/bibframe/Identifier".freeze,
63
+ type: "http://www.w3.org/2002/07/owl#Class".freeze
64
+ term :AppliedMaterial,
65
+ definition: "Physical or chemical substance applied to a base material of a resource.".freeze,
66
+ "http://purl.org/dc/terms/modified": ["2016-04-21 (New)".freeze, "2021-06-09 (Changed subclass to Material [GH28])".freeze],
67
+ label: "Applied material".freeze,
68
+ subClassOf: "http://id.loc.gov/ontologies/bibframe/Material".freeze,
69
+ type: "http://www.w3.org/2002/07/owl#Class".freeze
28
70
  term :Archival,
29
- 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,
30
- "dc:modified": "2014-10-28 (Updated)".freeze,
71
+ definition: "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,
72
+ "http://purl.org/dc/terms/modified": "2016-04-21 (New)".freeze,
31
73
  label: "Archival controlled".freeze,
32
- subClassOf: "bibframe:Instance".freeze,
33
- type: "rdfs:Class".freeze
74
+ subClassOf: "http://id.loc.gov/ontologies/bibframe/Instance".freeze,
75
+ type: "http://www.w3.org/2002/07/owl#Class".freeze
34
76
  term :Arrangement,
35
- 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,
36
- label: "Organization of materials information".freeze,
37
- subClassOf: "bibframe:Resource".freeze,
38
- type: "rdfs:Class".freeze
77
+ definition: "Resource that represents an arrangement of another resource.".freeze,
78
+ "http://purl.org/dc/terms/modified": ["2016-04-21 (New)".freeze, "2021-06-09 (Redefined [GH77])".freeze],
79
+ label: "Arrangement".freeze,
80
+ subClassOf: "http://id.loc.gov/ontologies/bibframe/Work".freeze,
81
+ type: "http://www.w3.org/2002/07/owl#Class".freeze
82
+ term :AspectRatio,
83
+ definition: "Proportional relationship between an image's width and its height.".freeze,
84
+ "http://purl.org/dc/terms/modified": "2016-04-21 (New)".freeze,
85
+ label: "Aspect ratio".freeze,
86
+ type: "http://www.w3.org/2002/07/owl#Class".freeze
39
87
  term :Audio,
40
- comment: %(Resources expressed in an audible form, including music or other sounds.).freeze,
88
+ definition: "Resources expressed in an audible form, including music or other sounds.".freeze,
89
+ "http://purl.org/dc/terms/modified": "2016-04-21 (New)".freeze,
41
90
  label: "Audio".freeze,
42
- subClassOf: "bibframe:Work".freeze,
43
- type: "rdfs:Class".freeze
44
- term :Authority,
45
- comment: %(Representation of a key concept or thing. Works and Instances, for example, have defined relationships to these concepts and things.).freeze,
46
- label: "Authority".freeze,
47
- subClassOf: "bibframe:Resource".freeze,
48
- type: "rdfs:Class".freeze
91
+ subClassOf: "http://id.loc.gov/ontologies/bibframe/Work".freeze,
92
+ type: "http://www.w3.org/2002/07/owl#Class".freeze
93
+ term :AudioIssueNumber,
94
+ definition: "Number assigned by publishers of sound recordings to identify the issue designation, or serial identification, of the resource.".freeze,
95
+ "http://purl.org/dc/terms/modified": ["2016-04-21 (New)".freeze, "2017-02-03 (Revised property name and definition)".freeze],
96
+ label: "Audio issue number".freeze,
97
+ subClassOf: "http://id.loc.gov/ontologies/bibframe/Identifier".freeze,
98
+ type: "http://www.w3.org/2002/07/owl#Class".freeze
99
+ term :AudioTake,
100
+ definition: "Identifier assigned to the smallest identifiable unit of a recording session, e.g., a specific recording of an individual song.".freeze,
101
+ "http://purl.org/dc/terms/modified": "2017-02-03 (New)".freeze,
102
+ label: "Audio recording take".freeze,
103
+ subClassOf: "http://id.loc.gov/ontologies/bibframe/Identifier".freeze,
104
+ type: "http://www.w3.org/2002/07/owl#Class".freeze
105
+ term :Barcode,
106
+ definition: "Optical machine-readable representation of data relating to the item to which it is attached.".freeze,
107
+ "http://purl.org/dc/terms/modified": ["2016-04-21 (New)".freeze, "2017-02-03 (Moved to Identifier class group from Item group)".freeze],
108
+ label: "Barcode".freeze,
109
+ subClassOf: "http://id.loc.gov/ontologies/bibframe/Identifier".freeze,
110
+ type: "http://www.w3.org/2002/07/owl#Class".freeze
111
+ term :BaseMaterial,
112
+ definition: "Underlying physical material of a resource.".freeze,
113
+ "http://purl.org/dc/terms/modified": ["2016-04-21 (New)".freeze, "2021-06-09 (Changed subclass to Material [GH28])".freeze],
114
+ label: "Base material".freeze,
115
+ subClassOf: "http://id.loc.gov/ontologies/bibframe/Material".freeze,
116
+ type: "http://www.w3.org/2002/07/owl#Class".freeze
117
+ term :BookFormat,
118
+ definition: "Result of folding a printed sheet to form a gathering of leaves.".freeze,
119
+ "http://purl.org/dc/terms/modified": "2016-04-21 (New)".freeze,
120
+ label: "Book format".freeze,
121
+ type: "http://www.w3.org/2002/07/owl#Class".freeze
122
+ term :BroadcastStandard,
123
+ definition: "System used to format a video resource for television broadcast, e.g., HDTV, PAL.".freeze,
124
+ "http://purl.org/dc/terms/modified": "2016-04-21 (New)".freeze,
125
+ label: "Broadcast standard".freeze,
126
+ subClassOf: "http://id.loc.gov/ontologies/bibframe/VideoCharacteristic".freeze,
127
+ type: "http://www.w3.org/2002/07/owl#Class".freeze
128
+ term :Capture,
129
+ definition: "Information about place and date associated with the capture (i.e., recording, filming, etc.) of the content of a resource.".freeze,
130
+ "http://purl.org/dc/terms/modified": "2016-04-21 (New)".freeze,
131
+ label: "Capture of content".freeze,
132
+ type: "http://www.w3.org/2002/07/owl#Class".freeze
133
+ term :Carrier,
134
+ definition: "Categorization reflecting the format of the storage medium and housing of a carrier.".freeze,
135
+ "http://purl.org/dc/terms/modified": "2016-04-21 (New)".freeze,
136
+ label: "Carrier type".freeze,
137
+ type: "http://www.w3.org/2002/07/owl#Class".freeze
138
+ term :Cartographic,
139
+ definition: "Content that represents the whole or part of the earth, any celestial body, or imaginary place at any scale.".freeze,
140
+ "http://purl.org/dc/terms/modified": "2016-04-21 (New)".freeze,
141
+ label: "Cartographic information".freeze,
142
+ type: "http://www.w3.org/2002/07/owl#Class".freeze
143
+ term :CartographicDataType,
144
+ definition: "Data type for encoding of geospatial information in a cartographic resource, e.g., raster, vector, point.".freeze,
145
+ "http://purl.org/dc/terms/modified": "2016-04-21 (New)".freeze,
146
+ label: "Digital cartographic data type".freeze,
147
+ subClassOf: "http://id.loc.gov/ontologies/bibframe/DigitalCharacteristic".freeze,
148
+ type: "http://www.w3.org/2002/07/owl#Class".freeze
149
+ term :CartographicObjectType,
150
+ definition: "Object type for encoding of geospatial information in a cartographic resource, e.g., point, line, polygon.".freeze,
151
+ "http://purl.org/dc/terms/modified": "2016-04-21 (New)".freeze,
152
+ label: "Digital cartographic object type".freeze,
153
+ subClassOf: "http://id.loc.gov/ontologies/bibframe/DigitalCharacteristic".freeze,
154
+ type: "http://www.w3.org/2002/07/owl#Class".freeze
49
155
  term :Cartography,
50
- comment: %(Resource that show spatial information, including maps, atlases, globes,digital maps, and other cartographic items.).freeze,
156
+ definition: "Resource that shows spatial information, including maps, atlases, globes, digital, and other cartographic resources.".freeze,
157
+ "http://purl.org/dc/terms/modified": "2016-04-25 (fixed typo in definition)".freeze,
51
158
  label: "Cartography".freeze,
52
- subClassOf: "bibframe:Work".freeze,
53
- type: "rdfs:Class".freeze
54
- term :Category,
55
- comment: %(Generic list of values information.).freeze,
56
- "dc:modified": "2014-03-21 (Definition Updated)".freeze,
57
- label: "Category".freeze,
58
- subClassOf: "bibframe:Resource".freeze,
59
- type: "rdfs:Class".freeze
159
+ subClassOf: "http://id.loc.gov/ontologies/bibframe/Work".freeze,
160
+ type: "http://www.w3.org/2002/07/owl#Class".freeze
161
+ term :Chronology,
162
+ definition: "Dates associated with issues or items held.".freeze,
163
+ "http://purl.org/dc/terms/modified": "2016-04-21 (New)".freeze,
164
+ label: "Chronology".freeze,
165
+ subClassOf: "http://id.loc.gov/ontologies/bibframe/EnumerationAndChronology".freeze,
166
+ type: "http://www.w3.org/2002/07/owl#Class".freeze
60
167
  term :Classification,
61
- comment: %(System of coding, assorting and organizing materials according to their subject.).freeze,
62
- label: "Classification Entity".freeze,
63
- subClassOf: "bibframe:Resource".freeze,
64
- type: "rdfs:Class".freeze
168
+ definition: "System of coding and organizing materials according to their subject.".freeze,
169
+ editorialNote: "Any entry from the Classification Schemes vocabulary at ID may be used; all have been defined as a bf:Classification".freeze,
170
+ "http://purl.org/dc/terms/modified": ["2016-04-21 (New)".freeze, "2021-06-09 (Added editorial note [GH55])".freeze],
171
+ label: "Classification entity".freeze,
172
+ type: "http://www.w3.org/2002/07/owl#Class".freeze
173
+ term :ClassificationDdc,
174
+ definition: "Dewey Decimal Classification number used for subject access.".freeze,
175
+ "http://purl.org/dc/terms/modified": "2016-04-21 (New)".freeze,
176
+ label: "DDC Classification".freeze,
177
+ subClassOf: "http://id.loc.gov/ontologies/bibframe/Classification".freeze,
178
+ type: "http://www.w3.org/2002/07/owl#Class".freeze
179
+ term :ClassificationLcc,
180
+ definition: "Library of Congress Classification number used for subject access.".freeze,
181
+ "http://purl.org/dc/terms/modified": "2016-04-21 (New)".freeze,
182
+ label: "LCC Classification".freeze,
183
+ subClassOf: "http://id.loc.gov/ontologies/bibframe/Classification".freeze,
184
+ type: "http://www.w3.org/2002/07/owl#Class".freeze
185
+ term :ClassificationNlm,
186
+ definition: "National Library of Medicine Classification number used for subject access".freeze,
187
+ "http://purl.org/dc/terms/modified": "2016-04-21 (New)".freeze,
188
+ label: "NLM classification".freeze,
189
+ subClassOf: "http://id.loc.gov/ontologies/bibframe/Classification".freeze,
190
+ type: "http://www.w3.org/2002/07/owl#Class".freeze
191
+ term :ClassificationUdc,
192
+ definition: "Universal Decimal Classification number used for subject access.".freeze,
193
+ "http://purl.org/dc/terms/modified": "2016-04-21 (New)".freeze,
194
+ label: "UDC Classification".freeze,
195
+ subClassOf: "http://id.loc.gov/ontologies/bibframe/Classification".freeze,
196
+ type: "http://www.w3.org/2002/07/owl#Class".freeze
197
+ term :Coden,
198
+ definition: "Identifier for scientific and technical periodical titles assigned by the International CODEN Section of Chemical Abstracts Service.".freeze,
199
+ "http://purl.org/dc/terms/modified": "2016-04-21 (New)".freeze,
200
+ label: "CODEN".freeze,
201
+ subClassOf: "http://id.loc.gov/ontologies/bibframe/Identifier".freeze,
202
+ type: "http://www.w3.org/2002/07/owl#Class".freeze
65
203
  term :Collection,
66
- comment: %(Aggregation of resources, generally gathered together artificially.).freeze,
204
+ definition: "Aggregation of resources, generally gathered together artificially.".freeze,
205
+ "http://purl.org/dc/terms/modified": "2016-04-21 (New)".freeze,
67
206
  label: "Collection".freeze,
68
- subClassOf: "bibframe:Instance".freeze,
69
- type: "rdfs:Class".freeze
207
+ type: "http://www.w3.org/2002/07/owl#Class".freeze
208
+ term :CollectionArrangement,
209
+ definition: "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,
210
+ "http://purl.org/dc/terms/modified": "2021-06-09 (New [GH77])".freeze,
211
+ label: "Organization of materials information".freeze,
212
+ type: "http://www.w3.org/2002/07/owl#Class".freeze
213
+ term :CollectiveTitle,
214
+ definition: "Title for a compilation of resources.".freeze,
215
+ "http://purl.org/dc/terms/modified": "2016-04-21 (New)".freeze,
216
+ label: "Collective title".freeze,
217
+ subClassOf: "http://id.loc.gov/ontologies/bibframe/VariantTitle".freeze,
218
+ type: "http://www.w3.org/2002/07/owl#Class".freeze
219
+ term :ColorContent,
220
+ definition: "Color characteristics of a resource, e.g., black and white, multicolored, etc.".freeze,
221
+ "http://purl.org/dc/terms/modified": "2016-04-21 (New)".freeze,
222
+ label: "Color content".freeze,
223
+ type: "http://www.w3.org/2002/07/owl#Class".freeze
224
+ term :Content,
225
+ definition: "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,
226
+ "http://purl.org/dc/terms/modified": "2016-04-21 (New)".freeze,
227
+ label: "Content type".freeze,
228
+ type: "http://www.w3.org/2002/07/owl#Class".freeze
229
+ term :ContentAccessibility,
230
+ definition: "Information that assists those with a sensory impairment for greater understanding of content, e.g., captions.".freeze,
231
+ "http://purl.org/dc/terms/modified": "2017-02-07 (New)".freeze,
232
+ label: "Content accessibility information".freeze,
233
+ type: "http://www.w3.org/2002/07/owl#Class".freeze
234
+ term :Contribution,
235
+ definition: "Agent and role with respect to the resource being described.".freeze,
236
+ "http://purl.org/dc/terms/modified": "2016-04-21 (New)".freeze,
237
+ label: "Contribution".freeze,
238
+ type: "http://www.w3.org/2002/07/owl#Class".freeze
239
+ term :CopyrightNumber,
240
+ definition: "Identifier assigned to a copyright registration or legal deposit.".freeze,
241
+ "http://purl.org/dc/terms/modified": "2016-04-21 (New)".freeze,
242
+ label: "Copyright-legal deposit number".freeze,
243
+ subClassOf: "http://id.loc.gov/ontologies/bibframe/Identifier".freeze,
244
+ type: "http://www.w3.org/2002/07/owl#Class".freeze
245
+ term :CopyrightRegistration,
246
+ definition: "Copyright or Legal Deposit registration information".freeze,
247
+ "http://purl.org/dc/terms/modified": ["2016-04-21 (New)".freeze, "2016-05-04 (Class name corrected)".freeze],
248
+ label: "Copyright registration".freeze,
249
+ type: "http://www.w3.org/2002/07/owl#Class".freeze
70
250
  term :CoverArt,
71
- comment: %(Link to a cover illustration of an instance.).freeze,
72
- label: "Cover Art Annotation".freeze,
73
- subClassOf: "bibframe:Annotation".freeze,
74
- type: "rdfs:Class".freeze
251
+ definition: "Cover illustration of a resource.".freeze,
252
+ "http://purl.org/dc/terms/modified": "2016-04-21 (New)".freeze,
253
+ label: "Cover art".freeze,
254
+ type: "http://www.w3.org/2002/07/owl#Class".freeze
75
255
  term :Dataset,
76
- 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,
256
+ definition: "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,
257
+ "http://purl.org/dc/terms/modified": "2016-04-21 (New)".freeze,
77
258
  label: "Dataset".freeze,
78
- subClassOf: "bibframe:Work".freeze,
79
- type: "rdfs:Class".freeze
80
- term :DescriptionAdminInfo,
81
- comment: %(Administrative metadata associated with the graph.).freeze,
82
- "dc:modified": "2014-03-21 (Definition Updated)".freeze,
83
- label: "Administrative metadata".freeze,
84
- subClassOf: "bibframe:Resource".freeze,
85
- type: "rdfs:Class".freeze
259
+ subClassOf: "http://id.loc.gov/ontologies/bibframe/Work".freeze,
260
+ type: "http://www.w3.org/2002/07/owl#Class".freeze
261
+ term :DescriptionAuthentication,
262
+ definition: "Indication of specific types of reviews that have been carried out on the description information.".freeze,
263
+ "http://purl.org/dc/terms/modified": ["2016-04-21 (New)".freeze, "2016-04-29 (fixed class name)".freeze],
264
+ label: "Metadata authentication".freeze,
265
+ subClassOf: "http://id.loc.gov/ontologies/bibframe/AdminMetadata".freeze,
266
+ type: "http://www.w3.org/2002/07/owl#Class".freeze
267
+ term :DescriptionConventions,
268
+ definition: "Rules used for the descriptive content of the resource description.".freeze,
269
+ "http://purl.org/dc/terms/modified": ["2016-04-21 (New)".freeze, "2016-04-24 (fixed class name)".freeze],
270
+ label: "Description conventions".freeze,
271
+ subClassOf: "http://id.loc.gov/ontologies/bibframe/AdminMetadata".freeze,
272
+ type: "http://www.w3.org/2002/07/owl#Class".freeze
273
+ term :DigitalCharacteristic,
274
+ definition: "Technical specification relating to the digital encoding of text, image, audio, video, and other types of data in a resource.".freeze,
275
+ "http://purl.org/dc/terms/modified": "2016-04-21 (New)".freeze,
276
+ label: "Digital characteristic".freeze,
277
+ type: "http://www.w3.org/2002/07/owl#Class".freeze
278
+ term :Dissertation,
279
+ definition: "Information about a work presented as part of the formal requirements for an academic degree.".freeze,
280
+ "http://purl.org/dc/terms/modified": "2016-04-21 (New)".freeze,
281
+ label: "Dissertation information".freeze,
282
+ type: "http://www.w3.org/2002/07/owl#Class".freeze
283
+ term :DissertationIdentifier,
284
+ definition: "Identifier assigned to a thesis or dissertation for identification purposes .".freeze,
285
+ "http://purl.org/dc/terms/modified": "2016-04-21 (New)".freeze,
286
+ label: "Dissertation Identifier".freeze,
287
+ subClassOf: "http://id.loc.gov/ontologies/bibframe/Identifier".freeze,
288
+ type: "http://www.w3.org/2002/07/owl#Class".freeze
289
+ term :Distribution,
290
+ definition: "Information relating to distribution of a resource.".freeze,
291
+ "http://purl.org/dc/terms/modified": "2016-04-21 (New)".freeze,
292
+ label: "Distributor".freeze,
293
+ subClassOf: "http://id.loc.gov/ontologies/bibframe/ProvisionActivity".freeze,
294
+ type: "http://www.w3.org/2002/07/owl#Class".freeze
295
+ term :Doi,
296
+ definition: "Digital Object Identifier.".freeze,
297
+ "http://purl.org/dc/terms/modified": "2016-04-21 (New)".freeze,
298
+ label: "DOI".freeze,
299
+ subClassOf: "http://id.loc.gov/ontologies/bibframe/Identifier".freeze,
300
+ type: "http://www.w3.org/2002/07/owl#Class".freeze
301
+ term :Ean,
302
+ definition: "International Article Identifier.".freeze,
303
+ "http://purl.org/dc/terms/modified": "2016-04-21 (New)".freeze,
304
+ label: "EAN".freeze,
305
+ subClassOf: "http://id.loc.gov/ontologies/bibframe/Identifier".freeze,
306
+ type: "http://www.w3.org/2002/07/owl#Class".freeze
307
+ term :Eidr,
308
+ definition: "Entertainment Identifier Registry".freeze,
309
+ "http://purl.org/dc/terms/modified": "2021-06-09 (New [GH78])".freeze,
310
+ label: "EIDR".freeze,
311
+ subClassOf: "http://id.loc.gov/ontologies/bibframe/Identifier".freeze,
312
+ type: "http://www.w3.org/2002/07/owl#Class".freeze
86
313
  term :Electronic,
87
- comment: %(Resource that is intended for manipulation by a computer, residing in a carrier accessed either directly or remotely.).freeze,
88
- "dc:modified": "2014-10-28 (Updated)".freeze,
314
+ definition: "Resource that is intended for manipulation by a computer, accessed either directly or remotely.".freeze,
315
+ "http://purl.org/dc/terms/modified": "2016-04-21 (New)".freeze,
89
316
  label: "Electronic".freeze,
90
- subClassOf: "bibframe:Instance".freeze,
91
- type: "rdfs:Class".freeze
317
+ subClassOf: "http://id.loc.gov/ontologies/bibframe/Instance".freeze,
318
+ type: "http://www.w3.org/2002/07/owl#Class".freeze
319
+ term :Emulsion,
320
+ definition: "Suspension of light-sensitive chemicals used as a coating on a microfilm or microfiche, e.g., silver halide.".freeze,
321
+ "http://purl.org/dc/terms/modified": "2016-04-21 (New)".freeze,
322
+ label: "Emulsion".freeze,
323
+ type: "http://www.w3.org/2002/07/owl#Class".freeze
324
+ term :EncodedBitrate,
325
+ definition: "Speed at which streaming audio, video, etc., is designed to play, e.g., 32 kbps.".freeze,
326
+ "http://purl.org/dc/terms/modified": "2016-04-21 (New)".freeze,
327
+ label: "Encoded bitrate".freeze,
328
+ subClassOf: "http://id.loc.gov/ontologies/bibframe/DigitalCharacteristic".freeze,
329
+ type: "http://www.w3.org/2002/07/owl#Class".freeze
330
+ term :EncodingFormat,
331
+ definition: "Schema, standard, etc., used to encode the digital content of a resource, e.g., MP3, XML, JPEG.".freeze,
332
+ "http://purl.org/dc/terms/modified": "2016-04-21 (New)".freeze,
333
+ label: "Encoding format".freeze,
334
+ subClassOf: "http://id.loc.gov/ontologies/bibframe/DigitalCharacteristic".freeze,
335
+ type: "http://www.w3.org/2002/07/owl#Class".freeze
336
+ term :Ensemble,
337
+ definition: "Ensemble".freeze,
338
+ "http://purl.org/dc/terms/modified": "2021-06-09 (New [GH56])".freeze,
339
+ label: "Ensemble".freeze,
340
+ type: "http://www.w3.org/2002/07/owl#Class".freeze
341
+ term :Enumeration,
342
+ definition: "Numbering or other enumeration associated with issues or items held.".freeze,
343
+ "http://purl.org/dc/terms/modified": "2016-04-21 (New)".freeze,
344
+ label: "Enumeration".freeze,
345
+ subClassOf: "http://id.loc.gov/ontologies/bibframe/EnumerationAndChronology".freeze,
346
+ type: "http://www.w3.org/2002/07/owl#Class".freeze
347
+ term :EnumerationAndChronology,
348
+ definition: "Numbering or other enumeration and dates associated with issues or items held.".freeze,
349
+ "http://purl.org/dc/terms/modified": "2016-04-21 (New)".freeze,
350
+ label: "Enumeration and chronology".freeze,
351
+ type: "http://www.w3.org/2002/07/owl#Class".freeze
92
352
  term :Event,
93
- comment: %(Time or place of an event.).freeze,
94
- "dc:modified": "2014-03-21 (Definition Updated)".freeze,
95
- label: "Event Entity".freeze,
96
- subClassOf: "bibframe:Resource".freeze,
97
- type: "rdfs:Class".freeze
353
+ definition: "Something that happens at a certain time and location, such as a performance, speech, or athletic event.".freeze,
354
+ "http://purl.org/dc/terms/modified": ["2016-04-21 (New)".freeze, "2021-06-09 (Broaden definition [GH12])".freeze],
355
+ label: "Event entity".freeze,
356
+ type: "http://www.w3.org/2002/07/owl#Class".freeze
357
+ term :Extent,
358
+ definition: "Number and type of units and/or subunits making up a resource.".freeze,
359
+ "http://purl.org/dc/terms/modified": "2016-04-21 (New)".freeze,
360
+ label: "Extent".freeze,
361
+ type: "http://www.w3.org/2002/07/owl#Class".freeze
98
362
  term :Family,
99
- 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,
363
+ definition: "Two or more persons related by birth, marriage, adoption, civil union, or similar legal status, or who otherwise present themselves as a family.".freeze,
364
+ "http://purl.org/dc/terms/modified": "2016-04-21 (New)".freeze,
100
365
  label: "Family".freeze,
101
- subClassOf: "bibframe:Agent".freeze,
102
- type: "rdfs:Class".freeze
103
- term :HeldItem,
104
- comment: %(Item holding information.).freeze,
105
- "dc:modified": "2014-03-21 (Label Updated)".freeze,
106
- label: "Item held".freeze,
107
- subClassOf: "bibframe:HeldMaterial".freeze,
108
- type: "rdfs:Class".freeze
109
- term :HeldMaterial,
110
- comment: %(Summary holdings information.).freeze,
111
- "dc:modified": "2014-03-21 (Label Updated)".freeze,
112
- label: "Material held".freeze,
113
- subClassOf: "bibframe:Annotation".freeze,
114
- type: "rdfs:Class".freeze
366
+ subClassOf: "http://id.loc.gov/ontologies/bibframe/Agent".freeze,
367
+ type: "http://www.w3.org/2002/07/owl#Class".freeze
368
+ term :FileSize,
369
+ definition: "Number of bytes in a digital file, e.g., 162 KB.".freeze,
370
+ "http://purl.org/dc/terms/modified": "2016-04-21 (New)".freeze,
371
+ label: "File size".freeze,
372
+ subClassOf: "http://id.loc.gov/ontologies/bibframe/DigitalCharacteristic".freeze,
373
+ type: "http://www.w3.org/2002/07/owl#Class".freeze
374
+ term :FileType,
375
+ definition: "General type of data content encoded in a computer file, e.g., text file, audio file.".freeze,
376
+ "http://purl.org/dc/terms/modified": "2016-04-21 (New)".freeze,
377
+ label: "File type".freeze,
378
+ subClassOf: "http://id.loc.gov/ontologies/bibframe/DigitalCharacteristic".freeze,
379
+ type: "http://www.w3.org/2002/07/owl#Class".freeze
380
+ term :Fingerprint,
381
+ definition: "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,
382
+ "http://purl.org/dc/terms/modified": "2016-04-21 (New)".freeze,
383
+ label: "Fingerprint identifier".freeze,
384
+ subClassOf: "http://id.loc.gov/ontologies/bibframe/Identifier".freeze,
385
+ type: "http://www.w3.org/2002/07/owl#Class".freeze
386
+ term :FontSize,
387
+ definition: "Size of the type used to represent the characters and symbols in a resource.".freeze,
388
+ "http://purl.org/dc/terms/modified": "2016-04-21 (New)".freeze,
389
+ label: "Font size".freeze,
390
+ type: "http://www.w3.org/2002/07/owl#Class".freeze
391
+ term :Frequency,
392
+ definition: "Information about intervals at which the parts of a serially produced resource or the updates to an integrating resource are issued.".freeze,
393
+ "http://purl.org/dc/terms/modified": "2016-04-21 (New)".freeze,
394
+ label: "Frequency".freeze,
395
+ type: "http://www.w3.org/2002/07/owl#Class".freeze
396
+ term :Generation,
397
+ definition: "Relationship between an original carrier and the carrier of a reproduction made from the original.".freeze,
398
+ "http://purl.org/dc/terms/modified": "2016-04-21 (New)".freeze,
399
+ label: "Generation".freeze,
400
+ type: "http://www.w3.org/2002/07/owl#Class".freeze
401
+ term :GenerationProcess,
402
+ definition: "Indication of the program or process used to generate the description by application of a particular transformation.".freeze,
403
+ "http://purl.org/dc/terms/modified": ["2016-04-21 (New)".freeze, "2016-04-24 (fixed class name)".freeze],
404
+ label: "Generation process".freeze,
405
+ subClassOf: "http://id.loc.gov/ontologies/bibframe/AdminMetadata".freeze,
406
+ type: "http://www.w3.org/2002/07/owl#Class".freeze
407
+ term :GenreForm,
408
+ definition: "Form category or genre to which a resource belongs.".freeze,
409
+ "http://purl.org/dc/terms/modified": ["2016-04-21 (New)".freeze, "2021-06-09 (Broaden definition [GH17])".freeze],
410
+ label: "Genre/form".freeze,
411
+ type: "http://www.w3.org/2002/07/owl#Class".freeze
412
+ term :GeographicCoverage,
413
+ definition: "Geographic coverage of the content of the resource.".freeze,
414
+ "http://purl.org/dc/terms/modified": "2017-02-06 (New)".freeze,
415
+ label: "Geographic coverage".freeze,
416
+ type: "http://www.w3.org/2002/07/owl#Class".freeze
417
+ term :GrooveCharacteristic,
418
+ definition: "Groove width of an analog disc or the groove pitch of an analog cylinder, e.g., coarse groove, microgroove".freeze,
419
+ "http://purl.org/dc/terms/modified": ["2016-04-21 (New)".freeze, "2016-04-26 (fixed typo in definition)".freeze, "2017-02-03 (Fixed name of property)".freeze],
420
+ label: "Groove characteristic".freeze,
421
+ subClassOf: "http://id.loc.gov/ontologies/bibframe/SoundCharacteristic".freeze,
422
+ type: "http://www.w3.org/2002/07/owl#Class".freeze
423
+ term :Gtin14Number,
424
+ definition: "14 digit number assigned to identify trade items as various packaging levels. GTIN-14 encompasses EAN/UCC-128 and ITF-14.".freeze,
425
+ "http://purl.org/dc/terms/modified": "2017-02-03 (New)".freeze,
426
+ label: "Global Trade Item Number 14".freeze,
427
+ subClassOf: "http://id.loc.gov/ontologies/bibframe/Identifier".freeze,
428
+ type: "http://www.w3.org/2002/07/owl#Class".freeze
429
+ term :Hdl,
430
+ definition: "Unique and persistent identifier for digital objects developed by the Corporation for National Research Initiatives.".freeze,
431
+ "http://purl.org/dc/terms/modified": "2016-04-21 (New)".freeze,
432
+ label: "Handle".freeze,
433
+ subClassOf: "http://id.loc.gov/ontologies/bibframe/Identifier".freeze,
434
+ type: "http://www.w3.org/2002/07/owl#Class".freeze
435
+ term :Hub,
436
+ definition: "An abstract resource that functions as a bridge between two Works.".freeze,
437
+ "http://purl.org/dc/terms/modified": "2021-06-09 (New [GH75])".freeze,
438
+ label: "Hub".freeze,
439
+ subClassOf: "http://id.loc.gov/ontologies/bibframe/Work".freeze,
440
+ type: "http://www.w3.org/2002/07/owl#Class".freeze
115
441
  term :Identifier,
116
- comment: %(Token or name that is associated with a resource, such as a URI, or an ISBN, etc..).freeze,
442
+ definition: "Token or name that is associated with a resource, such as a URI or an ISBN.".freeze,
443
+ editorialNote: "Any entry from the Standard Identifiers vocabulary at ID may be used; all have been defined as a bf:Identifier".freeze,
444
+ "http://purl.org/dc/terms/modified": ["2016-04-21 (New)".freeze, "2021-06-09 (Added editorial note [GH44])".freeze],
117
445
  label: "Identifier".freeze,
118
- subClassOf: "bibframe:Resource".freeze,
119
- type: "rdfs:Class".freeze
446
+ type: "http://www.w3.org/2002/07/owl#Class".freeze
447
+ term :Illustration,
448
+ definition: "Information about content intended to illustrate a resource.".freeze,
449
+ "http://purl.org/dc/terms/modified": "2016-04-21 (New)".freeze,
450
+ label: "Illustrative content".freeze,
451
+ type: "http://www.w3.org/2002/07/owl#Class".freeze
452
+ term :ImmediateAcquisition,
453
+ definition: "Information about the circumstances, e.g., source, date, method, under which the resource was directly acquired.".freeze,
454
+ "http://purl.org/dc/terms/modified": "2017-02-06 (New)".freeze,
455
+ label: "Immediate acquisition".freeze,
456
+ type: "http://www.w3.org/2002/07/owl#Class".freeze
120
457
  term :Instance,
121
- comment: %(Resource reflecting an individual, material embodiment of the Work.).freeze,
458
+ definition: "Resource reflecting an individual, material embodiment of a Work.".freeze,
459
+ "http://purl.org/dc/terms/modified": "2016-04-21 (New)".freeze,
122
460
  label: "Instance".freeze,
123
- subClassOf: "bibframe:Resource".freeze,
124
- type: "rdfs:Class".freeze
125
- term :Integrating,
126
- 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,
127
- label: "Integrating".freeze,
128
- subClassOf: "bibframe:Instance".freeze,
129
- type: "rdfs:Class".freeze
461
+ type: "http://www.w3.org/2002/07/owl#Class".freeze
130
462
  term :IntendedAudience,
131
- 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,
132
- label: "Intended Audience Information".freeze,
133
- subClassOf: "bibframe:Resource".freeze,
134
- type: "rdfs:Class".freeze
463
+ definition: "Information that identifies the specific intended or target audience or intellectual level for which the content described is considered appropriate. Also used to record interest and motivation levels and special learner characteristics.".freeze,
464
+ "http://purl.org/dc/terms/modified": "2016-04-21 (New)".freeze,
465
+ label: "Intended audience information".freeze,
466
+ type: "http://www.w3.org/2002/07/owl#Class".freeze
467
+ term :Isan,
468
+ definition: "International Standard Audiovisual Number.".freeze,
469
+ "http://purl.org/dc/terms/modified": "2016-04-21 (New)".freeze,
470
+ label: "ISAN".freeze,
471
+ subClassOf: "http://id.loc.gov/ontologies/bibframe/Identifier".freeze,
472
+ type: "http://www.w3.org/2002/07/owl#Class".freeze
473
+ term :Isbn,
474
+ definition: "International Standard Book Number.".freeze,
475
+ "http://purl.org/dc/terms/modified": "2016-04-21 (New)".freeze,
476
+ label: "ISBN".freeze,
477
+ subClassOf: "http://id.loc.gov/ontologies/bibframe/Identifier".freeze,
478
+ type: "http://www.w3.org/2002/07/owl#Class".freeze
479
+ term :Ismn,
480
+ definition: "International Standard Music Number.".freeze,
481
+ "http://purl.org/dc/terms/modified": "2016-04-21 (New)".freeze,
482
+ label: "ISMN".freeze,
483
+ subClassOf: "http://id.loc.gov/ontologies/bibframe/Identifier".freeze,
484
+ type: "http://www.w3.org/2002/07/owl#Class".freeze
485
+ term :Isni,
486
+ definition: "International Standard Name Identifier, a unique, persistent reference number for the identities of contributors to creative works.".freeze,
487
+ "http://purl.org/dc/terms/modified": "2017-02-03 (New)".freeze,
488
+ label: "ISNI".freeze,
489
+ subClassOf: "http://id.loc.gov/ontologies/bibframe/Identifier".freeze,
490
+ type: "http://www.w3.org/2002/07/owl#Class".freeze
491
+ term :Iso,
492
+ definition: "International Organization for Standardization standard number.".freeze,
493
+ "http://purl.org/dc/terms/modified": "2016-04-21 (New)".freeze,
494
+ label: "ISO number".freeze,
495
+ subClassOf: "http://id.loc.gov/ontologies/bibframe/Identifier".freeze,
496
+ type: "http://www.w3.org/2002/07/owl#Class".freeze
497
+ term :Isrc,
498
+ definition: "International Standard Recording Code.".freeze,
499
+ "http://purl.org/dc/terms/modified": "2016-04-21 (New)".freeze,
500
+ label: "ISRC".freeze,
501
+ subClassOf: "http://id.loc.gov/ontologies/bibframe/Identifier".freeze,
502
+ type: "http://www.w3.org/2002/07/owl#Class".freeze
503
+ term :Issn,
504
+ definition: "International Standard Serial Number.".freeze,
505
+ "http://purl.org/dc/terms/modified": "2016-04-21 (New)".freeze,
506
+ label: "ISSN".freeze,
507
+ subClassOf: "http://id.loc.gov/ontologies/bibframe/Identifier".freeze,
508
+ type: "http://www.w3.org/2002/07/owl#Class".freeze
509
+ term :IssnL,
510
+ definition: "International Standard Serial Number that links together various media versions of a continuing resource.".freeze,
511
+ "http://purl.org/dc/terms/modified": "2016-04-21 (New)".freeze,
512
+ label: "ISSN-L".freeze,
513
+ subClassOf: "http://id.loc.gov/ontologies/bibframe/Identifier".freeze,
514
+ type: "http://www.w3.org/2002/07/owl#Class".freeze
515
+ term :Issuance,
516
+ definition: "Information about whether a resource is issued in one or more parts, the way it is updated, and its intended termination.".freeze,
517
+ "http://purl.org/dc/terms/modified": "2016-04-21 (New)".freeze,
518
+ label: "Mode of issuance".freeze,
519
+ type: "http://www.w3.org/2002/07/owl#Class".freeze
520
+ term :Istc,
521
+ definition: "International Standard Text Code, a numbering system developed to enable the unique identification of textual works.".freeze,
522
+ "http://purl.org/dc/terms/modified": "2016-04-21 (New)".freeze,
523
+ label: "ISTC".freeze,
524
+ subClassOf: "http://id.loc.gov/ontologies/bibframe/Identifier".freeze,
525
+ type: "http://www.w3.org/2002/07/owl#Class".freeze
526
+ term :Iswc,
527
+ definition: "International Standard Musical Work Code, a unique, persistent reference number for the identification of musical works.".freeze,
528
+ "http://purl.org/dc/terms/modified": "2016-04-21 (New)".freeze,
529
+ label: "ISWC".freeze,
530
+ subClassOf: "http://id.loc.gov/ontologies/bibframe/Identifier".freeze,
531
+ type: "http://www.w3.org/2002/07/owl#Class".freeze
532
+ term :Item,
533
+ definition: "Single example of an Instance.".freeze,
534
+ "http://purl.org/dc/terms/modified": "2016-04-21 (New)".freeze,
535
+ label: "Item".freeze,
536
+ type: "http://www.w3.org/2002/07/owl#Class".freeze
135
537
  term :Jurisdiction,
136
- comment: %(Legal or political unit administering a geographic area.).freeze,
538
+ definition: "Legal or political unit administering a geographic area.".freeze,
539
+ "http://purl.org/dc/terms/modified": "2016-04-21 (New)".freeze,
137
540
  label: "Jurisdiction".freeze,
138
- subClassOf: "bibframe:Agent".freeze,
139
- type: "rdfs:Class".freeze
541
+ subClassOf: "http://id.loc.gov/ontologies/bibframe/Agent".freeze,
542
+ type: "http://www.w3.org/2002/07/owl#Class".freeze
543
+ term :KeyTitle,
544
+ definition: "Unique title for a continuing resource that is assigned by the ISSN International Center in conjunction with an ISSN.".freeze,
545
+ "http://purl.org/dc/terms/modified": "2016-04-21 (New)".freeze,
546
+ label: "Key title".freeze,
547
+ subClassOf: "http://id.loc.gov/ontologies/bibframe/VariantTitle".freeze,
548
+ type: "http://www.w3.org/2002/07/owl#Class".freeze
140
549
  term :Language,
141
- comment: %(Language entity.).freeze,
142
- label: "Language Entity".freeze,
143
- subClassOf: "bibframe:Resource".freeze,
144
- type: "rdfs:Class".freeze
550
+ definition: "Language entity.".freeze,
551
+ "http://purl.org/dc/terms/modified": "2016-04-21 (New)".freeze,
552
+ label: "Language entity".freeze,
553
+ type: "http://www.w3.org/2002/07/owl#Class".freeze
554
+ term :Layout,
555
+ definition: "Arrangement of text, images, tactile notation, etc., in a resource.".freeze,
556
+ "http://purl.org/dc/terms/modified": "2016-04-21 (New)".freeze,
557
+ label: "Layout".freeze,
558
+ type: "http://www.w3.org/2002/07/owl#Class".freeze
559
+ term :LcOverseasAcq,
560
+ definition: "Identification number assigned by the Library of Congress to works acquired through one of its collaborative overseas acquisition programs.".freeze,
561
+ "http://purl.org/dc/terms/modified": "2016-04-21 (New)".freeze,
562
+ label: "LC acquisition program".freeze,
563
+ subClassOf: "http://id.loc.gov/ontologies/bibframe/Identifier".freeze,
564
+ type: "http://www.w3.org/2002/07/owl#Class".freeze
565
+ term :Lccn,
566
+ definition: "Library of Congress Control Number that identifies a resource description.".freeze,
567
+ "http://purl.org/dc/terms/modified": "2016-04-21 (New)".freeze,
568
+ label: "LCCN".freeze,
569
+ subClassOf: "http://id.loc.gov/ontologies/bibframe/Identifier".freeze,
570
+ type: "http://www.w3.org/2002/07/owl#Class".freeze
571
+ term :Local,
572
+ definition: "Identifier established locally and not a standard number.".freeze,
573
+ "http://purl.org/dc/terms/modified": "2016-04-21 (New)".freeze,
574
+ label: "Local identifier".freeze,
575
+ subClassOf: "http://id.loc.gov/ontologies/bibframe/Identifier".freeze,
576
+ type: "http://www.w3.org/2002/07/owl#Class".freeze
577
+ term :Manufacture,
578
+ definition: "Information relating to manufacture of a resource.".freeze,
579
+ "http://purl.org/dc/terms/modified": "2016-04-21 (New)".freeze,
580
+ label: "Manufacturer".freeze,
581
+ subClassOf: "http://id.loc.gov/ontologies/bibframe/ProvisionActivity".freeze,
582
+ type: "http://www.w3.org/2002/07/owl#Class".freeze
145
583
  term :Manuscript,
146
- comment: %(Resource that is written in handwriting or typescript. These are generally unique resources.).freeze,
584
+ definition: "Resource that is written in handwriting or typescript. These are generally unique resources.".freeze,
585
+ "http://purl.org/dc/terms/modified": "2016-04-21 (New)".freeze,
147
586
  label: "Manuscript".freeze,
148
- subClassOf: "bibframe:Instance".freeze,
149
- type: "rdfs:Class".freeze
587
+ subClassOf: "http://id.loc.gov/ontologies/bibframe/Instance".freeze,
588
+ type: "http://www.w3.org/2002/07/owl#Class".freeze
589
+ term :Material,
590
+ definition: "Substance or composition of the resource.".freeze,
591
+ "http://purl.org/dc/terms/modified": "2021-06-09 (New [GH28])".freeze,
592
+ label: "Material".freeze,
593
+ type: "http://www.w3.org/2002/07/owl#Class".freeze
594
+ term :MatrixNumber,
595
+ definition: "Matrix identifier assigned to the master from which a specific sound recording was pressed.".freeze,
596
+ "http://purl.org/dc/terms/modified": ["2016-04-21 (New)".freeze, "2017-02-03 (Revised definition)".freeze],
597
+ label: "Audio matrix number".freeze,
598
+ subClassOf: "http://id.loc.gov/ontologies/bibframe/Identifier".freeze,
599
+ type: "http://www.w3.org/2002/07/owl#Class".freeze
600
+ term :Media,
601
+ definition: "Categorization reflecting the general type of intermediation device required to view, play, run, etc., the content of a resource.".freeze,
602
+ "http://purl.org/dc/terms/modified": "2016-04-21 (New)".freeze,
603
+ label: "Media type".freeze,
604
+ type: "http://www.w3.org/2002/07/owl#Class".freeze
150
605
  term :Meeting,
151
- comment: %(Gathering of individuals or representatives of various bodies for the purpose of discussing and/or acting on topics of common interest.).freeze,
606
+ definition: "Gathering of individuals or representatives of various bodies for the purpose of discussing and/or acting on topics of common interest.".freeze,
607
+ "http://purl.org/dc/terms/modified": "2016-04-21 (New)".freeze,
152
608
  label: "Meeting".freeze,
153
- subClassOf: "bibframe:Agent".freeze,
154
- type: "rdfs:Class".freeze
609
+ subClassOf: "http://id.loc.gov/ontologies/bibframe/Agent".freeze,
610
+ type: "http://www.w3.org/2002/07/owl#Class".freeze
155
611
  term :MixedMaterial,
156
- 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,
157
- label: "Mixed Material".freeze,
158
- subClassOf: "bibframe:Work".freeze,
159
- type: "rdfs:Class".freeze
160
- term :Monograph,
161
- comment: %(Single unit cataloging resource.).freeze,
162
- label: "Single unit".freeze,
163
- subClassOf: "bibframe:Instance".freeze,
164
- type: "rdfs:Class".freeze
612
+ definition: "Resource comprised of multiple types which is not driven by software; for instance, a manuscript collection of text, photographs and sound recordings.".freeze,
613
+ "http://purl.org/dc/terms/modified": "2016-04-21 (New)".freeze,
614
+ label: "Mixed material".freeze,
615
+ subClassOf: "http://id.loc.gov/ontologies/bibframe/Work".freeze,
616
+ type: "http://www.w3.org/2002/07/owl#Class".freeze
617
+ term :Mount,
618
+ definition: "Physical material or object used for the support or backing to which the base material of a resource has been attached.".freeze,
619
+ "http://purl.org/dc/terms/modified": ["2016-04-21 (New)".freeze, "2021-06-09 (Amended definition [GH29])".freeze],
620
+ label: "Mount".freeze,
621
+ type: "http://www.w3.org/2002/07/owl#Class".freeze
622
+ term :MovementNotation,
623
+ definition: "Information on the symbol system used to convey the content of a movement resource.".freeze,
624
+ "http://purl.org/dc/terms/modified": ["2016-04-21 (New)".freeze, "2021-06-09 (Modified label [GH67])".freeze],
625
+ label: "Movement notation".freeze,
626
+ subClassOf: "http://id.loc.gov/ontologies/bibframe/Notation".freeze,
627
+ type: "http://www.w3.org/2002/07/owl#Class".freeze
165
628
  term :MovingImage,
166
- 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,
167
- label: "Moving Image".freeze,
168
- subClassOf: "bibframe:Work".freeze,
169
- type: "rdfs:Class".freeze
629
+ definition: "Images intended to be perceived as moving, including motion pictures (using liveaction and/or animation), video recordings of performances, events,etc.".freeze,
630
+ "http://purl.org/dc/terms/modified": ["2016-04-21 (New)".freeze, "2016-04-26 (fixed typo in definition)".freeze],
631
+ label: "Moving image".freeze,
632
+ subClassOf: "http://id.loc.gov/ontologies/bibframe/Work".freeze,
633
+ type: "http://www.w3.org/2002/07/owl#Class".freeze
170
634
  term :Multimedia,
171
- 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,
172
- label: "Software or Multimedia".freeze,
173
- subClassOf: "bibframe:Work".freeze,
174
- type: "rdfs:Class".freeze
175
- term :MultipartMonograph,
176
- comment: %(Multiple unit cataloging resource that is complete or intended to be completed within a finite number of parts.).freeze,
177
- label: "Multiple units".freeze,
178
- subClassOf: "bibframe:Instance".freeze,
179
- type: "rdfs:Class".freeze
635
+ definition: "Electronic resource that is a computer program (i.e., digitally encoded instructions intended to be processed and performed by a computer) or which consists of multiple media types that are software driven, such as videogames.".freeze,
636
+ "http://purl.org/dc/terms/modified": "2016-04-21 (New)".freeze,
637
+ label: "Software or multimedia".freeze,
638
+ subClassOf: "http://id.loc.gov/ontologies/bibframe/Work".freeze,
639
+ type: "http://www.w3.org/2002/07/owl#Class".freeze
640
+ term :MusicDistributorNumber,
641
+ definition: "Identifier appearing on a resource assigned by a distributor to a specific audio recording, notated music publication, music-related publication, or videorecording.".freeze,
642
+ "http://purl.org/dc/terms/modified": "2017-02-07 (New)".freeze,
643
+ label: "Music distributor number".freeze,
644
+ subClassOf: "http://id.loc.gov/ontologies/bibframe/Identifier".freeze,
645
+ type: "http://www.w3.org/2002/07/owl#Class".freeze
646
+ term :MusicEnsemble,
647
+ definition: "Ensemble for which a musical work is appropriate.".freeze,
648
+ "http://purl.org/dc/terms/modified": ["2016-04-21 (New)".freeze, "2021-06-09 (Changed subclass to Ensemble [GH56])".freeze],
649
+ label: "Music ensemble".freeze,
650
+ subClassOf: "http://id.loc.gov/ontologies/bibframe/Ensemble".freeze,
651
+ type: "http://www.w3.org/2002/07/owl#Class".freeze
652
+ term :MusicFormat,
653
+ definition: "Layout for content of a resource that is presented in the form of musical notation.".freeze,
654
+ "http://purl.org/dc/terms/modified": "2016-04-21 (New)".freeze,
655
+ label: "Notated music format".freeze,
656
+ type: "http://www.w3.org/2002/07/owl#Class".freeze
657
+ term :MusicInstrument,
658
+ definition: "Instrument for which a musical work is appropriate.".freeze,
659
+ "http://purl.org/dc/terms/modified": "2016-04-21 (New)".freeze,
660
+ label: "Musical instrument".freeze,
661
+ type: "http://www.w3.org/2002/07/owl#Class".freeze
662
+ term :MusicMedium,
663
+ definition: "Summary statement of the medium for a musical work.".freeze,
664
+ "http://purl.org/dc/terms/modified": "2016-04-21 (New)".freeze,
665
+ label: "Music medium information".freeze,
666
+ type: "http://www.w3.org/2002/07/owl#Class".freeze
667
+ term :MusicNotation,
668
+ definition: "Information on the symbol system used to convey the content of a music resource.".freeze,
669
+ "http://purl.org/dc/terms/modified": ["2016-04-21 (New)".freeze, "2021-06-09 (Modified label [GH67])".freeze],
670
+ label: "Music notation".freeze,
671
+ subClassOf: "http://id.loc.gov/ontologies/bibframe/Notation".freeze,
672
+ type: "http://www.w3.org/2002/07/owl#Class".freeze
673
+ term :MusicPlate,
674
+ definition: "Identifiers assigned by a music publisher or printer to the printing plates for the notated portion of a notated music publication, or an identifier that emulates the printing plate tradition in contemporary publications.".freeze,
675
+ "http://purl.org/dc/terms/modified": ["2016-04-21 (New)".freeze, "2017-02-03 (Revised definition)".freeze],
676
+ label: "Music plate number".freeze,
677
+ subClassOf: "http://id.loc.gov/ontologies/bibframe/Identifier".freeze,
678
+ type: "http://www.w3.org/2002/07/owl#Class".freeze
679
+ term :MusicPublisherNumber,
680
+ definition: "Identifier assigned to a notated music publication other than an issue, matrix, or plate number.".freeze,
681
+ "http://purl.org/dc/terms/modified": ["2016-04-21 (New)".freeze, "2017-02-03 (Revised definition)".freeze],
682
+ label: "Music publisher number".freeze,
683
+ subClassOf: "http://id.loc.gov/ontologies/bibframe/Identifier".freeze,
684
+ type: "http://www.w3.org/2002/07/owl#Class".freeze
685
+ term :MusicVoice,
686
+ definition: "Voice for which a musical work is appropriate.".freeze,
687
+ "http://purl.org/dc/terms/modified": "2016-04-21 (New)".freeze,
688
+ label: "Music voice".freeze,
689
+ type: "http://www.w3.org/2002/07/owl#Class".freeze
690
+ term :Nbn,
691
+ definition: "National Bibliography Number that identifies a resource description.".freeze,
692
+ "http://purl.org/dc/terms/modified": "2016-04-21 (New)".freeze,
693
+ label: "NBN".freeze,
694
+ subClassOf: "http://id.loc.gov/ontologies/bibframe/Identifier".freeze,
695
+ type: "http://www.w3.org/2002/07/owl#Class".freeze
180
696
  term :NotatedMovement,
181
- comment: %(Graphic, non-realized representations of movement intended to be perceived visually, e.g. dance.).freeze,
182
- label: "Notated Movement".freeze,
183
- subClassOf: "bibframe:Work".freeze,
184
- type: "rdfs:Class".freeze
697
+ definition: "Graphic, non-realized representations of movement intended to be perceived visually, e.g. dance.".freeze,
698
+ "http://purl.org/dc/terms/modified": "2016-04-21 (New)".freeze,
699
+ label: "Notated movement".freeze,
700
+ subClassOf: "http://id.loc.gov/ontologies/bibframe/Work".freeze,
701
+ type: "http://www.w3.org/2002/07/owl#Class".freeze
185
702
  term :NotatedMusic,
186
- comment: %(Graphic, non-realized representations of musical works intended to be perceived visually.).freeze,
187
- label: "Notated Music".freeze,
188
- subClassOf: "bibframe:Work".freeze,
189
- type: "rdfs:Class".freeze
703
+ definition: "Graphic, non-realized representations of musical works intended to be perceived visually.".freeze,
704
+ "http://purl.org/dc/terms/modified": "2016-04-21 (New)".freeze,
705
+ label: "Notated music".freeze,
706
+ subClassOf: "http://id.loc.gov/ontologies/bibframe/Work".freeze,
707
+ type: "http://www.w3.org/2002/07/owl#Class".freeze
708
+ term :Notation,
709
+ definition: "Information on the alphabet, script, or symbol system used to convey the content of the resource, including specialized scripts, typefaces, tactile notation, movement notation, and musical notation.".freeze,
710
+ "http://purl.org/dc/terms/modified": "2016-04-21 (New)".freeze,
711
+ label: "Notation".freeze,
712
+ type: "http://www.w3.org/2002/07/owl#Class".freeze
713
+ term :Note,
714
+ definition: "Information, usually in textual form, on attributes of a resource or some aspect of a resource.".freeze,
715
+ editorialNote: "Any entry from the Note Types vocabulary at ID may be used; all have been defined as a bf:Note".freeze,
716
+ "http://purl.org/dc/terms/modified": ["2016-04-21 (New)".freeze, "2021-06-09 (Added editorial note [GH35])".freeze],
717
+ label: "Note".freeze,
718
+ type: "http://www.w3.org/2002/07/owl#Class".freeze
719
+ term :Object,
720
+ definition: "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,
721
+ "http://purl.org/dc/terms/modified": "2016-04-21 (New)".freeze,
722
+ label: "Three-dimensional object".freeze,
723
+ subClassOf: "http://id.loc.gov/ontologies/bibframe/Work".freeze,
724
+ type: "http://www.w3.org/2002/07/owl#Class".freeze
725
+ term :ObjectCount,
726
+ definition: "Number of objects in encoded geospatial information in a cartographic resource.".freeze,
727
+ "http://purl.org/dc/terms/modified": "2016-04-21 (New)".freeze,
728
+ label: "Digital cartographic object count".freeze,
729
+ subClassOf: "http://id.loc.gov/ontologies/bibframe/DigitalCharacteristic".freeze,
730
+ type: "http://www.w3.org/2002/07/owl#Class".freeze
190
731
  term :Organization,
191
- comment: %(Corporation or group of persons and/or organizations that acts, or may act, as a unit.).freeze,
732
+ definition: "Corporation or group of persons and/or organizations that acts, or may act, as a unit.".freeze,
733
+ "http://purl.org/dc/terms/modified": "2016-04-21 (New)".freeze,
192
734
  label: "Organization".freeze,
193
- subClassOf: "bibframe:Agent".freeze,
194
- type: "rdfs:Class".freeze
735
+ subClassOf: "http://id.loc.gov/ontologies/bibframe/Agent".freeze,
736
+ type: "http://www.w3.org/2002/07/owl#Class".freeze
737
+ term :ParallelTitle,
738
+ definition: "Title in another language and/or script.".freeze,
739
+ "http://purl.org/dc/terms/modified": "2016-04-21 (New)".freeze,
740
+ label: "Parallel title proper".freeze,
741
+ subClassOf: "http://id.loc.gov/ontologies/bibframe/VariantTitle".freeze,
742
+ type: "http://www.w3.org/2002/07/owl#Class".freeze
195
743
  term :Person,
196
- comment: %(Individual or identity established by an individual \(either alone or in collaboration with one or more other individuals\)).freeze,
744
+ definition: "Individual or identity established by an individual (either alone or in collaboration with one or more other individuals).".freeze,
745
+ "http://purl.org/dc/terms/modified": "2016-04-21 (New)".freeze,
197
746
  label: "Person".freeze,
198
- subClassOf: "bibframe:Agent".freeze,
199
- type: "rdfs:Class".freeze
747
+ subClassOf: ["http://id.loc.gov/ontologies/bibframe/Agent".freeze, "http://xmlns.com/foaf/0.1/Person".freeze],
748
+ type: "http://www.w3.org/2002/07/owl#Class".freeze
200
749
  term :Place,
201
- comment: %(Geographic location.).freeze,
750
+ definition: "Geographic location.".freeze,
751
+ "http://purl.org/dc/terms/modified": "2016-04-21 (New)".freeze,
202
752
  label: "Place".freeze,
203
- subClassOf: "bibframe:Authority".freeze,
204
- type: "rdfs:Class".freeze
753
+ type: "http://www.w3.org/2002/07/owl#Class".freeze
754
+ term :PlaybackChannels,
755
+ definition: "Configuration/number of sound channels used to make a recording, such as one channel for a monophonic recording, e.g., mono, stereo, quadraphonic, surround.".freeze,
756
+ "http://purl.org/dc/terms/modified": "2016-04-21 (New)".freeze,
757
+ label: "Configuration of playback channels".freeze,
758
+ subClassOf: "http://id.loc.gov/ontologies/bibframe/SoundCharacteristic".freeze,
759
+ type: "http://www.w3.org/2002/07/owl#Class".freeze
760
+ term :PlaybackCharacteristic,
761
+ definition: "Equalization system, noise reduction system, etc., used in making an audio recording, e.g., CCIR standard, CX encoded, Dolby.".freeze,
762
+ "http://purl.org/dc/terms/modified": "2016-04-21 (New)".freeze,
763
+ label: "Special playback characteristics".freeze,
764
+ subClassOf: "http://id.loc.gov/ontologies/bibframe/SoundCharacteristic".freeze,
765
+ type: "http://www.w3.org/2002/07/owl#Class".freeze
766
+ term :PlayingSpeed,
767
+ definition: "Speed at which an audio carrier must be operated to produce the sound intended, e.g., 78 rpm, 19 cm/s.".freeze,
768
+ "http://purl.org/dc/terms/modified": "2016-04-21 (New)".freeze,
769
+ label: "Playing speed".freeze,
770
+ subClassOf: "http://id.loc.gov/ontologies/bibframe/SoundCharacteristic".freeze,
771
+ type: "http://www.w3.org/2002/07/owl#Class".freeze
772
+ term :Polarity,
773
+ definition: "Relationship of the colors and tones in an image to the colors and tones of the object reproduced.".freeze,
774
+ "http://purl.org/dc/terms/modified": "2016-04-21 (New)".freeze,
775
+ label: "Polarity".freeze,
776
+ type: "http://www.w3.org/2002/07/owl#Class".freeze
777
+ term :PostalRegistration,
778
+ definition: "Number assigned to a publication for which the specified postal service permits the use of a special mailing class privilege.".freeze,
779
+ "http://purl.org/dc/terms/modified": "2016-04-21 (New)".freeze,
780
+ label: "Postal registration number".freeze,
781
+ subClassOf: "http://id.loc.gov/ontologies/bibframe/Identifier".freeze,
782
+ type: "http://www.w3.org/2002/07/owl#Class".freeze
783
+ term :PresentationFormat,
784
+ definition: "Format used in the production of a projected image, e.g., Cinerama, IMAX.".freeze,
785
+ "http://purl.org/dc/terms/modified": "2016-04-21 (New)".freeze,
786
+ label: "Presentation format".freeze,
787
+ subClassOf: "http://id.loc.gov/ontologies/bibframe/ProjectionCharacteristic".freeze,
788
+ type: "http://www.w3.org/2002/07/owl#Class".freeze
205
789
  term :Print,
206
- comment: %(Resource that is printed.).freeze,
790
+ definition: "Resource that is printed.".freeze,
791
+ "http://purl.org/dc/terms/modified": "2016-04-21 (New)".freeze,
207
792
  label: "Printed".freeze,
208
- subClassOf: "bibframe:Instance".freeze,
209
- type: "rdfs:Class".freeze
210
- term :Provider,
211
- comment: %(Name of agent relating to the publication, printing, distribution, issue,release, or production of a resource.).freeze,
212
- label: "Provider Entity".freeze,
213
- subClassOf: "bibframe:Resource".freeze,
214
- type: "rdfs:Class".freeze
215
- term :Relator,
216
- comment: %(How an agent is related to a resource.).freeze,
217
- "dc:modified": "2014-04-30 (New)".freeze,
218
- label: "Relationship".freeze,
219
- subClassOf: "bibframe:Resource".freeze,
220
- type: "rdfs:Class".freeze
221
- term :Resource,
222
- comment: %(Any BIBFRAME object.).freeze,
223
- label: "Resource".freeze,
224
- type: "rdfs:Class".freeze
793
+ subClassOf: "http://id.loc.gov/ontologies/bibframe/Instance".freeze,
794
+ type: "http://www.w3.org/2002/07/owl#Class".freeze
795
+ term :Production,
796
+ definition: "Information relating to production of a resource.".freeze,
797
+ "http://purl.org/dc/terms/modified": "2016-04-21 (New)".freeze,
798
+ label: "Producer".freeze,
799
+ subClassOf: "http://id.loc.gov/ontologies/bibframe/ProvisionActivity".freeze,
800
+ type: "http://www.w3.org/2002/07/owl#Class".freeze
801
+ term :ProductionMethod,
802
+ definition: "Process used to produce a resource".freeze,
803
+ "http://purl.org/dc/terms/modified": "2016-04-21 (New)".freeze,
804
+ label: "Production method".freeze,
805
+ type: "http://www.w3.org/2002/07/owl#Class".freeze
806
+ term :Projection,
807
+ definition: "Method or system used to represent the surface of the earth or of a celestial sphere on a plane.".freeze,
808
+ "http://purl.org/dc/terms/modified": "2017-02-03 (New)".freeze,
809
+ label: "Projection".freeze,
810
+ type: "http://www.w3.org/2002/07/owl#Class".freeze
811
+ term :ProjectionCharacteristic,
812
+ definition: "Technical specification relating to the projection of a motion picture film.".freeze,
813
+ "http://purl.org/dc/terms/modified": "2016-04-21 (New)".freeze,
814
+ label: "Projection characteristic".freeze,
815
+ type: "http://www.w3.org/2002/07/owl#Class".freeze
816
+ term :ProjectionSpeed,
817
+ definition: "Speed at which a projected carrier must be operated to produce the moving image intended, e.g., 20 fps.".freeze,
818
+ "http://purl.org/dc/terms/modified": "2016-04-21 (New)".freeze,
819
+ label: "Projection speed".freeze,
820
+ subClassOf: "http://id.loc.gov/ontologies/bibframe/ProjectionCharacteristic".freeze,
821
+ type: "http://www.w3.org/2002/07/owl#Class".freeze
822
+ term :ProvisionActivity,
823
+ definition: "Information about the agent or place relating to the publication, printing, distribution, issue, release, or production of a resource.".freeze,
824
+ "http://purl.org/dc/terms/modified": "2016-04-21 (New)".freeze,
825
+ label: "Provider entity".freeze,
826
+ type: "http://www.w3.org/2002/07/owl#Class".freeze
827
+ term :PubFrequency,
828
+ definition: "Information about the publication frequency of a resource.".freeze,
829
+ "http://purl.org/dc/terms/modified": "2021-06-09 (New [GH76])".freeze,
830
+ label: "Publication Frequency".freeze,
831
+ type: "http://www.w3.org/2002/07/owl#Class".freeze
832
+ term :Publication,
833
+ definition: "Information relating to publication of a resource.".freeze,
834
+ "http://purl.org/dc/terms/modified": "2016-04-21 (New)".freeze,
835
+ label: "Publisher".freeze,
836
+ subClassOf: "http://id.loc.gov/ontologies/bibframe/ProvisionActivity".freeze,
837
+ type: "http://www.w3.org/2002/07/owl#Class".freeze
838
+ term :PublisherNumber,
839
+ definition: "Number assigned by a publisher that is not one of the specific defined types.".freeze,
840
+ "http://purl.org/dc/terms/modified": "2016-04-21 (New)".freeze,
841
+ label: "Publisher number".freeze,
842
+ subClassOf: "http://id.loc.gov/ontologies/bibframe/Identifier".freeze,
843
+ type: "http://www.w3.org/2002/07/owl#Class".freeze
844
+ term :RecordingMedium,
845
+ definition: "Type of medium used to record sound on an audio carrier, e.g., magnetic, optical.".freeze,
846
+ "http://purl.org/dc/terms/modified": "2016-04-21 (New)".freeze,
847
+ label: "Recording medium".freeze,
848
+ subClassOf: "http://id.loc.gov/ontologies/bibframe/SoundCharacteristic".freeze,
849
+ type: "http://www.w3.org/2002/07/owl#Class".freeze
850
+ term :RecordingMethod,
851
+ definition: "Method used to encode audio content for playback, e.g., analog, digital.".freeze,
852
+ "http://purl.org/dc/terms/modified": "2016-04-21 (New)".freeze,
853
+ label: "Type of recording".freeze,
854
+ subClassOf: "http://id.loc.gov/ontologies/bibframe/SoundCharacteristic".freeze,
855
+ type: "http://www.w3.org/2002/07/owl#Class".freeze
856
+ term :ReductionRatio,
857
+ definition: "Size of a micro-image in relation to the original from which it was produced.".freeze,
858
+ "http://purl.org/dc/terms/modified": "2016-04-21 (New)".freeze,
859
+ label: "Reduction ratio".freeze,
860
+ type: "http://www.w3.org/2002/07/owl#Class".freeze
861
+ term :RegionalEncoding,
862
+ definition: "Identification of the region of the world for which a videodisc has been encoded, e.g., region 4.".freeze,
863
+ "http://purl.org/dc/terms/modified": "2016-04-21 (New)".freeze,
864
+ label: "Regional encoding".freeze,
865
+ subClassOf: "http://id.loc.gov/ontologies/bibframe/DigitalCharacteristic".freeze,
866
+ type: "http://www.w3.org/2002/07/owl#Class".freeze
867
+ term :ReportNumber,
868
+ definition: "Identification number of a technical report that is not a Standard Technical Report Number.".freeze,
869
+ "http://purl.org/dc/terms/modified": "2016-04-21 (New)".freeze,
870
+ label: "Technical report number".freeze,
871
+ subClassOf: "http://id.loc.gov/ontologies/bibframe/Identifier".freeze,
872
+ type: "http://www.w3.org/2002/07/owl#Class".freeze
873
+ term :Resolution,
874
+ definition: "Clarity or fineness of detail in a digital image, expressed by the measurement of the image in pixels, etc., e.g., 3.1 megapixels.".freeze,
875
+ "http://purl.org/dc/terms/modified": "2016-04-21 (New)".freeze,
876
+ label: "Resolution".freeze,
877
+ subClassOf: "http://id.loc.gov/ontologies/bibframe/DigitalCharacteristic".freeze,
878
+ type: "http://www.w3.org/2002/07/owl#Class".freeze
879
+ term :RetentionPolicy,
880
+ definition: "Policy of holding institution for retaining resource.".freeze,
881
+ "http://purl.org/dc/terms/modified": "2016-04-21 (New)".freeze,
882
+ label: "Retention policy".freeze,
883
+ subClassOf: "http://id.loc.gov/ontologies/bibframe/UsageAndAccessPolicy".freeze,
884
+ type: "http://www.w3.org/2002/07/owl#Class".freeze
225
885
  term :Review,
226
- comment: %(Critique of a resource, such as a book review, analysis, etc.).freeze,
227
- label: "Review Annotation".freeze,
228
- subClassOf: "bibframe:Annotation".freeze,
229
- type: "rdfs:Class".freeze
230
- term :Serial,
231
- comment: %(Multiple unit cataloging resource issued in successive parts that has no predetermined conclusion.).freeze,
232
- label: "Serial".freeze,
233
- subClassOf: "bibframe:Instance".freeze,
234
- type: "rdfs:Class".freeze
886
+ definition: "Review of a resource.".freeze,
887
+ "http://purl.org/dc/terms/modified": "2016-04-21 (New)".freeze,
888
+ label: "Review".freeze,
889
+ type: "http://www.w3.org/2002/07/owl#Class".freeze
890
+ term :Role,
891
+ definition: "Function played or provided by a contributor, e.g., author, illustrator, etc.".freeze,
892
+ "http://purl.org/dc/terms/modified": "2017-02-03 (New)".freeze,
893
+ label: "Role".freeze,
894
+ type: "http://www.w3.org/2002/07/owl#Class".freeze
895
+ term :Scale,
896
+ definition: "Ratio of the dimensions of a form contained or embodied in a resource to the dimensions of the entity it represents, e.g., for images or cartographic resources.".freeze,
897
+ "http://purl.org/dc/terms/modified": "2017-02-03 (New)".freeze,
898
+ label: "Scale".freeze,
899
+ type: "http://www.w3.org/2002/07/owl#Class".freeze
900
+ term :Script,
901
+ definition: "Information on the script, or symbol system used to convey the content of a text resource.".freeze,
902
+ "http://purl.org/dc/terms/modified": ["2016-04-21 (New)".freeze, "2021-06-09 (Modified label [GH67])".freeze],
903
+ label: "Script".freeze,
904
+ subClassOf: "http://id.loc.gov/ontologies/bibframe/Notation".freeze,
905
+ type: "http://www.w3.org/2002/07/owl#Class".freeze
906
+ term :ShelfMark,
907
+ definition: "Piece/item identifier, such as a call or other type of number.".freeze,
908
+ "http://purl.org/dc/terms/modified": "2016-04-21 (New)".freeze,
909
+ label: "Shelf location".freeze,
910
+ subClassOf: "http://id.loc.gov/ontologies/bibframe/Identifier".freeze,
911
+ type: "http://www.w3.org/2002/07/owl#Class".freeze
912
+ term :ShelfMarkDdc,
913
+ definition: "Shelf mark based on Dewey Decimal Classification.".freeze,
914
+ "http://purl.org/dc/terms/modified": "2016-04-21 (New)".freeze,
915
+ label: "DDC call number".freeze,
916
+ subClassOf: "http://id.loc.gov/ontologies/bibframe/ShelfMark".freeze,
917
+ type: "http://www.w3.org/2002/07/owl#Class".freeze
918
+ term :ShelfMarkLcc,
919
+ definition: "Shelf mark based on Library of Congress Classification.".freeze,
920
+ "http://purl.org/dc/terms/modified": "2016-04-21 (New)".freeze,
921
+ label: "LCC call number".freeze,
922
+ subClassOf: "http://id.loc.gov/ontologies/bibframe/ShelfMark".freeze,
923
+ type: "http://www.w3.org/2002/07/owl#Class".freeze
924
+ term :ShelfMarkNlm,
925
+ definition: "Shelf mark based on National Library of Medicine Classification.".freeze,
926
+ "http://purl.org/dc/terms/modified": "2016-04-21 (New)".freeze,
927
+ label: "NLM call number".freeze,
928
+ subClassOf: "http://id.loc.gov/ontologies/bibframe/ShelfMark".freeze,
929
+ type: "http://www.w3.org/2002/07/owl#Class".freeze
930
+ term :ShelfMarkUdc,
931
+ definition: "Shelf mark based on Universal Decimal Classification.".freeze,
932
+ "http://purl.org/dc/terms/modified": "2016-04-21 (New)".freeze,
933
+ label: "UDC call number".freeze,
934
+ subClassOf: "http://id.loc.gov/ontologies/bibframe/ShelfMark".freeze,
935
+ type: "http://www.w3.org/2002/07/owl#Class".freeze
936
+ term :Sici,
937
+ definition: "Serial Item and Contribution Identifier.".freeze,
938
+ "http://purl.org/dc/terms/modified": "2016-04-21 (New)".freeze,
939
+ label: "SICI".freeze,
940
+ subClassOf: "http://id.loc.gov/ontologies/bibframe/Identifier".freeze,
941
+ type: "http://www.w3.org/2002/07/owl#Class".freeze
942
+ term :SoundCharacteristic,
943
+ definition: "Technical specification relating to the encoding of sound in a resource.".freeze,
944
+ "http://purl.org/dc/terms/modified": "2016-04-21 (New)".freeze,
945
+ label: "Sound characteristic".freeze,
946
+ type: "http://www.w3.org/2002/07/owl#Class".freeze
947
+ term :SoundContent,
948
+ definition: "Indication of whether the production of sound is an integral part of the resource.".freeze,
949
+ "http://purl.org/dc/terms/modified": "2016-04-21 (New)".freeze,
950
+ label: "Sound content".freeze,
951
+ type: "http://www.w3.org/2002/07/owl#Class".freeze
952
+ term :Source,
953
+ definition: "Resource from which value or label came or was derived.".freeze,
954
+ "http://purl.org/dc/terms/modified": "2016-04-21 (New)".freeze,
955
+ label: "Source".freeze,
956
+ type: "http://www.w3.org/2002/07/owl#Class".freeze
957
+ term :Status,
958
+ definition: "Designation of the validity or position of something, e.g., whether something is incorrect or available.".freeze,
959
+ "http://purl.org/dc/terms/modified": "2016-04-21 (New)".freeze,
960
+ label: "Status".freeze,
961
+ type: "http://www.w3.org/2002/07/owl#Class".freeze
235
962
  term :StillImage,
236
- 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,
237
- label: "Still Image".freeze,
238
- subClassOf: "bibframe:Work".freeze,
239
- type: "rdfs:Class".freeze
963
+ definition: "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,
964
+ "http://purl.org/dc/terms/modified": "2016-04-21 (New)".freeze,
965
+ label: "Still image".freeze,
966
+ subClassOf: "http://id.loc.gov/ontologies/bibframe/Work".freeze,
967
+ type: "http://www.w3.org/2002/07/owl#Class".freeze
968
+ term :StockNumber,
969
+ definition: "Identification number used for stock purposes and assigned by agencies such as distributors, publishers, or vendors.".freeze,
970
+ "http://purl.org/dc/terms/modified": "2016-04-21 (New)".freeze,
971
+ label: "Stock number".freeze,
972
+ subClassOf: "http://id.loc.gov/ontologies/bibframe/Identifier".freeze,
973
+ type: "http://www.w3.org/2002/07/owl#Class".freeze
974
+ term :Strn,
975
+ definition: "Standard Technical Report Number.".freeze,
976
+ "http://purl.org/dc/terms/modified": "2016-04-21 (New)".freeze,
977
+ label: "STRN".freeze,
978
+ subClassOf: "http://id.loc.gov/ontologies/bibframe/Identifier".freeze,
979
+ type: "http://www.w3.org/2002/07/owl#Class".freeze
980
+ term :StudyNumber,
981
+ definition: "Identification number for a computer data file.".freeze,
982
+ "http://purl.org/dc/terms/modified": "2016-04-21 (New)".freeze,
983
+ label: "Study number".freeze,
984
+ subClassOf: "http://id.loc.gov/ontologies/bibframe/Identifier".freeze,
985
+ type: "http://www.w3.org/2002/07/owl#Class".freeze
986
+ term :Sublocation,
987
+ definition: "Specific place within the holding entity where the item is located or made available.".freeze,
988
+ "http://purl.org/dc/terms/modified": "2016-04-21 (New)".freeze,
989
+ label: "Sublocation".freeze,
990
+ type: "http://www.w3.org/2002/07/owl#Class".freeze
240
991
  term :Summary,
241
- comment: %(Description of the content of a resource, such as an abstract, summary, etc..).freeze,
242
- label: "Summary Annotation".freeze,
243
- subClassOf: "bibframe:Annotation".freeze,
244
- type: "rdfs:Class".freeze
992
+ definition: "Description of the content of a resource, such as an abstract, summary, etc..".freeze,
993
+ "http://purl.org/dc/terms/modified": "2016-04-21 (New)".freeze,
994
+ label: "Summary".freeze,
995
+ type: "http://www.w3.org/2002/07/owl#Class".freeze
996
+ term :SupplementaryContent,
997
+ definition: "Index, bibliography, appendix, etc. intended to supplement the primary content of a resource.".freeze,
998
+ "http://purl.org/dc/terms/modified": "2016-04-21 (New)".freeze,
999
+ label: "Supplementary material".freeze,
1000
+ type: "http://www.w3.org/2002/07/owl#Class".freeze
1001
+ term :SystemRequirement,
1002
+ definition: "Equipment or system requirements beyond what is normal and obvious for the type of carrier or type of file, such as make and model of equipment or hardware, operating system, amount of memory, programming language, other necessary software, any plug-ins or peripherals required to play, view, or run the resource, etc.".freeze,
1003
+ "http://purl.org/dc/terms/modified": "2017-02-06 (New)".freeze,
1004
+ label: "System Requirement".freeze,
1005
+ type: "http://www.w3.org/2002/07/owl#Class".freeze
245
1006
  term :TableOfContents,
246
- comment: %(Table of Contents information for a resource.).freeze,
247
- "dc:modified": "2014-03-21 (Label Updated)".freeze,
248
- label: "Table of Contents Annotation".freeze,
249
- subClassOf: "bibframe:Annotation".freeze,
250
- type: "rdfs:Class".freeze
1007
+ definition: "Table of contents of a resource.".freeze,
1008
+ "http://purl.org/dc/terms/modified": "2016-04-21 (New)".freeze,
1009
+ label: "Table of contents".freeze,
1010
+ type: "http://www.w3.org/2002/07/owl#Class".freeze
251
1011
  term :Tactile,
252
- comment: %(Resource that is intended to be perceived by touch.).freeze,
253
- label: "Tactile Material".freeze,
254
- subClassOf: "bibframe:Instance".freeze,
255
- type: "rdfs:Class".freeze
1012
+ definition: "Resource that is intended to be perceived by touch.".freeze,
1013
+ "http://purl.org/dc/terms/modified": "2016-04-21 (New)".freeze,
1014
+ label: "Tactile material".freeze,
1015
+ subClassOf: "http://id.loc.gov/ontologies/bibframe/Instance".freeze,
1016
+ type: "http://www.w3.org/2002/07/owl#Class".freeze
1017
+ term :TactileNotation,
1018
+ definition: "Information on the symbol system used to convey the content of a tactile resource.".freeze,
1019
+ "http://purl.org/dc/terms/modified": ["2016-04-21 (New)".freeze, "2021-06-09 (Modified label [GH67])".freeze],
1020
+ label: "Tactile notation".freeze,
1021
+ subClassOf: "http://id.loc.gov/ontologies/bibframe/Notation".freeze,
1022
+ type: "http://www.w3.org/2002/07/owl#Class".freeze
1023
+ term :TapeConfig,
1024
+ definition: "Number of tracks on an audiotape, e.g., 12 track.".freeze,
1025
+ "http://purl.org/dc/terms/modified": "2016-04-21 (New)".freeze,
1026
+ label: "Tape configuration".freeze,
1027
+ subClassOf: "http://id.loc.gov/ontologies/bibframe/SoundCharacteristic".freeze,
1028
+ type: "http://www.w3.org/2002/07/owl#Class".freeze
256
1029
  term :Temporal,
257
- comment: %(Chronological period.).freeze,
258
- label: "Temporal Concept".freeze,
259
- subClassOf: "bibframe:Authority".freeze,
260
- type: "rdfs:Class".freeze
1030
+ definition: "Chronological period.".freeze,
1031
+ "http://purl.org/dc/terms/modified": "2016-04-21 (New)".freeze,
1032
+ label: "Temporal concept".freeze,
1033
+ type: "http://www.w3.org/2002/07/owl#Class".freeze
261
1034
  term :Text,
262
- comment: %(Form of notation for language intended to be perceived visually and understood through the use of language in written or spoken form.).freeze,
1035
+ definition: "Resource intended to be perceived visually and understood through the use of language in written or spoken form.".freeze,
1036
+ "http://purl.org/dc/terms/modified": "2016-04-21 (New)".freeze,
263
1037
  label: "Text".freeze,
264
- subClassOf: "bibframe:Work".freeze,
265
- type: "rdfs:Class".freeze
266
- term :ThreeDimensionalObject,
267
- 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,
268
- label: "Three-dimensional Object".freeze,
269
- subClassOf: "bibframe:Work".freeze,
270
- type: "rdfs:Class".freeze
1038
+ subClassOf: "http://id.loc.gov/ontologies/bibframe/Work".freeze,
1039
+ type: "http://www.w3.org/2002/07/owl#Class".freeze
271
1040
  term :Title,
272
- comment: %(Title information relating to a resource: title proper, translated title, or variant form of title.).freeze,
273
- label: "Title Entity".freeze,
274
- subClassOf: "bibframe:Resource".freeze,
275
- type: "rdfs:Class".freeze
1041
+ definition: "Title information relating to a resource: work title, preferred title, instance title, transcribed title, translated title, variant form of title, etc.".freeze,
1042
+ "http://purl.org/dc/terms/modified": ["2016-04-21 (New)".freeze, "2017-02-03 (Definition changed)".freeze],
1043
+ label: "Title entity".freeze,
1044
+ type: "http://www.w3.org/2002/07/owl#Class".freeze
276
1045
  term :Topic,
277
- comment: %(Concept or area of knowledge.).freeze,
1046
+ definition: "Concept or area of knowledge.".freeze,
1047
+ "http://purl.org/dc/terms/modified": "2016-04-21 (New)".freeze,
278
1048
  label: "Topic".freeze,
279
- subClassOf: "bibframe:Authority".freeze,
280
- type: "rdfs:Class".freeze
1049
+ type: "http://www.w3.org/2002/07/owl#Class".freeze
1050
+ term :TrackConfig,
1051
+ definition: "Configuration of the audio track on a sound-track film, e.g., center track, edge track.".freeze,
1052
+ "http://purl.org/dc/terms/modified": "2016-04-21 (New)".freeze,
1053
+ label: "Track configuration".freeze,
1054
+ subClassOf: "http://id.loc.gov/ontologies/bibframe/SoundCharacteristic".freeze,
1055
+ type: "http://www.w3.org/2002/07/owl#Class".freeze
1056
+ term :Unit,
1057
+ definition: "Units in which a value is expressed.".freeze,
1058
+ "http://purl.org/dc/terms/modified": "2016-04-21 (New)".freeze,
1059
+ label: "Unit".freeze,
1060
+ type: "http://www.w3.org/2002/07/owl#Class".freeze
1061
+ term :Upc,
1062
+ definition: "Universal Product Code.".freeze,
1063
+ "http://purl.org/dc/terms/modified": "2016-04-21 (New)".freeze,
1064
+ label: "UPC".freeze,
1065
+ subClassOf: "http://id.loc.gov/ontologies/bibframe/Identifier".freeze,
1066
+ type: "http://www.w3.org/2002/07/owl#Class".freeze
1067
+ term :Urn,
1068
+ definition: "Uniform Resource Name.".freeze,
1069
+ "http://purl.org/dc/terms/modified": ["2016-04-21 (New)".freeze, "2021-06-09 (Corrected definition [GH51])".freeze],
1070
+ label: "URN".freeze,
1071
+ subClassOf: "http://id.loc.gov/ontologies/bibframe/Identifier".freeze,
1072
+ type: "http://www.w3.org/2002/07/owl#Class".freeze
1073
+ term :UsageAndAccessPolicy,
1074
+ definition: "General statement of allowances and restrictions on access to a resource, including retention, reproduction, access, and lending.".freeze,
1075
+ "http://purl.org/dc/terms/modified": "2016-04-21 (New)".freeze,
1076
+ label: "Use and access conditions".freeze,
1077
+ type: "http://www.w3.org/2002/07/owl#Class".freeze
1078
+ term :UsePolicy,
1079
+ definition: "Usage limitations placed on a resource with respect to reproduction, publication, exhibition, etc..".freeze,
1080
+ "http://purl.org/dc/terms/modified": "2016-04-21 (New)".freeze,
1081
+ label: "Use policy".freeze,
1082
+ subClassOf: "http://id.loc.gov/ontologies/bibframe/UsageAndAccessPolicy".freeze,
1083
+ type: "http://www.w3.org/2002/07/owl#Class".freeze
1084
+ term :VariantTitle,
1085
+ definition: "Title associated with the resource that is different from the Work or Instance title.".freeze,
1086
+ "http://purl.org/dc/terms/modified": "2016-04-21 (New)".freeze,
1087
+ label: "Title variation".freeze,
1088
+ subClassOf: "http://id.loc.gov/ontologies/bibframe/Title".freeze,
1089
+ type: "http://www.w3.org/2002/07/owl#Class".freeze
1090
+ term :VideoCharacteristic,
1091
+ definition: "Technical specification relating to the encoding of video images in a resource.".freeze,
1092
+ "http://purl.org/dc/terms/modified": "2016-04-21 (New)".freeze,
1093
+ label: "Video characteristic".freeze,
1094
+ type: "http://www.w3.org/2002/07/owl#Class".freeze
1095
+ term :VideoFormat,
1096
+ definition: "Standard, etc., used to encode the analog video content of a resource, e.g., Beta, 8mm.".freeze,
1097
+ "http://purl.org/dc/terms/modified": "2016-04-21 (New)".freeze,
1098
+ label: "Video format".freeze,
1099
+ subClassOf: "http://id.loc.gov/ontologies/bibframe/VideoCharacteristic".freeze,
1100
+ type: "http://www.w3.org/2002/07/owl#Class".freeze
1101
+ term :VideoRecordingNumber,
1102
+ definition: "Number assigned by a publisher to a video recording.".freeze,
1103
+ "http://purl.org/dc/terms/modified": ["2016-04-21 (New)".freeze, "2017-02-03 (Corrected case in class name)".freeze],
1104
+ label: "Video recording number".freeze,
1105
+ subClassOf: "http://id.loc.gov/ontologies/bibframe/Identifier".freeze,
1106
+ type: "http://www.w3.org/2002/07/owl#Class".freeze
281
1107
  term :Work,
282
- comment: %(Resource reflecting a conceptual essence of the cataloging resource.).freeze,
1108
+ definition: "Resource reflecting a conceptual essence of a cataloging resource.".freeze,
1109
+ "http://purl.org/dc/terms/modified": "2016-04-21 (New)".freeze,
283
1110
  label: "Work".freeze,
284
- subClassOf: "bibframe:Resource".freeze,
285
- type: "rdfs:Class".freeze
1111
+ type: "http://www.w3.org/2002/07/owl#Class".freeze
286
1112
 
287
1113
  # Property definitions
288
- property :abbreviatedTitle,
289
- comment: %(Title as abbreviated for indexing or identification.).freeze,
290
- domain: "bibframe:Instance".freeze,
291
- label: "Abbreviated title".freeze,
292
- range: "bibframe:Title".freeze,
293
- subPropertyOf: "bibframe:instanceTitle".freeze,
294
- type: "rdf:Property".freeze
295
1114
  property :absorbed,
296
- comment: %(Work that has been incorporated into another Work).freeze,
297
- "dc:modified": "2014-04-10 (Updated subproperty)".freeze,
298
- domain: "bibframe:Work".freeze,
299
- label: "Absorbed".freeze,
300
- range: "bibframe:Work".freeze,
301
- subPropertyOf: "bibframe:precededBy".freeze,
302
- type: "rdf:Property".freeze
1115
+ comment: ["Suggested use - With Work or Instance".freeze, "Suggested value - Work or Instance".freeze],
1116
+ definition: "Resource that has been incorporated into another resource.".freeze,
1117
+ "http://purl.org/dc/terms/modified": ["2016-04-21 (New)".freeze, "2016-04-29 (added inverse, updated range)".freeze],
1118
+ inverseOf: "http://id.loc.gov/ontologies/bibframe/absorbedBy".freeze,
1119
+ label: "Absorption of".freeze,
1120
+ subPropertyOf: "http://id.loc.gov/ontologies/bibframe/precededBy".freeze,
1121
+ type: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze
303
1122
  property :absorbedBy,
304
- comment: %(Work that incorporates another work.).freeze,
305
- "dc:modified": "2014-04-10 (Updated subproperty)".freeze,
306
- domain: "bibframe:Work".freeze,
1123
+ comment: ["Suggested use - With Work or Instance".freeze, "Suggested value - Work or Instance".freeze],
1124
+ definition: "Resource that incorporates another resource.".freeze,
1125
+ "http://purl.org/dc/terms/modified": ["2016-04-21 (New)".freeze, "2016-04-29 (added inverse, updated range)".freeze],
1126
+ inverseOf: "http://id.loc.gov/ontologies/bibframe/absorbed".freeze,
307
1127
  label: "Absorbed by".freeze,
308
- range: "bibframe:Work".freeze,
309
- subPropertyOf: "bibframe:succeededBy".freeze,
310
- type: "rdf:Property".freeze
311
- property :absorbedInPart,
312
- comment: %(Work that has been partially incorporated into another work.).freeze,
313
- "dc:modified": "2014-04-10 (Updated subproperty)".freeze,
314
- domain: "bibframe:Work".freeze,
315
- label: "Absorbed in part".freeze,
316
- range: "bibframe:Work".freeze,
317
- subPropertyOf: "bibframe:precededBy".freeze,
318
- type: "rdf:Property".freeze
319
- property :absorbedInPartBy,
320
- comment: %(Work that incorporates part of the content of another work.).freeze,
321
- "dc:modified": "2014-04-10 (Updated subproperty)".freeze,
322
- domain: "bibframe:Work".freeze,
323
- label: "Absorbed in part by".freeze,
324
- range: "bibframe:Work".freeze,
325
- subPropertyOf: "bibframe:succeededBy".freeze,
326
- type: "rdf:Property".freeze
327
- property :accessCondition,
328
- comment: %(Allowances and restrictions on access.).freeze,
329
- domain: "bibframe:HeldMaterial".freeze,
330
- label: "Access condition".freeze,
331
- range: "rdfs:Literal".freeze,
332
- type: "rdf:Property".freeze
1128
+ subPropertyOf: "http://id.loc.gov/ontologies/bibframe/succeededBy".freeze,
1129
+ type: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze
333
1130
  property :accompaniedBy,
334
- comment: %(Resource that has an accompanying resource which adds to it).freeze,
335
- "dc:modified": "2014-04-10 (Range updated)".freeze,
1131
+ comment: ["Suggested use - With Work, Instance or Item".freeze, "Suggested value - Work, Instance or Item".freeze],
1132
+ definition: "Resource that accompanies the described resource.".freeze,
1133
+ "http://purl.org/dc/terms/modified": ["2016-04-21 (New)".freeze, "2016-04-29 (added inverse)".freeze],
1134
+ inverseOf: "http://id.loc.gov/ontologies/bibframe/accompanies".freeze,
336
1135
  label: "Accompanied by".freeze,
337
- subPropertyOf: "bibframe:relatedTo".freeze,
338
- type: "rdf:Property".freeze
1136
+ subPropertyOf: "http://id.loc.gov/ontologies/bibframe/relatedTo".freeze,
1137
+ type: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze
339
1138
  property :accompanies,
340
- comment: %(Resource that adds to or is issued with the described resource).freeze,
341
- "dc:modified": "2014-04-10 (Range updated)".freeze,
1139
+ comment: ["Suggested use - With Work, Instance or Item".freeze, "Suggested value - Work, Instance or Item".freeze],
1140
+ definition: "Resource that adds to or is issued with the described resource.".freeze,
1141
+ "http://purl.org/dc/terms/modified": ["2016-04-21 (New)".freeze, "2016-04-29 (added inverse)".freeze],
1142
+ inverseOf: "http://id.loc.gov/ontologies/bibframe/accompaniedBy".freeze,
342
1143
  label: "Accompanies".freeze,
343
- subPropertyOf: "bibframe:relatedTo".freeze,
344
- type: "rdf:Property".freeze
1144
+ subPropertyOf: "http://id.loc.gov/ontologies/bibframe/relatedTo".freeze,
1145
+ type: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze
1146
+ property :acquisitionSource,
1147
+ comment: "Suggested use - With Work or Instance".freeze,
1148
+ definition: "Information about an organization, person, etc., from which a resource may be obtained.".freeze,
1149
+ "http://purl.org/dc/terms/modified": ["2016-04-21 (New)".freeze, "2017-02-06 (Changed from data to object property, slight change to definition)".freeze, "2021-06-09 (Removed range [GH63])".freeze],
1150
+ label: "Source of acquisition".freeze,
1151
+ range: "http://www.w3.org/2000/01/rdf-schema#Resource".freeze,
1152
+ type: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze
1153
+ property :acquisitionTerms,
1154
+ comment: "Suggested use - With Work or Instance".freeze,
1155
+ definition: "Conditions under which the publisher, distributor, etc., will normally supply a resource, e.g., price of a resource.".freeze,
1156
+ "http://purl.org/dc/terms/modified": "2016-04-21 (New)".freeze,
1157
+ label: "Terms of acquisition".freeze,
1158
+ range: "http://www.w3.org/2000/01/rdf-schema#Literal".freeze,
1159
+ type: "http://www.w3.org/2002/07/owl#DatatypeProperty".freeze
1160
+ property :adminMetadata,
1161
+ definition: "Metadata about the metadata, especially provenance information.".freeze,
1162
+ domain: "http://www.w3.org/2000/01/rdf-schema#Resource".freeze,
1163
+ "http://purl.org/dc/terms/modified": "2016-04-21 (New)".freeze,
1164
+ label: "Administrative metadata".freeze,
1165
+ range: "http://id.loc.gov/ontologies/bibframe/AdminMetadata".freeze,
1166
+ type: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze
1167
+ property :adminMetadataFor,
1168
+ definition: "Relates an Administrative metadata resource to the resource it captures information about.".freeze,
1169
+ domain: "http://id.loc.gov/ontologies/bibframe/AdminMetadata".freeze,
1170
+ "http://purl.org/dc/terms/modified": "2021-06-09 (New [GH59])".freeze,
1171
+ label: "Administrative metadata for".freeze,
1172
+ range: "http://www.w3.org/2000/01/rdf-schema#Resource".freeze,
1173
+ type: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze
345
1174
  property :agent,
346
- comment: %(Entity associated with a resource or element of description).freeze,
1175
+ definition: "Entity associated with a resource or element of description, such as the name of the entity responsible for the content or of the publication, printing, distribution, issue, release or production of a resource.".freeze,
1176
+ domain: "http://www.w3.org/2000/01/rdf-schema#Resource".freeze,
1177
+ "http://purl.org/dc/terms/modified": ["2016-04-21 (New)".freeze, "2021-06-09 (Removed range [GH63])".freeze],
347
1178
  label: "Associated agent".freeze,
348
- range: "bibframe:Authority".freeze,
349
- type: "rdf:Property".freeze
350
- property :annotates,
351
- comment: %(Resource to which the annotation relates.).freeze,
352
- domain: "bibframe:Annotation".freeze,
353
- label: "Target of Annotation".freeze,
354
- range: "rdfs:Resource".freeze,
355
- type: "rdf:Property".freeze
356
- property :annotationAssertedBy,
357
- comment: %(Annotation was asserted by the given entity.).freeze,
358
- domain: "bibframe:Annotation".freeze,
359
- label: "Annotation asserted by".freeze,
360
- range: "bibframe:Agent".freeze,
361
- type: "rdf:Property".freeze
362
- property :annotationBody,
363
- comment: %(Content of the annotation about the resource.).freeze,
364
- domain: "bibframe:Annotation".freeze,
365
- label: "Annotation Body".freeze,
366
- range: "rdfs:Resource".freeze,
367
- type: "rdf:Property".freeze
368
- property :annotationSource,
369
- comment: %(Source of the annotation.).freeze,
370
- domain: "bibframe:Annotation".freeze,
371
- label: "Annotation Source".freeze,
372
- range: "bibframe:Agent".freeze,
373
- type: "rdf:Property".freeze
374
- property :ansi,
375
- comment: %(American National Standards Institute identifier.).freeze,
376
- domain: "bibframe:Instance".freeze,
377
- label: "ANSI number".freeze,
378
- range: "bibframe:Identifier".freeze,
379
- subPropertyOf: "bibframe:identifier".freeze,
380
- type: "rdf:Property".freeze
1179
+ range: "http://www.w3.org/2000/01/rdf-schema#Resource".freeze,
1180
+ type: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze
1181
+ property :agentOf,
1182
+ definition: "Property relating an agent, such as an entity responsible for the content or of the publication, printing, distribution, issue, release or production, to another resource.".freeze,
1183
+ domain: "http://www.w3.org/2000/01/rdf-schema#Resource".freeze,
1184
+ "http://purl.org/dc/terms/modified": "2021-06-09 (New [GH3])".freeze,
1185
+ label: "Associated agent of".freeze,
1186
+ range: "http://www.w3.org/2000/01/rdf-schema#Resource".freeze,
1187
+ type: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze
1188
+ property :appliedMaterial,
1189
+ comment: "Suggested use - With Work, Instance or Item".freeze,
1190
+ definition: "Physical or chemical substance applied to a base material of a resource.".freeze,
1191
+ "http://purl.org/dc/terms/modified": ["2016-04-21 (New)".freeze, "2021-06-09 (Removed range [GH24], Broadened domain, Made subproperty of material [GH26])".freeze],
1192
+ label: "Applied material".freeze,
1193
+ range: "http://www.w3.org/2000/01/rdf-schema#Resource".freeze,
1194
+ subPropertyOf: "http://id.loc.gov/ontologies/bibframe/material".freeze,
1195
+ type: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze
1196
+ property :appliedMaterialOf,
1197
+ definition: "Relates a Material resource to that which it is the applied material of.".freeze,
1198
+ domain: "http://id.loc.gov/ontologies/bibframe/Instance".freeze,
1199
+ "http://purl.org/dc/terms/modified": "2021-06-09 (New [GH25])".freeze,
1200
+ label: "Appllied material of".freeze,
1201
+ range: "http://www.w3.org/2000/01/rdf-schema#Resource".freeze,
1202
+ subPropertyOf: "http://id.loc.gov/ontologies/bibframe/materialOf".freeze,
1203
+ type: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze
381
1204
  property :arrangement,
382
- comment: %(Information about the organization and arrangement of a collection of resources.).freeze,
383
- domain: "bibframe:Instance".freeze,
384
- label: "Organization and Arrangement".freeze,
385
- range: "bibframe:Arrangement".freeze,
386
- type: "rdf:Property".freeze
1205
+ definition: "Relates one resource to another of which it is an arrangement of the first.".freeze,
1206
+ domain: "http://id.loc.gov/ontologies/bibframe/Work".freeze,
1207
+ "http://purl.org/dc/terms/modified": ["2016-04-21 (New)".freeze, "2021-06-09 (Redefined [GH77])".freeze],
1208
+ inverseOf: "http://id.loc.gov/ontologies/bibframe/arrangementOf".freeze,
1209
+ label: "Arrangement".freeze,
1210
+ range: "http://id.loc.gov/ontologies/bibframe/Work".freeze,
1211
+ subPropertyOf: "http://id.loc.gov/ontologies/bibframe/relatedTo".freeze,
1212
+ type: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze
1213
+ property :arrangementOf,
1214
+ definition: "Relates an arrangement to the resource of which it is an arrangement.".freeze,
1215
+ domain: "http://id.loc.gov/ontologies/bibframe/Work".freeze,
1216
+ "http://purl.org/dc/terms/modified": "2021-06-09 (New [GH77])".freeze,
1217
+ inverseOf: "http://id.loc.gov/ontologies/bibframe/arrangement".freeze,
1218
+ label: "Arrangement of".freeze,
1219
+ range: "http://id.loc.gov/ontologies/bibframe/Work".freeze,
1220
+ subPropertyOf: "http://id.loc.gov/ontologies/bibframe/relatedTo".freeze,
1221
+ type: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze
1222
+ property :ascensionAndDeclination,
1223
+ definition: "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,
1224
+ domain: "http://id.loc.gov/ontologies/bibframe/Cartographic".freeze,
1225
+ "http://purl.org/dc/terms/modified": "2016-04-21 (New)".freeze,
1226
+ label: "Cartographic ascension and declination".freeze,
1227
+ range: "http://www.w3.org/2000/01/rdf-schema#Literal".freeze,
1228
+ type: "http://www.w3.org/2002/07/owl#DatatypeProperty".freeze
387
1229
  property :aspectRatio,
388
- comment: %(Proportional relationship between an image's width and its height.).freeze,
389
- domain: "bibframe:Instance".freeze,
1230
+ comment: "Suggested use - With Work or Instance".freeze,
1231
+ definition: "Proportional relationship between an image's width and its height.".freeze,
1232
+ "http://purl.org/dc/terms/modified": "2016-04-21 (New)".freeze,
390
1233
  label: "Aspect ratio".freeze,
391
- range: "rdfs:Literal".freeze,
392
- type: "rdf:Property".freeze
393
- property :assertionDate,
394
- comment: %(Date when annotation was asserted.).freeze,
395
- domain: "bibframe:Annotation".freeze,
396
- label: "Annotation Assertion Date".freeze,
397
- range: "rdfs:Literal".freeze,
398
- type: "rdf:Property".freeze
399
- property :audience,
400
- comment: %(Information that identifies the specific audience or intellectual level for which the content of the resource is considered appropriate.).freeze,
401
- domain: "bibframe:IntendedAudience".freeze,
402
- label: "Audience".freeze,
403
- range: "rdfs:Literal".freeze,
404
- type: "rdf:Property".freeze
405
- property :audienceAssigner,
406
- comment: %(Entity that assigned the intended audience information.).freeze,
407
- domain: "bibframe:IntendedAudience".freeze,
408
- label: "Audience assigner".freeze,
409
- range: "rdfs:Literal".freeze,
410
- type: "rdf:Property".freeze
411
- property :authorityAssigner,
412
- comment: %(Entity that assigned the information.).freeze,
413
- domain: "bibframe:Authority".freeze,
414
- label: "Authority assigner".freeze,
415
- range: "bibframe:Agent".freeze,
416
- type: "rdf:Property".freeze
417
- property :authoritySource,
418
- comment: %(Authority list from which a value is taken.).freeze,
419
- domain: "bibframe:Authority".freeze,
420
- label: "Authority source".freeze,
421
- range: "rdfs:Literal".freeze,
422
- type: "rdf:Property".freeze
423
- property :authorizedAccessPoint,
424
- 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,
425
- domain: "bibframe:Resource".freeze,
426
- label: "Authorized access point".freeze,
427
- range: "rdfs:Literal".freeze,
428
- type: "rdf:Property".freeze
429
- property :awardNote,
430
- comment: %(Information on awards associated with the described resource.).freeze,
431
- domain: "bibframe:Instance".freeze,
1234
+ range: "http://id.loc.gov/ontologies/bibframe/AspectRatio".freeze,
1235
+ type: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze
1236
+ property :assigner,
1237
+ definition: "Entity that assigned the metadata, such as the entity that assigned a classification number, entity that assigned a name, entity that assigned an identifier.".freeze,
1238
+ domain: "http://www.w3.org/2000/01/rdf-schema#Resource".freeze,
1239
+ "http://purl.org/dc/terms/modified": ["2016-04-21 (New)".freeze, "2021-06-09 (Broaden domain [GH60], Removed range [GH63])".freeze],
1240
+ label: "Assigner".freeze,
1241
+ range: "http://www.w3.org/2000/01/rdf-schema#Resource".freeze,
1242
+ type: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze
1243
+ property :awards,
1244
+ comment: "Suggested use - With Work or Instance".freeze,
1245
+ definition: "Information on awards associated with the described resource.".freeze,
1246
+ editorialNote: "See also the ARM Ontology for strategies to model this information in greater detail.".freeze,
1247
+ "http://purl.org/dc/terms/modified": ["2016-04-21 (New)".freeze, "2021-06-09 (Added note [GH37])".freeze],
432
1248
  label: "Award note".freeze,
433
- range: "rdfs:Literal".freeze,
434
- type: "rdf:Property".freeze
435
- property :barcode,
436
- comment: %(Identification number of the physical item.).freeze,
437
- domain: "bibframe:HeldItem".freeze,
438
- label: "Barcode".freeze,
439
- range: "rdfs:Literal".freeze,
440
- type: "rdf:Property".freeze
441
- property :carrierCategory,
442
- comment: %(Categorization reflecting the format of the storage medium and housing of a carrier.).freeze,
443
- domain: "bibframe:Instance".freeze,
1249
+ range: "http://www.w3.org/2000/01/rdf-schema#Literal".freeze,
1250
+ type: "http://www.w3.org/2002/07/owl#DatatypeProperty".freeze
1251
+ property :baseMaterial,
1252
+ comment: "Suggested use - With Work, Instance or Item".freeze,
1253
+ definition: "Underlying physical material of a resource.".freeze,
1254
+ "http://purl.org/dc/terms/modified": ["2016-04-21 (New)".freeze, "2021-06-09 (Removed range [GH24], Broadened domain, Made subproperty of material [GH26])".freeze],
1255
+ label: "Base material".freeze,
1256
+ range: "http://www.w3.org/2000/01/rdf-schema#Resource".freeze,
1257
+ subPropertyOf: "http://id.loc.gov/ontologies/bibframe/material".freeze,
1258
+ type: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze
1259
+ property :baseMaterialOf,
1260
+ definition: "Relates a Material resource to that which it is the base material of.".freeze,
1261
+ domain: "http://id.loc.gov/ontologies/bibframe/Instance".freeze,
1262
+ "http://purl.org/dc/terms/modified": "2021-06-09 (New [GH25])".freeze,
1263
+ label: "Base material of".freeze,
1264
+ range: "http://www.w3.org/2000/01/rdf-schema#Resource".freeze,
1265
+ subPropertyOf: "http://id.loc.gov/ontologies/bibframe/materialOf".freeze,
1266
+ type: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze
1267
+ property :bookFormat,
1268
+ definition: "Result of folding a printed sheet to form a gathering of leaves.".freeze,
1269
+ domain: "http://id.loc.gov/ontologies/bibframe/Instance".freeze,
1270
+ "http://purl.org/dc/terms/modified": "2016-04-21 (New)".freeze,
1271
+ label: "Book format".freeze,
1272
+ range: "http://id.loc.gov/ontologies/bibframe/BookFormat".freeze,
1273
+ type: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze
1274
+ property :capture,
1275
+ comment: "Suggested use - With Work or Instance".freeze,
1276
+ definition: "Information about place and date associated with the capture (e.g., recording, filming) of the content of a resource.".freeze,
1277
+ "http://purl.org/dc/terms/modified": "2016-04-21 (New)".freeze,
1278
+ label: "Capture of content".freeze,
1279
+ range: "http://id.loc.gov/ontologies/bibframe/Capture".freeze,
1280
+ type: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze
1281
+ property :carrier,
1282
+ definition: "Categorization reflecting the format of the storage medium and housing of a carrier.".freeze,
1283
+ domain: "http://id.loc.gov/ontologies/bibframe/Instance".freeze,
1284
+ "http://purl.org/dc/terms/modified": "2016-04-21 (New)".freeze,
444
1285
  label: "Carrier type".freeze,
445
- range: "bibframe:Category".freeze,
446
- type: "rdf:Property".freeze
447
- property :cartographicAscensionAndDeclination,
448
- 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,
449
- domain: "bibframe:Cartography".freeze,
450
- label: "Cartographic ascension and declination".freeze,
451
- range: "rdfs:Literal".freeze,
452
- type: "rdf:Property".freeze
453
- property :cartographicCoordinates,
454
- 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,
455
- domain: "bibframe:Cartography".freeze,
456
- label: "Cartographic coordinates".freeze,
457
- range: "rdfs:Literal".freeze,
458
- type: "rdf:Property".freeze
459
- property :cartographicEquinox,
460
- 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,
461
- domain: "bibframe:Cartography".freeze,
462
- label: "Cartographic equinox".freeze,
463
- range: "rdfs:Literal".freeze,
464
- type: "rdf:Property".freeze
465
- property :cartographicExclusionGRing,
466
- comment: %(Coordinate pairs that identify the closed non-intersecting boundary of the area contained within the G-polygon outer ring that is excluded.).freeze,
467
- domain: "bibframe:Cartography".freeze,
468
- label: "Cartographic G ring area excluded".freeze,
469
- range: "rdfs:Literal".freeze,
470
- type: "rdf:Property".freeze
471
- property :cartographicOuterGRing,
472
- comment: %(Coordinate pairs that identify the closed non-intersecting boundary of the area covered.).freeze,
473
- domain: "bibframe:Cartography".freeze,
474
- label: "Cartographic outer G ring area covered".freeze,
475
- range: "rdfs:Literal".freeze,
476
- type: "rdf:Property".freeze
477
- property :cartographicProjection,
478
- comment: %(Method or system used to represent the surface of the Earth or of a celestial sphere on a plane.).freeze,
479
- domain: "bibframe:Cartography".freeze,
480
- label: "Cartographic projection".freeze,
481
- range: "rdfs:Literal".freeze,
482
- type: "rdf:Property".freeze
483
- property :cartographicScale,
484
- comment: %(Ratio of the dimensions of a form contained or embodied in a resource to the dimensions of the entity it represents.).freeze,
485
- domain: "bibframe:Cartography".freeze,
486
- label: "Cartographic scale".freeze,
487
- range: "rdfs:Literal".freeze,
488
- type: "rdf:Property".freeze
489
- property :cartography,
490
- comment: %(Cartographic data that identifies scale, coordinates, etc.).freeze,
491
- "dc:modified": "2014-03-27 (Updated)".freeze,
1286
+ range: "http://id.loc.gov/ontologies/bibframe/Carrier".freeze,
1287
+ type: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze
1288
+ property :cartographicAttributes,
1289
+ comment: "Suggested use - With Work or Instance".freeze,
1290
+ definition: "Cartographic data that identifies characteristics of the resource, such as coordinates, projection, etc.".freeze,
1291
+ "http://purl.org/dc/terms/modified": "2016-04-21 (New)".freeze,
492
1292
  label: "Cartographic data".freeze,
493
- range: "bibframe:Cartography".freeze,
494
- type: "rdf:Property".freeze
495
- property :categorySource,
496
- comment: %(Category list from which value is taken.).freeze,
497
- domain: "bibframe:Category".freeze,
498
- label: "Category source".freeze,
499
- range: "rdfs:Literal".freeze,
500
- type: "rdf:Property".freeze
501
- property :categoryType,
502
- comment: %(Type of category recorded, e.g., content, genre, media, form, carrier.).freeze,
503
- domain: "bibframe:Category".freeze,
504
- label: "Type of category".freeze,
505
- range: "rdfs:Literal".freeze,
506
- type: "rdf:Property".freeze
507
- property :categoryValue,
508
- comment: %(Category code or text.).freeze,
509
- domain: "bibframe:Category".freeze,
510
- label: "Category".freeze,
511
- range: "rdfs:Literal".freeze,
512
- type: "rdf:Property".freeze
1293
+ range: "http://id.loc.gov/ontologies/bibframe/Cartographic".freeze,
1294
+ type: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze
513
1295
  property :changeDate,
514
- comment: %(Date or date and time on which the metadata was modified.).freeze,
1296
+ definition: "Date or date and time on which the metadata was modified.".freeze,
1297
+ domain: "http://id.loc.gov/ontologies/bibframe/AdminMetadata".freeze,
1298
+ "http://purl.org/dc/terms/modified": "2016-04-21 (New)".freeze,
515
1299
  label: "Description change date".freeze,
516
- range: "rdfs:Literal".freeze,
517
- type: "rdf:Property".freeze
518
- property :circulationStatus,
519
- comment: %(Circulation status of an item.).freeze,
520
- domain: "bibframe:HeldItem".freeze,
521
- label: "Circulation status".freeze,
522
- range: "rdfs:Literal".freeze,
523
- type: "rdf:Property".freeze
1300
+ range: "http://www.w3.org/2000/01/rdf-schema#Literal".freeze,
1301
+ subPropertyOf: "http://id.loc.gov/ontologies/bibframe/date".freeze,
1302
+ type: "http://www.w3.org/2002/07/owl#DatatypeProperty".freeze
524
1303
  property :classification,
525
- comment: %(Classification number in any scheme.).freeze,
526
- domain: "bibframe:Work".freeze,
1304
+ comment: "Suggested use - With Work, Instance or Item".freeze,
1305
+ definition: "Classification number in any scheme.".freeze,
1306
+ "http://purl.org/dc/terms/modified": "2016-04-21 (New)".freeze,
527
1307
  label: "Classification".freeze,
528
- range: "bibframe:Classification".freeze,
529
- type: "rdf:Property".freeze
530
- property :classificationAssigner,
531
- comment: %(Entity that assigned the classification number.).freeze,
532
- domain: "bibframe:Classification".freeze,
533
- label: "Institution assigning classification".freeze,
534
- range: "rdfs:Literal".freeze,
535
- type: "rdf:Property".freeze
536
- property :classificationDdc,
537
- comment: %(Dewey Decimal Classification number used for subject access.).freeze,
538
- domain: "bibframe:Work".freeze,
539
- label: "DDC Classification".freeze,
540
- range: "bibframe:Classification".freeze,
541
- subPropertyOf: "bibframe:classification".freeze,
542
- type: "rdf:Property".freeze
543
- property :classificationDesignation,
544
- comment: %(Designates whether the classification number contained in the field is from the standard or optional part of the schedules or tables.).freeze,
545
- domain: "bibframe:Classification".freeze,
546
- label: "Classification designation".freeze,
547
- range: "rdfs:Literal".freeze,
548
- type: "rdf:Property".freeze
549
- property :classificationEdition,
550
- comment: %(Edition of the classification scheme, such as full, abridged or a number, when a classification scheme designates editions.).freeze,
551
- "dc:modified": "2014-10-09 (Updated)".freeze,
552
- domain: "bibframe:Classification".freeze,
553
- label: "Classification scheme edition".freeze,
554
- range: "rdfs:Literal".freeze,
555
- type: "rdf:Property".freeze
556
- property :classificationItem,
557
- comment: %(Number attached to a classification number that indicates a particular item.).freeze,
558
- domain: "bibframe:Classification".freeze,
559
- label: "Classification item number".freeze,
560
- range: "rdfs:Literal".freeze,
561
- type: "rdf:Property".freeze
562
- property :classificationLcc,
563
- comment: %(Library of Congress Classification number used for subject access.).freeze,
564
- domain: "bibframe:Work".freeze,
565
- label: "LCC Classification".freeze,
566
- range: "bibframe:Classification".freeze,
567
- subPropertyOf: "bibframe:classification".freeze,
568
- type: "rdf:Property".freeze
569
- property :classificationNlm,
570
- comment: %(National Library of Medicine Classification number used for subject access).freeze,
571
- domain: "bibframe:Work".freeze,
572
- label: "NLM classification".freeze,
573
- range: "bibframe:Classification".freeze,
574
- subPropertyOf: "bibframe:classification".freeze,
575
- type: "rdf:Property".freeze
576
- property :classificationNumber,
577
- 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,
578
- domain: "bibframe:Classification".freeze,
1308
+ range: "http://id.loc.gov/ontologies/bibframe/Classification".freeze,
1309
+ type: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze
1310
+ property :classificationPortion,
1311
+ definition: "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,
1312
+ domain: "http://id.loc.gov/ontologies/bibframe/Classification".freeze,
1313
+ "http://purl.org/dc/terms/modified": "2016-04-21 (New)".freeze,
579
1314
  label: "Classification number".freeze,
580
- range: "rdfs:Literal".freeze,
581
- type: "rdf:Property".freeze
582
- property :classificationNumberUri,
583
- comment: %(Classification number represented as a URI.).freeze,
584
- domain: "bibframe:Classification".freeze,
585
- label: "Classification number URI".freeze,
586
- range: "rdfs:Resource".freeze,
587
- type: "rdf:Property".freeze
588
- property :classificationScheme,
589
- comment: %(Formal scheme from which a classification number is taken.).freeze,
590
- domain: "bibframe:Classification".freeze,
591
- label: "Classification scheme".freeze,
592
- range: "rdfs:Literal".freeze,
593
- type: "rdf:Property".freeze
594
- property :classificationSpanEnd,
595
- comment: %(Ending number of classification number span.).freeze,
596
- domain: "bibframe:Classification".freeze,
597
- label: "Classification number span end".freeze,
598
- range: "rdfs:Literal".freeze,
599
- type: "rdf:Property".freeze
600
- property :classificationStatus,
601
- comment: %(Indicator that the classification number is canceled or invalid.).freeze,
602
- domain: "bibframe:Classification".freeze,
603
- label: "Classification status".freeze,
604
- range: "rdfs:Literal".freeze,
605
- type: "rdf:Property".freeze
606
- property :classificationTable,
607
- comment: %(DDC Table identification. Number of the table from which the classification number in a subdivision record is taken.).freeze,
608
- domain: "bibframe:Classification".freeze,
609
- label: "Classification table identification".freeze,
610
- range: "rdfs:Literal".freeze,
611
- type: "rdf:Property".freeze
612
- property :classificationTableSeq,
613
- comment: %(Sequence number or other identifier for an internal classification subarrangement or add in a classification scheme.).freeze,
614
- domain: "bibframe:Classification".freeze,
615
- label: "Classification table sequence number".freeze,
616
- range: "rdfs:Literal".freeze,
617
- type: "rdf:Property".freeze
618
- property :classificationUdc,
619
- comment: %(Universal Decimal Classification number used for subject access.).freeze,
620
- domain: "bibframe:Work".freeze,
621
- label: "UDC Classification".freeze,
622
- range: "bibframe:Classification".freeze,
623
- subPropertyOf: "bibframe:classification".freeze,
624
- type: "rdf:Property".freeze
625
- property :coden,
626
- comment: %(Identifier for scientific and technical periodical titles assigned by the International CODEN Section of Chemical Abstracts Service.).freeze,
627
- domain: "bibframe:Instance".freeze,
628
- label: "CODEN".freeze,
629
- range: "bibframe:Identifier".freeze,
630
- subPropertyOf: "bibframe:identifier".freeze,
631
- type: "rdf:Property".freeze
1315
+ range: "http://www.w3.org/2000/01/rdf-schema#Literal".freeze,
1316
+ type: "http://www.w3.org/2002/07/owl#DatatypeProperty".freeze
1317
+ property :code,
1318
+ definition: "String of characters that serves as a code representing information.".freeze,
1319
+ domain: "http://www.w3.org/2000/01/rdf-schema#Resource".freeze,
1320
+ "http://purl.org/dc/terms/modified": "2016-04-21 (New)".freeze,
1321
+ label: "Code".freeze,
1322
+ range: "http://www.w3.org/2000/01/rdf-schema#Literal".freeze,
1323
+ type: "http://www.w3.org/2002/07/owl#DatatypeProperty".freeze
1324
+ property :collectionArrangement,
1325
+ comment: "Suggested use - With Work or Instance".freeze,
1326
+ definition: "Information about the organization and arrangement of a collection of resources.".freeze,
1327
+ "http://purl.org/dc/terms/modified": "2021-06-09 (New [GH77])".freeze,
1328
+ label: "Collection Organization and arrangement".freeze,
1329
+ range: "http://id.loc.gov/ontologies/bibframe/CollectionArrangement".freeze,
1330
+ type: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze
1331
+ property :collectionArrangementOf,
1332
+ comment: "Suggested value - Work or Instance".freeze,
1333
+ definition: "Relates an Arrangement resource to that which it describes.".freeze,
1334
+ domain: "http://id.loc.gov/ontologies/bibframe/CollectionArrangement".freeze,
1335
+ "http://purl.org/dc/terms/modified": "2021-06-09 (New [GH77])".freeze,
1336
+ label: "Organization and arrangement of Collection".freeze,
1337
+ type: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze
1338
+ property :collectionOrganization,
1339
+ definition: "Manner in which the resource is divided into smaller units.".freeze,
1340
+ domain: "http://id.loc.gov/ontologies/bibframe/CollectionArrangement".freeze,
1341
+ "http://purl.org/dc/terms/modified": "2021-06-09 (New [GH77])".freeze,
1342
+ label: "Organization of material".freeze,
1343
+ range: "http://www.w3.org/2000/01/rdf-schema#Literal".freeze,
1344
+ type: "http://www.w3.org/2002/07/owl#DatatypeProperty".freeze
632
1345
  property :colorContent,
633
- comment: %(Color characteristics, e.g. black and white, multicolored, etc.).freeze,
634
- "dc:modified": "2014-10-14 (Updated)".freeze,
635
- domain: "bibframe:Instance".freeze,
1346
+ comment: "Suggested use - With Work, Instance or Item".freeze,
1347
+ definition: "Color characteristics, e.g., black and white, multicolored.".freeze,
1348
+ "http://purl.org/dc/terms/modified": ["2016-04-21 (New)".freeze, "2021-06-09 (Broaden range [GH31])".freeze],
636
1349
  label: "Color content".freeze,
637
- range: "rdfs:Literal".freeze,
638
- type: "rdf:Property".freeze
639
- property :componentOf,
640
- comment: %(Link to held material).freeze,
641
- domain: "bibframe:HeldItem".freeze,
642
- label: "Held item".freeze,
643
- range: "bibframe:HeldMaterial".freeze,
644
- type: "rdf:Property".freeze
645
- property :contentAccessibility,
646
- comment: %(Content that assists those with a sensory impairment for greater understanding of content, e.g., labels, captions.).freeze,
647
- domain: "bibframe:Instance".freeze,
648
- label: "Content accessibility note".freeze,
649
- range: "rdfs:Literal".freeze,
650
- type: "rdf:Property".freeze
651
- property :contentCategory,
652
- 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,
653
- domain: "bibframe:Work".freeze,
1350
+ range: "http://id.loc.gov/ontologies/bibframe/ColorContent".freeze,
1351
+ type: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze
1352
+ property :content,
1353
+ definition: "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,
1354
+ domain: "http://id.loc.gov/ontologies/bibframe/Work".freeze,
1355
+ "http://purl.org/dc/terms/modified": "2016-04-21 (New)".freeze,
654
1356
  label: "Content type".freeze,
655
- range: "bibframe:Category".freeze,
656
- type: "rdf:Property".freeze
657
- property :contentsNote,
658
- comment: %(List of subunits of the resource.).freeze,
659
- domain: "bibframe:Instance".freeze,
660
- label: "Contents".freeze,
661
- range: "rdfs:Literal".freeze,
662
- type: "rdf:Property".freeze
1357
+ range: "http://id.loc.gov/ontologies/bibframe/Content".freeze,
1358
+ type: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze
1359
+ property :contentAccessibility,
1360
+ comment: "Suggested use - With Work or Instance".freeze,
1361
+ definition: "Information that assists those with a sensory impairment for greater understanding of content, e.g., captions.".freeze,
1362
+ "http://purl.org/dc/terms/modified": ["2016-04-21 (New)".freeze, "2017-02-03 (changed from data to object property)".freeze, "2017-03-15 (fixed typo in range)".freeze],
1363
+ label: "Content accessibility information".freeze,
1364
+ range: "http://id.loc.gov/ontologies/bibframe/ContentAccessibility".freeze,
1365
+ type: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze
663
1366
  property :continuedBy,
664
- comment: %(Work whose content continues an earlier work under a new title.).freeze,
665
- "dc:modified": "2014-04-10 (Updated subproperty)".freeze,
666
- domain: "bibframe:Work".freeze,
1367
+ comment: ["Suggested use - With Work or Instance".freeze, "Suggested value - Work or Instance".freeze],
1368
+ definition: "Resource whose content continues an earlier resource under a new title.".freeze,
1369
+ "http://purl.org/dc/terms/modified": ["2016-04-21 (New)".freeze, "2016-04-29 (added inverse, updated range)".freeze],
1370
+ inverseOf: "http://id.loc.gov/ontologies/bibframe/continues".freeze,
667
1371
  label: "Continued by".freeze,
668
- range: "bibframe:Work".freeze,
669
- subPropertyOf: "bibframe:succeededBy".freeze,
670
- type: "rdf:Property".freeze
1372
+ subPropertyOf: "http://id.loc.gov/ontologies/bibframe/succeededBy".freeze,
1373
+ type: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze
671
1374
  property :continuedInPartBy,
672
- comment: %(Work part of whose content separated from an earlier work to form a new work.).freeze,
673
- "dc:modified": "2014-04-10 (Updated subproperty)".freeze,
674
- domain: "bibframe:Work".freeze,
1375
+ comment: ["Suggested use - With Work or Instance".freeze, "Suggested value - Work or Instance".freeze],
1376
+ definition: "Resource part of whose content separated from an earlier resource to form a new resource.".freeze,
1377
+ "http://purl.org/dc/terms/modified": ["2016-04-21 (New)".freeze, "2016-04-29 (added inverse, updated range)".freeze],
1378
+ inverseOf: "http://id.loc.gov/ontologies/bibframe/separatedFrom".freeze,
675
1379
  label: "Continued in part by".freeze,
676
- range: "bibframe:Work".freeze,
677
- subPropertyOf: "bibframe:succeededBy".freeze,
678
- type: "rdf:Property".freeze
1380
+ subPropertyOf: "http://id.loc.gov/ontologies/bibframe/succeededBy".freeze,
1381
+ type: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze
679
1382
  property :continues,
680
- comment: %(Work that is continued by the content of a later work under a new title.).freeze,
681
- "dc:modified": "2014-04-10 (Updated subproperty)".freeze,
682
- domain: "bibframe:Work".freeze,
683
- label: "Continues".freeze,
684
- range: "bibframe:Work".freeze,
685
- subPropertyOf: "bibframe:precededBy".freeze,
686
- type: "rdf:Property".freeze
1383
+ comment: ["Suggested use - With Work or Instance".freeze, "Suggested value - Work or Instance".freeze],
1384
+ definition: "Resource that is continued by the content of a later resource under a new title.".freeze,
1385
+ "http://purl.org/dc/terms/modified": ["2016-04-21 (New)".freeze, "2016-04-29 (added inverse, updated range)".freeze],
1386
+ inverseOf: "http://id.loc.gov/ontologies/bibframe/continuedBy".freeze,
1387
+ label: "Continuation of".freeze,
1388
+ subPropertyOf: "http://id.loc.gov/ontologies/bibframe/precededBy".freeze,
1389
+ type: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze
687
1390
  property :continuesInPart,
688
- comment: %(Work that split into two or more separate works with new titles.).freeze,
689
- "dc:modified": "2014-04-10 (Updated subproperty)".freeze,
690
- domain: "bibframe:Work".freeze,
691
- label: "Continues in part".freeze,
692
- range: "bibframe:Work".freeze,
693
- subPropertyOf: "bibframe:precededBy".freeze,
694
- type: "rdf:Property".freeze
695
- property :contributor,
696
- comment: %(Generalized expressive responsibility role.).freeze,
697
- label: "Contributor role".freeze,
698
- range: "bibframe:Authority".freeze,
699
- type: "rdf:Property".freeze
700
- property :copyNote,
701
- comment: %(Information about this copy.).freeze,
702
- domain: "bibframe:HeldItem".freeze,
703
- label: "Copy note".freeze,
704
- range: "rdfs:Literal".freeze,
705
- type: "rdf:Property".freeze
1391
+ comment: ["Suggested use - With Work or Instance".freeze, "Suggested value - Work or Instance".freeze],
1392
+ definition: "Resource that split into two or more separate resources with new titles.".freeze,
1393
+ "http://purl.org/dc/terms/modified": ["2016-04-21 (New)".freeze, "2016-04-29 (added inverse, updated range)".freeze],
1394
+ inverseOf: "http://id.loc.gov/ontologies/bibframe/splitInto".freeze,
1395
+ label: "Continuation in part of".freeze,
1396
+ subPropertyOf: "http://id.loc.gov/ontologies/bibframe/precededBy".freeze,
1397
+ type: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze
1398
+ property :contribution,
1399
+ comment: "Suggested use - With Work, Instance or Item".freeze,
1400
+ definition: "Agent and its role in relation to the resource.".freeze,
1401
+ "http://purl.org/dc/terms/modified": ["2016-04-21 (New)".freeze, "2017-02-03 (Corrected label)".freeze],
1402
+ label: "Contributor and role".freeze,
1403
+ range: "http://id.loc.gov/ontologies/bibframe/Contribution".freeze,
1404
+ type: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze
1405
+ property :contributionOf,
1406
+ comment: "Suggested value - Work, Instance or Item".freeze,
1407
+ definition: "Relates a contribution resource, which associates an Agent and Role together, to the relevant resource.".freeze,
1408
+ domain: "http://id.loc.gov/ontologies/bibframe/Contribution".freeze,
1409
+ "http://purl.org/dc/terms/modified": "2021-06-09 (New [GH4])".freeze,
1410
+ label: "Contribution of".freeze,
1411
+ type: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze
1412
+ property :coordinates,
1413
+ definition: "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,
1414
+ domain: "http://id.loc.gov/ontologies/bibframe/Cartographic".freeze,
1415
+ "http://purl.org/dc/terms/modified": "2016-04-21 (New)".freeze,
1416
+ label: "Cartographic coordinates".freeze,
1417
+ range: "http://www.w3.org/2000/01/rdf-schema#Literal".freeze,
1418
+ type: "http://www.w3.org/2002/07/owl#DatatypeProperty".freeze
706
1419
  property :copyrightDate,
707
- comment: %(Date associated with a claim of protection under copyright or a similar regime.).freeze,
708
- domain: "bibframe:Provider".freeze,
1420
+ comment: "Suggested use - With Work or Instance".freeze,
1421
+ definition: "Date associated with a claim of protection under copyright or a similar regime.".freeze,
1422
+ "http://purl.org/dc/terms/modified": "2016-04-21 (New)".freeze,
709
1423
  label: "Copyright date".freeze,
710
- range: "rdfs:Literal".freeze,
711
- type: "rdf:Property".freeze
1424
+ range: "http://www.w3.org/2000/01/rdf-schema#Literal".freeze,
1425
+ subPropertyOf: "http://id.loc.gov/ontologies/bibframe/date".freeze,
1426
+ type: "http://www.w3.org/2002/07/owl#DatatypeProperty".freeze
1427
+ property :copyrightRegistration,
1428
+ comment: "Suggested use - With Work or Instance".freeze,
1429
+ definition: "Copyright and Legal Deposit registration information".freeze,
1430
+ "http://purl.org/dc/terms/modified": ["2016-04-21 (New)".freeze, "2016-05-04 (Corrected expected value)".freeze],
1431
+ label: "Copyright registration information".freeze,
1432
+ range: "http://id.loc.gov/ontologies/bibframe/CopyrightRegistration".freeze,
1433
+ type: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze
1434
+ property :count,
1435
+ definition: "Number associated with a measure of units, such as the number of units and/or subunits making up a resource.".freeze,
1436
+ domain: "http://www.w3.org/2000/01/rdf-schema#Resource".freeze,
1437
+ "http://purl.org/dc/terms/modified": "2016-04-21 (New)".freeze,
1438
+ label: "Number of units".freeze,
1439
+ range: "http://www.w3.org/2000/01/rdf-schema#Literal".freeze,
1440
+ type: "http://www.w3.org/2002/07/owl#DatatypeProperty".freeze
712
1441
  property :coverArt,
713
- comment: %(Cover art image.).freeze,
714
- domain: "bibframe:CoverArt".freeze,
1442
+ comment: "Suggested use - With Work or Instance".freeze,
1443
+ definition: "Cover art image of a resource.".freeze,
1444
+ "http://purl.org/dc/terms/modified": "2016-04-21 (New)".freeze,
715
1445
  label: "Cover art".freeze,
716
- range: "rdfs:Resource".freeze,
717
- subPropertyOf: "bibframe:annotationBody".freeze,
718
- type: "rdf:Property".freeze
719
- property :coverArtFor,
720
- comment: %(Resource to which the cover art pertains.).freeze,
721
- domain: "bibframe:CoverArt".freeze,
722
- label: "Cover art of instance".freeze,
723
- range: "bibframe:Instance".freeze,
724
- subPropertyOf: "bibframe:annotates".freeze,
725
- type: "rdf:Property".freeze
726
- property :coverArtThumb,
727
- comment: %(Thumbnail version of cover art image.).freeze,
728
- domain: "bibframe:CoverArt".freeze,
729
- label: "Thumbnail of cover art".freeze,
730
- range: "rdfs:Resource".freeze,
731
- subPropertyOf: "bibframe:annotationBody".freeze,
732
- type: "rdf:Property".freeze
1446
+ range: "http://id.loc.gov/ontologies/bibframe/CoverArt".freeze,
1447
+ type: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze
733
1448
  property :creationDate,
734
- comment: %(Date or date and time on which the original metadata first created.).freeze,
1449
+ definition: "Date or date and time on which the original metadata first created.".freeze,
1450
+ domain: "http://id.loc.gov/ontologies/bibframe/AdminMetadata".freeze,
1451
+ "http://purl.org/dc/terms/modified": "2016-04-21 (New)".freeze,
735
1452
  label: "Description creation date".freeze,
736
- range: "rdfs:Literal".freeze,
737
- type: "rdf:Property".freeze
738
- property :creator,
739
- comment: %(Generalized creative responsibility role.).freeze,
740
- label: "Creator role".freeze,
741
- range: "bibframe:Authority".freeze,
742
- type: "rdf:Property".freeze
743
- property :creditsNote,
744
- comment: %(Credits for persons or organizations, other than members of the cast, who have participated in the creation and/or production of the.).freeze,
1453
+ range: "http://www.w3.org/2000/01/rdf-schema#Literal".freeze,
1454
+ subPropertyOf: "http://id.loc.gov/ontologies/bibframe/date".freeze,
1455
+ type: "http://www.w3.org/2002/07/owl#DatatypeProperty".freeze
1456
+ property :credits,
1457
+ comment: "Suggested use - With Work or Instance".freeze,
1458
+ definition: "Information in note form of credits for persons or organizations who have participated in the creation and/or production of the resource.".freeze,
1459
+ "http://purl.org/dc/terms/modified": "2016-04-21 (New)".freeze,
745
1460
  label: "Credits note".freeze,
746
- range: "rdfs:Literal".freeze,
747
- type: "rdf:Property".freeze
1461
+ range: "http://www.w3.org/2000/01/rdf-schema#Literal".freeze,
1462
+ type: "http://www.w3.org/2002/07/owl#DatatypeProperty".freeze
748
1463
  property :custodialHistory,
749
- comment: %(Information about the provenance, such as origin, ownership and custodial history \(chain of custody\), of a resource.).freeze,
750
- domain: "bibframe:Instance".freeze,
1464
+ comment: "Suggested use - With Work, Instance or Item".freeze,
1465
+ definition: "Information about the provenance, such as origin, ownership and custodial history (chain of custody), of a resource.".freeze,
1466
+ editorialNote: "See also the ARM Ontology for strategies to model this information in greater detail.".freeze,
1467
+ "http://purl.org/dc/terms/modified": ["2016-04-21 (New)".freeze, "2021-06-09 (Added note [GH38])".freeze],
751
1468
  label: "Custodial history".freeze,
752
- range: "rdfs:Literal".freeze,
753
- type: "rdf:Property".freeze
1469
+ range: "http://www.w3.org/2000/01/rdf-schema#Literal".freeze,
1470
+ type: "http://www.w3.org/2002/07/owl#DatatypeProperty".freeze
754
1471
  property :dataSource,
755
- 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,
756
- domain: "bibframe:Work".freeze,
757
- label: "Has data source".freeze,
758
- range: "bibframe:Work".freeze,
759
- subPropertyOf: "bibframe:relatedTo".freeze,
760
- type: "rdf:Property".freeze
1472
+ comment: ["Suggested use - With Work or Instance".freeze, "Suggested value - Work or Instance".freeze],
1473
+ definition: "Resource 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,
1474
+ "http://purl.org/dc/terms/modified": ["2016-04-21 (New)".freeze, "2016-04-29 (updated range)".freeze],
1475
+ label: "Data source".freeze,
1476
+ subPropertyOf: "http://id.loc.gov/ontologies/bibframe/relatedTo".freeze,
1477
+ type: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze
1478
+ property :date,
1479
+ definition: "Date designation associated with a resource or element of description, such as date of title variation; year a degree was awarded; date associated with the publication, printing, distribution, issue, release or production of a resource. May be date typed.".freeze,
1480
+ domain: "http://www.w3.org/2000/01/rdf-schema#Resource".freeze,
1481
+ "http://purl.org/dc/terms/modified": "2016-04-21 (New)".freeze,
1482
+ label: "Date".freeze,
1483
+ range: "http://www.w3.org/2000/01/rdf-schema#Literal".freeze,
1484
+ type: "http://www.w3.org/2002/07/owl#DatatypeProperty".freeze
1485
+ property :degree,
1486
+ definition: "Degree for which author was a candidate.".freeze,
1487
+ domain: "http://id.loc.gov/ontologies/bibframe/Dissertation".freeze,
1488
+ "http://purl.org/dc/terms/modified": "2016-04-21 (New)".freeze,
1489
+ label: "Degree".freeze,
1490
+ range: "http://www.w3.org/2000/01/rdf-schema#Literal".freeze,
1491
+ type: "http://www.w3.org/2002/07/owl#DatatypeProperty".freeze
761
1492
  property :derivativeOf,
762
- comment: %(Work is a modification of a source work.).freeze,
763
- "dc:modified": "2014-04-30 (New)".freeze,
1493
+ comment: ["Suggested use - With Work or Instance".freeze, "Suggested value - Work or Instance".freeze],
1494
+ definition: "Source work from which the described resource is derived.".freeze,
1495
+ "http://purl.org/dc/terms/modified": ["2016-04-21 (New)".freeze, "2016-04-29 (added inverse)".freeze],
1496
+ inverseOf: "http://id.loc.gov/ontologies/bibframe/hasDerivative".freeze,
764
1497
  label: "Is derivative of".freeze,
765
- subPropertyOf: "bibframe:relatedTo".freeze,
766
- type: "rdf:Property".freeze
1498
+ subPropertyOf: "http://id.loc.gov/ontologies/bibframe/relatedTo".freeze,
1499
+ type: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze
767
1500
  property :derivedFrom,
768
- comment: %(Link to the record that was the source of the data, when applicable.).freeze,
769
- label: "Source record".freeze,
770
- range: "rdfs:Resource".freeze,
771
- type: "rdf:Property".freeze
1501
+ definition: "Link to the metadata that was the source of the data.".freeze,
1502
+ domain: "http://id.loc.gov/ontologies/bibframe/AdminMetadata".freeze,
1503
+ "http://purl.org/dc/terms/modified": ["2016-04-21 (New)".freeze, "2021-06-09 (Removed range [GH41])".freeze],
1504
+ label: "Source metadata".freeze,
1505
+ range: "http://www.w3.org/2000/01/rdf-schema#Resource".freeze,
1506
+ type: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze
772
1507
  property :descriptionAuthentication,
773
- comment: %(Indication of specific types of reviews of description information.).freeze,
774
- "dc:modified": "2014-10-27 (Updated)".freeze,
1508
+ definition: "Indication of specific types of reviews that have been carried out on the description information.".freeze,
1509
+ domain: "http://id.loc.gov/ontologies/bibframe/AdminMetadata".freeze,
1510
+ "http://purl.org/dc/terms/modified": "2016-04-21 (New)".freeze,
775
1511
  label: "Description authentication".freeze,
776
- range: "rdfs:Literal".freeze,
777
- type: "rdf:Property".freeze
1512
+ range: "http://id.loc.gov/ontologies/bibframe/DescriptionAuthentication".freeze,
1513
+ type: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze
778
1514
  property :descriptionConventions,
779
- comment: %(Rules used for the descriptive content of the description.).freeze,
780
- "dc:modified": "2014-05-13 (updated)".freeze,
1515
+ definition: "Rules used for the descriptive content of the resource description.".freeze,
1516
+ domain: "http://id.loc.gov/ontologies/bibframe/AdminMetadata".freeze,
1517
+ "http://purl.org/dc/terms/modified": ["2016-04-21 (New)".freeze, "2016-04-24 (fixed domain name)".freeze],
781
1518
  label: "Description conventions".freeze,
782
- range: "rdfs:Resource".freeze,
783
- type: "rdf:Property".freeze
1519
+ range: "http://id.loc.gov/ontologies/bibframe/DescriptionConventions".freeze,
1520
+ type: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze
784
1521
  property :descriptionLanguage,
785
- comment: %(Language used for the metadata.).freeze,
1522
+ definition: "Language used for the metadata.".freeze,
1523
+ domain: "http://id.loc.gov/ontologies/bibframe/AdminMetadata".freeze,
1524
+ "http://purl.org/dc/terms/modified": "2016-04-21 (New)".freeze,
786
1525
  label: "Description language".freeze,
787
- range: "rdfs:Resource".freeze,
788
- type: "rdf:Property".freeze
1526
+ range: "http://id.loc.gov/ontologies/bibframe/Language".freeze,
1527
+ type: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze
789
1528
  property :descriptionModifier,
790
- comment: %(Agency that modified a description.).freeze,
791
- "dc:modified": "2014-10-27 (Updated)".freeze,
1529
+ definition: "Agency that modified a description.".freeze,
1530
+ domain: "http://id.loc.gov/ontologies/bibframe/AdminMetadata".freeze,
1531
+ "http://purl.org/dc/terms/modified": ["2016-04-21 (New)".freeze, "2021-06-09 (Removed range [GH63])".freeze],
792
1532
  label: "Description modifier".freeze,
793
- range: "rdfs:Resource".freeze,
794
- type: "rdf:Property".freeze
795
- property :descriptionOf,
796
- comment: %(Related resource that is analyzed, commented upon, critiqued, evaluated, reviewed, or otherwise described by the resource.).freeze,
797
- "dc:modified": "2014-04-30 (New)".freeze,
798
- label: "Is description of".freeze,
799
- subPropertyOf: "bibframe:relatedTo".freeze,
800
- type: "rdf:Property".freeze
801
- property :descriptionSource,
802
- comment: %(Entity that created or modified the metadata.).freeze,
803
- label: "Description source".freeze,
804
- range: "rdfs:Resource".freeze,
805
- type: "rdf:Property".freeze
806
- property :descriptionStatus,
807
- comment: %(Indicaton of whether the description is new or revised or in other states.).freeze,
808
- "dc:modified": "2014-10-27 (Updated)".freeze,
809
- label: "Description status".freeze,
810
- range: "rdfs:Literal".freeze,
811
- type: "rdf:Property".freeze
1533
+ range: "http://www.w3.org/2000/01/rdf-schema#Resource".freeze,
1534
+ type: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze
1535
+ property :digitalCharacteristic,
1536
+ definition: "Technical specification relating to the digital encoding of text, image, audio, video, and other types of data in a resource.".freeze,
1537
+ domain: "http://id.loc.gov/ontologies/bibframe/Instance".freeze,
1538
+ "http://purl.org/dc/terms/modified": "2016-04-21 (New)".freeze,
1539
+ label: "Digital characteristic".freeze,
1540
+ range: "http://id.loc.gov/ontologies/bibframe/DigitalCharacteristic".freeze,
1541
+ type: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze
812
1542
  property :dimensions,
813
- comment: %(Measurements of the carrier or carriers and/or the container of a resource.).freeze,
814
- domain: "bibframe:Instance".freeze,
1543
+ definition: "Measurements of the carrier or carriers and/or the container of a resource.".freeze,
1544
+ domain: "http://id.loc.gov/ontologies/bibframe/Instance".freeze,
1545
+ editorialNote: "See also the ARM Ontology for strategies to model this information in greater detail.".freeze,
1546
+ "http://purl.org/dc/terms/modified": ["2016-04-21 (New)".freeze, "2021-06-09 (Added note [GH39])".freeze],
815
1547
  label: "Dimensions".freeze,
816
- range: "rdfs:Literal".freeze,
817
- type: "rdf:Property".freeze
818
- property :dissertationDegree,
819
- comment: %(Degree for which author was a candidate.).freeze,
820
- domain: "bibframe:Work".freeze,
821
- label: "Degree".freeze,
822
- range: "rdfs:Literal".freeze,
823
- type: "rdf:Property".freeze
824
- property :dissertationIdentifier,
825
- comment: %(Identifier assigned to a dissertation for identification purposes .).freeze,
826
- domain: "bibframe:Work".freeze,
827
- label: "Dissertation identifier".freeze,
828
- range: "bibframe:Identifier".freeze,
829
- subPropertyOf: "bibframe:identifier".freeze,
830
- type: "rdf:Property".freeze
831
- property :dissertationInstitution,
832
- comment: %(Name of degree granting institution.).freeze,
833
- domain: "bibframe:Work".freeze,
834
- label: "Degree issuing institution".freeze,
835
- range: "bibframe:Agent".freeze,
836
- type: "rdf:Property".freeze
837
- property :dissertationNote,
838
- comment: %(Textual information about the dissertation.).freeze,
839
- domain: "bibframe:Work".freeze,
840
- label: "Dissertation note".freeze,
841
- range: "rdfs:Literal".freeze,
842
- type: "rdf:Property".freeze
843
- property :dissertationYear,
844
- comment: %(Year degree awarded.).freeze,
845
- domain: "bibframe:Work".freeze,
846
- label: "Year degree awarded".freeze,
847
- range: "rdfs:Literal".freeze,
848
- type: "rdf:Property".freeze
849
- property :distribution,
850
- comment: %(Information relating to distribution of an instance.).freeze,
851
- domain: "bibframe:Instance".freeze,
852
- label: "Distribution event".freeze,
853
- range: "bibframe:Provider".freeze,
854
- subPropertyOf: "bibframe:provider".freeze,
855
- type: "rdf:Property".freeze
856
- property :doi,
857
- comment: %(Digital Object Identifier.).freeze,
858
- domain: "bibframe:Instance".freeze,
859
- label: "DOI".freeze,
860
- range: "bibframe:Identifier".freeze,
861
- subPropertyOf: "bibframe:identifier".freeze,
862
- type: "rdf:Property".freeze
1548
+ range: "http://www.w3.org/2000/01/rdf-schema#Literal".freeze,
1549
+ type: "http://www.w3.org/2002/07/owl#DatatypeProperty".freeze
1550
+ property :dissertation,
1551
+ comment: "Suggested use - With Work or Instance".freeze,
1552
+ definition: "Work presented as part of the formal requirements for an academic degree.".freeze,
1553
+ "http://purl.org/dc/terms/modified": "2016-04-21 (New)".freeze,
1554
+ label: "Dissertation Information".freeze,
1555
+ range: "http://id.loc.gov/ontologies/bibframe/Dissertation".freeze,
1556
+ type: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze
863
1557
  property :duration,
864
- comment: %(Information about the playing time or duration in an unstructured form, e.g., "2 hours".).freeze,
865
- domain: "bibframe:Instance".freeze,
1558
+ comment: "Suggested use - With Work or Instance".freeze,
1559
+ definition: "Information about the playing time, running time, etc. of a resource.".freeze,
1560
+ "http://purl.org/dc/terms/modified": "2016-04-21 (New)".freeze,
866
1561
  label: "Duration".freeze,
867
- range: "rdfs:Literal".freeze,
868
- type: "rdf:Property".freeze
869
- property :ean,
870
- comment: %(International Article Identifier.).freeze,
871
- domain: "bibframe:Instance".freeze,
872
- label: "EAN".freeze,
873
- range: "bibframe:Identifier".freeze,
874
- subPropertyOf: "bibframe:identifier".freeze,
875
- type: "rdf:Property".freeze
1562
+ range: "http://www.w3.org/2000/01/rdf-schema#Literal".freeze,
1563
+ type: "http://www.w3.org/2002/07/owl#DatatypeProperty".freeze
876
1564
  property :edition,
877
- comment: %(Information identifying the edition or version of the resource.).freeze,
878
- domain: "bibframe:Instance".freeze,
1565
+ definition: "Edition of the classification scheme, such as full, abridged or a number, when a classification scheme designates editions.".freeze,
1566
+ domain: "http://id.loc.gov/ontologies/bibframe/Classification".freeze,
1567
+ "http://purl.org/dc/terms/modified": "2016-04-21 (New)".freeze,
1568
+ label: "Classification scheme edition".freeze,
1569
+ range: "http://www.w3.org/2000/01/rdf-schema#Literal".freeze,
1570
+ type: "http://www.w3.org/2002/07/owl#DatatypeProperty".freeze
1571
+ property :editionEnumeration,
1572
+ definition: "Enumeration of the edition; usually transcribed.".freeze,
1573
+ domain: "http://id.loc.gov/ontologies/bibframe/Instance".freeze,
1574
+ "http://purl.org/dc/terms/modified": "2016-04-21 (New)".freeze,
1575
+ label: "Edition enumeration".freeze,
1576
+ range: "http://www.w3.org/2000/01/rdf-schema#Literal".freeze,
1577
+ type: "http://www.w3.org/2002/07/owl#DatatypeProperty".freeze
1578
+ property :editionStatement,
1579
+ definition: "Information identifying the edition or version of the resource and associated statements of responsibility for the edition; usually transcribed.".freeze,
1580
+ domain: "http://id.loc.gov/ontologies/bibframe/Instance".freeze,
1581
+ "http://purl.org/dc/terms/modified": "2016-04-21 (New)".freeze,
879
1582
  label: "Edition statement".freeze,
880
- range: "rdfs:Literal".freeze,
881
- type: "rdf:Property".freeze
882
- property :editionResponsibility,
883
- comment: %(Statement relating to the identification of any persons, families, or corporate bodies responsible for the edition being described.).freeze,
884
- domain: "bibframe:Instance".freeze,
885
- label: "Edition responsibility".freeze,
886
- range: "rdfs:Literal".freeze,
887
- type: "rdf:Property".freeze
1583
+ range: "http://www.w3.org/2000/01/rdf-schema#Literal".freeze,
1584
+ type: "http://www.w3.org/2002/07/owl#DatatypeProperty".freeze
888
1585
  property :electronicLocator,
889
- comment: %(Electronic location from which the resource is available.).freeze,
890
- "dc:modified": "2014-04-28 (New)".freeze,
891
- domain: "bibframe:HeldMaterial".freeze,
1586
+ definition: "Electronic location from which the resource is available.".freeze,
1587
+ domain: "http://www.w3.org/2000/01/rdf-schema#Resource".freeze,
1588
+ "http://purl.org/dc/terms/modified": ["2016-04-21 (New)".freeze, "2021-06-09 (Removed domain [GH66])".freeze],
892
1589
  label: "Electronic location".freeze,
893
- range: "rdfs:Resource".freeze,
894
- type: "rdf:Property".freeze
1590
+ range: "http://www.w3.org/2000/01/rdf-schema#Resource".freeze,
1591
+ type: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze
1592
+ property :emulsion,
1593
+ definition: "Suspension of light-sensitive chemicals used as a coating on a microfilm or microfiche, e.g., silver halide.".freeze,
1594
+ domain: "http://id.loc.gov/ontologies/bibframe/Instance".freeze,
1595
+ "http://purl.org/dc/terms/modified": "2016-04-21 (New)".freeze,
1596
+ label: "Emulsion".freeze,
1597
+ range: "http://id.loc.gov/ontologies/bibframe/Emulsion".freeze,
1598
+ type: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze
1599
+ property :ensemble,
1600
+ definition: "Ensemble applicable to the Work.".freeze,
1601
+ domain: "http://id.loc.gov/ontologies/bibframe/Work".freeze,
1602
+ "http://purl.org/dc/terms/modified": ["2016-04-21 (New)".freeze, "2021-06-09 (Changed domain [GH56], Modified definition [GH56])".freeze],
1603
+ label: "Ensemble".freeze,
1604
+ range: "http://id.loc.gov/ontologies/bibframe/Ensemble".freeze,
1605
+ type: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze
1606
+ property :ensembleType,
1607
+ definition: "Specific type of ensemble, such as orchestra, band, guitar ensemble.".freeze,
1608
+ domain: "http://id.loc.gov/ontologies/bibframe/Ensemble".freeze,
1609
+ "http://purl.org/dc/terms/modified": ["2016-04-21 (New)".freeze, "2021-06-09 (Changed domain [GH56])".freeze],
1610
+ label: "Ensemble type".freeze,
1611
+ range: "http://www.w3.org/2000/01/rdf-schema#Literal".freeze,
1612
+ type: "http://www.w3.org/2002/07/owl#DatatypeProperty".freeze
895
1613
  property :enumerationAndChronology,
896
- comment: %(Numbering and dates of holding.).freeze,
897
- domain: "bibframe:HeldMaterial".freeze,
898
- label: "Enumeration and chronology".freeze,
899
- range: "rdfs:Literal".freeze,
900
- type: "rdf:Property".freeze
901
- property :event,
902
- comment: %(Information about the geographic area/or time period covered by an event \(e.g., a report\).).freeze,
903
- "dc:modified": "2014-05-16 (Updated)".freeze,
904
- domain: "bibframe:Work".freeze,
905
- label: "Event associated with content".freeze,
906
- range: "bibframe:Event".freeze,
907
- type: "rdf:Property".freeze
908
- property :eventAgent,
909
- comment: %(Person or organization associated with event.).freeze,
910
- "dc:modified": "2014-05-16 (Updated)".freeze,
911
- domain: "bibframe:Event".freeze,
912
- label: "Agent for event".freeze,
913
- range: "bibframe:Agent".freeze,
914
- type: "rdf:Property".freeze
915
- property :eventDate,
916
- comment: %(Date, time or period of event.).freeze,
917
- "dc:modified": "2014-05-16 (Updated)".freeze,
918
- domain: "bibframe:Event".freeze,
919
- label: "Date(s) of event".freeze,
920
- range: "rdfs:Literal".freeze,
921
- type: "rdf:Property".freeze
922
- property :eventPlace,
923
- comment: %(Geographic area associated with event.).freeze,
924
- domain: "bibframe:Event".freeze,
925
- label: "Place of event".freeze,
926
- range: "bibframe:Place".freeze,
927
- type: "rdf:Property".freeze
1614
+ definition: "Numbering and dates of issues or items held.".freeze,
1615
+ domain: "http://id.loc.gov/ontologies/bibframe/Item".freeze,
1616
+ "http://purl.org/dc/terms/modified": "2016-04-21 (New)".freeze,
1617
+ label: "Numbering or other enumeration and dates associated with issues or items held.".freeze,
1618
+ range: "http://id.loc.gov/ontologies/bibframe/EnumerationAndChronology".freeze,
1619
+ type: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze
1620
+ property :equinox,
1621
+ definition: "One of two points of intersection of the ecliptic and the celestial equator, occupied by the sun when its declination is 0 degrees.".freeze,
1622
+ domain: "http://id.loc.gov/ontologies/bibframe/Cartographic".freeze,
1623
+ "http://purl.org/dc/terms/modified": "2016-04-21 (New)".freeze,
1624
+ label: "Cartographic equinox".freeze,
1625
+ range: "http://www.w3.org/2000/01/rdf-schema#Literal".freeze,
1626
+ type: "http://www.w3.org/2002/07/owl#DatatypeProperty".freeze
1627
+ property :eventContent,
1628
+ definition: "Work whose content is the described event.".freeze,
1629
+ domain: "http://id.loc.gov/ontologies/bibframe/Event".freeze,
1630
+ "http://purl.org/dc/terms/modified": ["2016-04-21 (New)".freeze, "2016-04-29 (added inverse)".freeze],
1631
+ inverseOf: "http://id.loc.gov/ontologies/bibframe/eventContentOf".freeze,
1632
+ label: "Event content".freeze,
1633
+ range: "http://id.loc.gov/ontologies/bibframe/Work".freeze,
1634
+ subPropertyOf: "http://id.loc.gov/ontologies/bibframe/relatedTo".freeze,
1635
+ type: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze
1636
+ property :eventContentOf,
1637
+ definition: "Event that is the content of the described work.".freeze,
1638
+ domain: "http://id.loc.gov/ontologies/bibframe/Work".freeze,
1639
+ "http://purl.org/dc/terms/modified": ["2016-04-21 (New)".freeze, "2016-04-29 (added inverse)".freeze],
1640
+ inverseOf: "http://id.loc.gov/ontologies/bibframe/eventContent".freeze,
1641
+ label: "Has event content".freeze,
1642
+ range: "http://id.loc.gov/ontologies/bibframe/Event".freeze,
1643
+ subPropertyOf: "http://id.loc.gov/ontologies/bibframe/relatedTo".freeze,
1644
+ type: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze
1645
+ property :exclusionGRing,
1646
+ definition: "Coordinate pairs that identify the closed non-intersecting boundary of the area contained within the G-polygon outer ring that is excluded.".freeze,
1647
+ domain: "http://id.loc.gov/ontologies/bibframe/Cartographic".freeze,
1648
+ "http://purl.org/dc/terms/modified": "2016-04-21 (New)".freeze,
1649
+ label: "Cartographic G ring area excluded".freeze,
1650
+ range: "http://www.w3.org/2000/01/rdf-schema#Literal".freeze,
1651
+ type: "http://www.w3.org/2002/07/owl#DatatypeProperty".freeze
928
1652
  property :expressionOf,
929
- comment: %(Expression has a related work. For use to connect Works under FRBR/RDA rules.).freeze,
930
- "dc:modified": "2014-04-10 (Updated subproperty)".freeze,
931
- domain: "bibframe:Work".freeze,
1653
+ definition: "Work that the described Work is an expression of. Use to connect Works under LRM/RDA guidelines or similar implementations.".freeze,
1654
+ domain: "http://id.loc.gov/ontologies/bibframe/Work".freeze,
1655
+ "http://purl.org/dc/terms/modified": ["2016-04-21 (New)".freeze, "2016-04-29 (added inverse)".freeze, "2021-06-09 (Modified definition [GH8])".freeze],
1656
+ inverseOf: "http://id.loc.gov/ontologies/bibframe/hasExpression".freeze,
932
1657
  label: "Expression of".freeze,
933
- range: "bibframe:Work".freeze,
934
- subPropertyOf: "bibframe:relatedTo".freeze,
935
- type: "rdf:Property".freeze
1658
+ range: "http://id.loc.gov/ontologies/bibframe/Work".freeze,
1659
+ subPropertyOf: "http://id.loc.gov/ontologies/bibframe/relatedTo".freeze,
1660
+ type: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze
936
1661
  property :extent,
937
- comment: %(Number and type of units and/or subunits making up a resource.).freeze,
938
- domain: "bibframe:Instance".freeze,
1662
+ definition: "Number and type of units and/or subunits making up a resource.".freeze,
1663
+ domain: "http://www.w3.org/2000/01/rdf-schema#Resource".freeze,
1664
+ "http://purl.org/dc/terms/modified": ["2016-04-21 (New)".freeze, "2021-06-09 (Broadened range [GH30])".freeze],
939
1665
  label: "Extent".freeze,
940
- range: "rdfs:Literal".freeze,
941
- type: "rdf:Property".freeze
1666
+ range: "http://id.loc.gov/ontologies/bibframe/Extent".freeze,
1667
+ type: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze
942
1668
  property :findingAid,
943
- comment: %(Relationship is to a finding aid or similar control materials for archival, visual, and manuscript resources.).freeze,
944
- domain: "bibframe:Work".freeze,
945
- label: "Has finding aid".freeze,
946
- range: "bibframe:Work".freeze,
947
- subPropertyOf: "bibframe:accompaniedBy".freeze,
948
- type: "rdf:Property".freeze
949
- property :findingAidNote,
950
- comment: %(Note about availability of an index or finding aid.).freeze,
951
- label: "Index or finding aid note".freeze,
952
- range: "rdfs:Literal".freeze,
953
- type: "rdf:Property".freeze
954
- property :fingerprint,
955
- 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,
956
- domain: "bibframe:Instance".freeze,
957
- label: "Fingerprint identifier".freeze,
958
- range: "bibframe:Identifier".freeze,
959
- subPropertyOf: "bibframe:identifier".freeze,
960
- type: "rdf:Property".freeze
961
- property :formDesignation,
962
- comment: %(Class or genre to which a Work or Instance belongs.).freeze,
963
- "dc:modified": "2014-03-21 (Range updated)".freeze,
964
- domain: "bibframe:Title".freeze,
965
- label: "Form designation".freeze,
966
- range: "rdfs:Literal".freeze,
967
- type: "rdf:Property".freeze
968
- property :format,
969
- comment: %(File format or physical medium of an instance.).freeze,
970
- "dc:modified": "2014-10-27 (Updated)".freeze,
971
- domain: "bibframe:Instance".freeze,
972
- label: "Format".freeze,
973
- range: "rdfs:Literal".freeze,
974
- type: "rdf:Property".freeze
975
- property :formatOfMusic,
976
- comment: %(Format of a musical composition, e.g. full score, condensed score, vocal score, etc.).freeze,
977
- domain: "bibframe:Instance".freeze,
978
- label: "Format of music".freeze,
979
- range: "rdfs:Literal".freeze,
980
- type: "rdf:Property".freeze
1669
+ comment: ["Suggested use - With Work or Instance".freeze, "Suggested value - Work or Instance".freeze],
1670
+ definition: "Relationship for archival, visual, and manuscript resources to a finding aid or similar control materials.".freeze,
1671
+ "http://purl.org/dc/terms/modified": ["2016-04-21 (New)".freeze, "2016-04-29 (added inverse, updated range)".freeze],
1672
+ inverseOf: "http://id.loc.gov/ontologies/bibframe/findingAidOf".freeze,
1673
+ label: "Finding aid".freeze,
1674
+ subPropertyOf: "http://id.loc.gov/ontologies/bibframe/accompaniedBy".freeze,
1675
+ type: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze
1676
+ property :findingAidOf,
1677
+ comment: ["Suggested use - With Work or Instance".freeze, "Suggested value - Work or Instance".freeze],
1678
+ definition: "Finding aid or similar control materials for archival, visual, and manuscript resources.".freeze,
1679
+ "http://purl.org/dc/terms/modified": ["2016-04-21 (New)".freeze, "2016-04-29 (added inverse, updated range)".freeze],
1680
+ inverseOf: "http://id.loc.gov/ontologies/bibframe/findingAid".freeze,
1681
+ label: "Finding aid for".freeze,
1682
+ subPropertyOf: "http://id.loc.gov/ontologies/bibframe/accompanies".freeze,
1683
+ type: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze
1684
+ property :firstIssue,
1685
+ definition: "Beginning date of a resource and/or the sequential designations.".freeze,
1686
+ domain: "http://www.w3.org/2000/01/rdf-schema#Resource".freeze,
1687
+ "http://purl.org/dc/terms/modified": ["2016-04-21 (New)".freeze, "2021-06-09 (Removed domain [GH76])".freeze],
1688
+ label: "Multipart first issue".freeze,
1689
+ range: "http://www.w3.org/2000/01/rdf-schema#Literal".freeze,
1690
+ type: "http://www.w3.org/2002/07/owl#DatatypeProperty".freeze
1691
+ property :fontSize,
1692
+ definition: "Size of the type used to represent the characters and symbols in a resource.".freeze,
1693
+ domain: "http://id.loc.gov/ontologies/bibframe/Instance".freeze,
1694
+ editorialNote: "See also the ARM Ontology for strategies to model this information in greater detail.".freeze,
1695
+ "http://purl.org/dc/terms/modified": ["2016-04-21 (New)".freeze, "2021-06-09 (Added note [GH40])".freeze],
1696
+ label: "Font size".freeze,
1697
+ range: "http://id.loc.gov/ontologies/bibframe/FontSize".freeze,
1698
+ type: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze
981
1699
  property :frequency,
982
- comment: %(Intervals at which the issues or parts of a serial or the updates to an integrating resource are issued.).freeze,
983
- domain: "bibframe:Instance".freeze,
1700
+ definition: "Intervals at which the parts of a serially produced resource or the updates to an integrating resource are issued.".freeze,
1701
+ domain: "http://www.w3.org/2000/01/rdf-schema#Resource".freeze,
1702
+ "http://purl.org/dc/terms/modified": ["2016-04-21 (New)".freeze, "2021-06-09 (Removed domain [GH76])".freeze],
984
1703
  label: "Frequency".freeze,
985
- range: "rdfs:Literal".freeze,
986
- type: "rdf:Property".freeze
987
- property :frequencyNote,
988
- comment: %(Current or former publication frequency of a resource.).freeze,
989
- domain: "bibframe:Instance".freeze,
990
- label: "Frequency note".freeze,
991
- range: "rdfs:Literal".freeze,
992
- type: "rdf:Property".freeze
1704
+ range: "http://id.loc.gov/ontologies/bibframe/Frequency".freeze,
1705
+ type: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze
1706
+ property :generation,
1707
+ definition: "Relationship between an original carrier and the carrier of a reproduction made from the original.".freeze,
1708
+ domain: "http://id.loc.gov/ontologies/bibframe/Instance".freeze,
1709
+ "http://purl.org/dc/terms/modified": "2016-04-21 (New)".freeze,
1710
+ label: "Generation".freeze,
1711
+ range: "http://id.loc.gov/ontologies/bibframe/Generation".freeze,
1712
+ type: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze
993
1713
  property :generationDate,
994
- comment: %(Date of conversion of the data from another format.).freeze,
995
- "dc:modified": "2014-10-27 (Updated)".freeze,
1714
+ definition: "Date of conversion of the metadata from another format.".freeze,
1715
+ domain: "http://id.loc.gov/ontologies/bibframe/AdminMetadata".freeze,
1716
+ "http://purl.org/dc/terms/modified": "2016-04-21 (New)".freeze,
996
1717
  label: "Date generated".freeze,
997
- range: "rdfs:Literal".freeze,
998
- type: "rdf:Property".freeze
1718
+ range: "http://www.w3.org/2000/01/rdf-schema#Literal".freeze,
1719
+ subPropertyOf: "http://id.loc.gov/ontologies/bibframe/date".freeze,
1720
+ type: "http://www.w3.org/2002/07/owl#DatatypeProperty".freeze
999
1721
  property :generationProcess,
1000
- comment: %(Indication of the program or process used to generate the description by application of a particular transformation.).freeze,
1001
- "dc:modified": "2014-10-27 (Updated)".freeze,
1722
+ definition: "Indication of the program or process used to generate the description by application of a particular transformation.".freeze,
1723
+ domain: "http://id.loc.gov/ontologies/bibframe/AdminMetadata".freeze,
1724
+ "http://purl.org/dc/terms/modified": "2016-04-21 (New)".freeze,
1002
1725
  label: "Description generation".freeze,
1003
- range: "rdfs:Literal".freeze,
1004
- type: "rdf:Property".freeze
1005
- property :genre,
1006
- comment: %(Genre and other general characteristics associated with genre and form.).freeze,
1007
- "dc:modified": "2014-03-21 (New)".freeze,
1008
- label: "Genre".freeze,
1009
- range: "bibframe:Category".freeze,
1010
- type: "rdf:Property".freeze
1011
- property :geographicCoverageNote,
1012
- comment: %(Geographic entities covered by the resource.).freeze,
1013
- domain: "bibframe:Work".freeze,
1726
+ range: "http://id.loc.gov/ontologies/bibframe/GenerationProcess".freeze,
1727
+ type: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze
1728
+ property :genreForm,
1729
+ comment: "Suggested use - With Work, Instance or Item".freeze,
1730
+ definition: "Form category or genre to which a resource belongs".freeze,
1731
+ "http://purl.org/dc/terms/modified": ["2016-04-21 (New)".freeze, "2021-06-09 (Removed range [GH16])".freeze],
1732
+ label: "Genre/form".freeze,
1733
+ range: "http://www.w3.org/2000/01/rdf-schema#Resource".freeze,
1734
+ type: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze
1735
+ property :geographicCoverage,
1736
+ definition: "Geographic coverage of the content of the resource.".freeze,
1737
+ domain: "http://www.w3.org/2000/01/rdf-schema#Resource".freeze,
1738
+ "http://purl.org/dc/terms/modified": ["2016-04-21 (New)".freeze, "2017-02-06 (Changed from data to object property)".freeze, "2021-06-09 (Removed domain [GH15])".freeze],
1014
1739
  label: "Geographic coverage".freeze,
1015
- range: "rdfs:Literal".freeze,
1016
- type: "rdf:Property".freeze
1017
- property :graphicScaleNote,
1018
- comment: %(Textual information about scale, including the scale of graphic material item such as architectural drawings or three-dimensional artifacts.).freeze,
1019
- domain: "bibframe:Instance".freeze,
1020
- label: "Graphic scale".freeze,
1021
- range: "rdfs:Literal".freeze,
1022
- type: "rdf:Property".freeze
1023
- property :hasAccompaniment,
1024
- label: "has accompaniment".freeze,
1025
- type: "rdf:Property".freeze
1026
- property :hasAnnotation,
1027
- comment: %(Resource has an annotation.).freeze,
1028
- label: "Has annotation".freeze,
1029
- range: "bibframe:Annotation".freeze,
1030
- type: "rdf:Property".freeze
1031
- property :hasAuthority,
1032
- comment: %(Link to controlled form of name or subject and other information about.).freeze,
1033
- "dc:modified": "2014-04-10 (Updated range)".freeze,
1034
- domain: "bibframe:Authority".freeze,
1035
- label: "Authority information".freeze,
1036
- range: "bibframe:Resource".freeze,
1037
- type: "rdf:Property".freeze
1740
+ range: "http://id.loc.gov/ontologies/bibframe/GeographicCoverage".freeze,
1741
+ type: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze
1742
+ property :grantingInstitution,
1743
+ definition: "Name of degree granting institution.".freeze,
1744
+ domain: "http://id.loc.gov/ontologies/bibframe/Dissertation".freeze,
1745
+ "http://purl.org/dc/terms/modified": ["2016-04-21 (New)".freeze, "2021-06-09 (Removed range [GH63])".freeze],
1746
+ label: "Degree issuing institution".freeze,
1747
+ range: "http://www.w3.org/2000/01/rdf-schema#Resource".freeze,
1748
+ type: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze
1038
1749
  property :hasDerivative,
1039
- comment: %(Work has a modification for which it is the source.).freeze,
1040
- "dc:modified": "2014-04-10 (Range updated)".freeze,
1750
+ comment: ["Suggested use - With Work or Instance".freeze, "Suggested value - Work or Instance".freeze],
1751
+ definition: "Resource that is a modification of the described work.".freeze,
1752
+ "http://purl.org/dc/terms/modified": ["2016-04-21 (New)".freeze, "2016-04-29 (added inverse)".freeze],
1753
+ inverseOf: "http://id.loc.gov/ontologies/bibframe/derivativeOf".freeze,
1041
1754
  label: "Has derivative".freeze,
1042
- subPropertyOf: "bibframe:relatedTo".freeze,
1043
- type: "rdf:Property".freeze
1044
- property :hasDescription,
1045
- comment: %(Related resource that analyzes, comments on, critiques, evaluates, reviews, or otherwise describes the resource.).freeze,
1046
- "dc:modified": "2014-04-10 (Range updated)".freeze,
1047
- label: "Has description".freeze,
1048
- subPropertyOf: "bibframe:relatedTo".freeze,
1049
- type: "rdf:Property".freeze
1755
+ subPropertyOf: "http://id.loc.gov/ontologies/bibframe/relatedTo".freeze,
1756
+ type: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze
1050
1757
  property :hasEquivalent,
1051
- comment: %(Instance embodies the same expression of a work as the resource being described.).freeze,
1052
- "dc:modified": "2014-04-10 (Range updated)".freeze,
1758
+ comment: ["Suggested use - With Work, Instance or Item".freeze, "Suggested value - Work, Instance or Item".freeze],
1759
+ definition: "Resource embodies the same content as the described resource.".freeze,
1760
+ "http://purl.org/dc/terms/modified": "2016-04-21 (New)".freeze,
1053
1761
  label: "Equivalence".freeze,
1054
- subPropertyOf: "bibframe:relatedTo".freeze,
1055
- type: "rdf:Property".freeze
1762
+ subPropertyOf: "http://id.loc.gov/ontologies/bibframe/relatedTo".freeze,
1763
+ type: "http://www.w3.org/2002/07/owl#SymmetricProperty".freeze
1056
1764
  property :hasExpression,
1057
- comment: %(Work has a related expression. For use to connect Works under FRBR/RDA rules.).freeze,
1058
- "dc:modified": "2014-04-10 (Updated subproperty)".freeze,
1059
- domain: "bibframe:Work".freeze,
1765
+ definition: "Work that is an expression of a described Work. Use to relate Works under LRM/RDA guidelines or similar implementations.".freeze,
1766
+ domain: "http://id.loc.gov/ontologies/bibframe/Work".freeze,
1767
+ "http://purl.org/dc/terms/modified": ["2016-04-21 (New)".freeze, "2016-04-29 (added inverse)".freeze, "2021-06-09 (Modified definition [GH8])".freeze],
1768
+ inverseOf: "http://id.loc.gov/ontologies/bibframe/expressionOf".freeze,
1060
1769
  label: "Expressed as".freeze,
1061
- range: "bibframe:Work".freeze,
1062
- subPropertyOf: "bibframe:relatedTo".freeze,
1063
- type: "rdf:Property".freeze
1770
+ range: "http://id.loc.gov/ontologies/bibframe/Work".freeze,
1771
+ subPropertyOf: "http://id.loc.gov/ontologies/bibframe/relatedTo".freeze,
1772
+ type: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze
1064
1773
  property :hasInstance,
1065
- comment: %(Work has a related Instance/manifestation. For use to connect Works to Instances in the BIBFRAME structure.).freeze,
1066
- "dc:modified": "2014--03-21 (Updated definition)".freeze,
1067
- domain: "bibframe:Work".freeze,
1774
+ definition: "Instance is related to described Work. For use to connect Works to Instances in the BIBFRAME structure.".freeze,
1775
+ domain: "http://id.loc.gov/ontologies/bibframe/Work".freeze,
1776
+ "http://purl.org/dc/terms/modified": ["2016-04-21 (New)".freeze, "2016-04-29 (added inverse)".freeze],
1777
+ inverseOf: "http://id.loc.gov/ontologies/bibframe/instanceOf".freeze,
1068
1778
  label: "Instance of Work".freeze,
1069
- range: "bibframe:Instance".freeze,
1070
- subPropertyOf: "bibframe:relatedTo".freeze,
1071
- type: "rdf:Property".freeze
1779
+ range: "http://id.loc.gov/ontologies/bibframe/Instance".freeze,
1780
+ subPropertyOf: "http://id.loc.gov/ontologies/bibframe/relatedTo".freeze,
1781
+ type: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze
1782
+ property :hasItem,
1783
+ definition: "Item which is an example of the described Instance.".freeze,
1784
+ domain: "http://id.loc.gov/ontologies/bibframe/Instance".freeze,
1785
+ "http://purl.org/dc/terms/modified": ["2016-04-21 (New)".freeze, "2016-04-29 (added inverse)".freeze, "2017-02-07 (slight revision of definition)".freeze],
1786
+ inverseOf: "http://id.loc.gov/ontologies/bibframe/itemOf".freeze,
1787
+ label: "Has holding".freeze,
1788
+ range: "http://id.loc.gov/ontologies/bibframe/Item".freeze,
1789
+ subPropertyOf: "http://id.loc.gov/ontologies/bibframe/relatedTo".freeze,
1790
+ type: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze
1072
1791
  property :hasPart,
1073
- comment: %(Resource that is included either physically or logically contained in the described resource).freeze,
1074
- "dc:modified": "2014-04-10 (Range updated)".freeze,
1792
+ comment: ["Suggested use - With Work, Instance, Item or Event".freeze, "Suggested value - Work, Instance, Item or Event".freeze],
1793
+ definition: "Resource that is included either physically or logically in the described resource".freeze,
1794
+ "http://purl.org/dc/terms/modified": ["2016-04-21 (New)".freeze, "2016-04-29 (added inverse)".freeze, "2021-06-09 (Use with Event also [GH9])".freeze],
1795
+ inverseOf: "http://id.loc.gov/ontologies/bibframe/partOf".freeze,
1075
1796
  label: "Has part".freeze,
1076
- subPropertyOf: "bibframe:relatedTo".freeze,
1077
- type: "rdf:Property".freeze
1078
- property :hdl,
1079
- comment: %(Unique and persistent identifier for digital objects developed by the Corporation for National Research Initiatives.).freeze,
1080
- domain: "bibframe:Instance".freeze,
1081
- label: "Handle".freeze,
1082
- range: "bibframe:Identifier".freeze,
1083
- subPropertyOf: "bibframe:identifier".freeze,
1084
- type: "rdf:Property".freeze
1797
+ subPropertyOf: "http://id.loc.gov/ontologies/bibframe/relatedTo".freeze,
1798
+ type: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze
1799
+ property :hasReproduction,
1800
+ definition: "Resource that reproduces another Resource.".freeze,
1801
+ domain: "http://id.loc.gov/ontologies/bibframe/Instance".freeze,
1802
+ "http://purl.org/dc/terms/modified": ["2016-04-21 (New)".freeze, "2016-04-29 (added inverse)".freeze],
1803
+ inverseOf: "http://id.loc.gov/ontologies/bibframe/reproductionOf".freeze,
1804
+ label: "Reproduced as".freeze,
1805
+ range: "http://id.loc.gov/ontologies/bibframe/Instance".freeze,
1806
+ subPropertyOf: "http://id.loc.gov/ontologies/bibframe/hasEquivalent".freeze,
1807
+ type: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze
1808
+ property :hasSeries,
1809
+ comment: ["Suggested use - With Work or Instance".freeze, "Suggested value - Work or Instance".freeze],
1810
+ definition: "Resource in which the part has been issued; the title of the larger resource appears on the part.".freeze,
1811
+ "http://purl.org/dc/terms/modified": ["2016-04-21 (New)".freeze, "2016-04-29 (added inverse, updated range)".freeze],
1812
+ inverseOf: "http://id.loc.gov/ontologies/bibframe/seriesOf".freeze,
1813
+ label: "In series".freeze,
1814
+ subPropertyOf: "http://id.loc.gov/ontologies/bibframe/partOf".freeze,
1815
+ type: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze
1816
+ property :hasSubseries,
1817
+ comment: ["Suggested use - With Work or Instance".freeze, "Suggested value - Work or Instance".freeze],
1818
+ definition: "series resource that is part of another series.".freeze,
1819
+ "http://purl.org/dc/terms/modified": ["2016-04-21 (New)".freeze, "2016-04-29 (added inverse, updated range)".freeze],
1820
+ inverseOf: "http://id.loc.gov/ontologies/bibframe/subseriesOf".freeze,
1821
+ label: "Subseries".freeze,
1822
+ subPropertyOf: "http://id.loc.gov/ontologies/bibframe/partOf".freeze,
1823
+ type: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze
1085
1824
  property :heldBy,
1086
- comment: %(Entity holding the item or from which it is available).freeze,
1087
- domain: "bibframe:HeldMaterial".freeze,
1825
+ definition: "Entity holding the item or from which it is available.".freeze,
1826
+ domain: "http://id.loc.gov/ontologies/bibframe/Item".freeze,
1827
+ "http://purl.org/dc/terms/modified": ["2016-04-21 (New)".freeze, "2021-06-09 (Removed range [GH63])".freeze],
1088
1828
  label: "Held by".freeze,
1089
- range: "bibframe:Agent".freeze,
1090
- type: "rdf:Property".freeze
1091
- property :holdingFor,
1092
- comment: %(Instance for which holding is reported).freeze,
1093
- domain: "bibframe:HeldMaterial".freeze,
1094
- label: "Holding for".freeze,
1095
- range: "bibframe:Instance".freeze,
1096
- subPropertyOf: "bibframe:annotates".freeze,
1097
- type: "rdf:Property".freeze
1098
- property :identifier,
1099
- comment: %(Number or code that uniquely identifies an entity.).freeze,
1100
- domain: "bibframe:Resource".freeze,
1829
+ range: "http://www.w3.org/2000/01/rdf-schema#Resource".freeze,
1830
+ type: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze
1831
+ property :hierarchicalLevel,
1832
+ definition: "Hierarchical position of the described materials relative to other material from the same source.".freeze,
1833
+ domain: "http://id.loc.gov/ontologies/bibframe/CollectionArrangement".freeze,
1834
+ "http://purl.org/dc/terms/modified": ["2016-04-21 (New)".freeze, "2021-06-09 (Modified range [GH77])".freeze],
1835
+ label: "Hierarchical level of material".freeze,
1836
+ range: "http://www.w3.org/2000/01/rdf-schema#Literal".freeze,
1837
+ type: "http://www.w3.org/2002/07/owl#DatatypeProperty".freeze
1838
+ property :historyOfWork,
1839
+ definition: "Information about the history of a Work.".freeze,
1840
+ domain: "http://id.loc.gov/ontologies/bibframe/Work".freeze,
1841
+ "http://purl.org/dc/terms/modified": "2016-04-21 (New)".freeze,
1842
+ label: "History of the work".freeze,
1843
+ range: "http://www.w3.org/2000/01/rdf-schema#Literal".freeze,
1844
+ type: "http://www.w3.org/2002/07/owl#DatatypeProperty".freeze
1845
+ property :identifiedBy,
1846
+ definition: "Character string associated with a resource that serves to differentiate that resource from other resources, i.e., that uniquely identifies an entity.".freeze,
1847
+ domain: "http://www.w3.org/2000/01/rdf-schema#Resource".freeze,
1848
+ "http://purl.org/dc/terms/modified": ["2016-04-21 (New)".freeze, "2017-05-04 (New inverse)".freeze],
1849
+ inverseOf: "http://id.loc.gov/ontologies/bibframe/identifies".freeze,
1101
1850
  label: "Identifier".freeze,
1102
- range: "bibframe:Identifier".freeze,
1103
- type: "rdf:Property".freeze
1104
- property :identifierAssigner,
1105
- comment: %(Entity that assigned the identifier.).freeze,
1106
- domain: "bibframe:Identifier".freeze,
1107
- label: "Identifier assigner".freeze,
1108
- range: "rdfs:Literal".freeze,
1109
- type: "rdf:Property".freeze
1110
- property :identifierQualifier,
1111
- comment: %(Qualifying information associated with the identifier, e.g. specifying its applicability.).freeze,
1112
- domain: "bibframe:Identifier".freeze,
1113
- label: "Identifier qualifier".freeze,
1114
- range: "rdfs:Literal".freeze,
1115
- type: "rdf:Property".freeze
1116
- property :identifierScheme,
1117
- comment: %(Scheme within which the identifier is unique.).freeze,
1118
- "dc:modified": ["'2014-06-04 (Updated range)".freeze, "2014-06-04 (Updated mapping)".freeze],
1119
- domain: "bibframe:Identifier".freeze,
1120
- label: "Identifier scheme".freeze,
1121
- range: "rdfs:Resource".freeze,
1122
- type: "rdf:Property".freeze
1123
- property :identifierStatus,
1124
- comment: %(Indication of whether the identifier is canceled or invalid.).freeze,
1125
- domain: "bibframe:Identifier".freeze,
1126
- label: "Identifier status".freeze,
1127
- range: "rdfs:Literal".freeze,
1128
- type: "rdf:Property".freeze
1129
- property :identifierValue,
1130
- comment: %(Value of the identifier.).freeze,
1131
- domain: "bibframe:Identifier".freeze,
1132
- label: "Identifier value".freeze,
1133
- range: "rdfs:Literal".freeze,
1134
- type: "rdf:Property".freeze
1135
- property :illustrationNote,
1136
- comment: %(Information about illustrative material in the resource.).freeze,
1137
- domain: "bibframe:Instance".freeze,
1138
- label: "Illustrative content note".freeze,
1139
- range: "rdfs:Literal".freeze,
1140
- type: "rdf:Property".freeze
1851
+ range: "http://id.loc.gov/ontologies/bibframe/Identifier".freeze,
1852
+ type: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze
1853
+ property :identifies,
1854
+ definition: "Resource that is associated with a character string that serves to differentiate one resource from another.".freeze,
1855
+ domain: "http://id.loc.gov/ontologies/bibframe/Identifier".freeze,
1856
+ "http://purl.org/dc/terms/modified": "2017-02-03 (New inverse)".freeze,
1857
+ inverseOf: "http://id.loc.gov/ontologies/bibframe/identifiedBy".freeze,
1858
+ label: "Resource identified".freeze,
1859
+ range: "http://www.w3.org/2000/01/rdf-schema#Resource".freeze,
1860
+ type: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze
1861
+ property :illustrativeContent,
1862
+ comment: "Suggested use - With Work or Instance".freeze,
1863
+ definition: "Information about content intended to illustrate a resource.".freeze,
1864
+ "http://purl.org/dc/terms/modified": "2016-04-21 (New)".freeze,
1865
+ label: "Illustrative content information".freeze,
1866
+ range: "http://id.loc.gov/ontologies/bibframe/Illustration".freeze,
1867
+ type: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze
1141
1868
  property :immediateAcquisition,
1142
- comment: %(Information about the circumstances \(e.g., source, date, method\) under which the resource was directly acquired.).freeze,
1869
+ definition: "Information about the circumstances, e.g., source, date, method, under which the resource was directly acquired.".freeze,
1870
+ domain: "http://id.loc.gov/ontologies/bibframe/Item".freeze,
1871
+ "http://purl.org/dc/terms/modified": ["2016-04-21 (New)".freeze, "2017-02-06 (Changed from data to object property)".freeze],
1143
1872
  label: "Immediate acquisition".freeze,
1144
- range: "rdfs:Literal".freeze,
1145
- type: "rdf:Property".freeze
1873
+ range: "http://id.loc.gov/ontologies/bibframe/ImmediateAcquisition".freeze,
1874
+ type: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze
1146
1875
  property :index,
1147
- comment: %(Work has an accompanying index).freeze,
1148
- domain: "bibframe:Work".freeze,
1149
- label: "Index".freeze,
1150
- range: "bibframe:Work".freeze,
1151
- subPropertyOf: "bibframe:accompaniedBy".freeze,
1152
- type: "rdf:Property".freeze
1876
+ comment: ["Suggested use - With Work or Instance".freeze, "Suggested value - Work or Instance".freeze],
1877
+ definition: "Resource has an accompanying index".freeze,
1878
+ "http://purl.org/dc/terms/modified": ["2016-04-21 (New)".freeze, "2016-04-29 (added inverse, updated range)".freeze, "2017-02-03 (corrected label)".freeze],
1879
+ inverseOf: "http://id.loc.gov/ontologies/bibframe/indexOf".freeze,
1880
+ label: "Has index".freeze,
1881
+ subPropertyOf: "http://id.loc.gov/ontologies/bibframe/accompaniedBy".freeze,
1882
+ type: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze
1883
+ property :indexOf,
1884
+ comment: ["Suggested use - With Work or Instance".freeze, "Suggested value - Work or Instance".freeze],
1885
+ definition: "Index that accompanies a resource.".freeze,
1886
+ "http://purl.org/dc/terms/modified": ["2016-04-21 (New)".freeze, "2016-04-29 (added inverse, updated range)".freeze],
1887
+ inverseOf: "http://id.loc.gov/ontologies/bibframe/index".freeze,
1888
+ label: "Index to".freeze,
1889
+ subPropertyOf: "http://id.loc.gov/ontologies/bibframe/accompanies".freeze,
1890
+ type: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze
1153
1891
  property :instanceOf,
1154
- comment: %(Work this resource instantiates or manifests. For use to connect Instances to Works in the BIBFRAME structure.).freeze,
1155
- "dc:modified": "2014--03-21 (Updated definition)".freeze,
1156
- domain: "bibframe:Instance".freeze,
1892
+ definition: "Work the Instance described instantiates or manifests. For use to connect Instances to Works in the BIBFRAME structure.".freeze,
1893
+ domain: "http://id.loc.gov/ontologies/bibframe/Instance".freeze,
1894
+ "http://purl.org/dc/terms/modified": ["2016-04-21 (New)".freeze, "2016-04-29 (added inverse)".freeze],
1895
+ inverseOf: "http://id.loc.gov/ontologies/bibframe/hasInstance".freeze,
1157
1896
  label: "Instance of".freeze,
1158
- range: "bibframe:Work".freeze,
1159
- subPropertyOf: "bibframe:relatedTo".freeze,
1160
- type: "rdf:Property".freeze
1161
- property :instanceTitle,
1162
- comment: %(Word, character, or group of words and/or characters that is the main name of an instance.).freeze,
1163
- domain: "bibframe:Instance".freeze,
1164
- label: "Instance title".freeze,
1165
- range: "bibframe:Title".freeze,
1166
- type: "rdf:Property".freeze
1897
+ range: "http://id.loc.gov/ontologies/bibframe/Work".freeze,
1898
+ subPropertyOf: "http://id.loc.gov/ontologies/bibframe/relatedTo".freeze,
1899
+ type: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze
1900
+ property :instrument,
1901
+ definition: "Instrument for which a musical Work is appropriate.".freeze,
1902
+ domain: "http://id.loc.gov/ontologies/bibframe/Work".freeze,
1903
+ "http://purl.org/dc/terms/modified": "2016-04-21 (New)".freeze,
1904
+ label: "Instrument".freeze,
1905
+ range: "http://id.loc.gov/ontologies/bibframe/MusicInstrument".freeze,
1906
+ type: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze
1907
+ property :instrumentalType,
1908
+ definition: "Specific role of instrument, such as alternate, doubling, solo, ensemble.".freeze,
1909
+ domain: "http://id.loc.gov/ontologies/bibframe/MusicInstrument".freeze,
1910
+ "http://purl.org/dc/terms/modified": "2016-04-21 (New)".freeze,
1911
+ label: "Instrument role".freeze,
1912
+ range: "http://www.w3.org/2000/01/rdf-schema#Literal".freeze,
1913
+ type: "http://www.w3.org/2002/07/owl#DatatypeProperty".freeze
1167
1914
  property :intendedAudience,
1168
- comment: %(Information that identifies the specific audience or intellectual level for which the content of the resource is considered appropriate.).freeze,
1915
+ comment: "Suggested use - With Work or Instance".freeze,
1916
+ definition: "Information that identifies the specific audience or intellectual level for which the content of the resource is considered appropriate.".freeze,
1917
+ "http://purl.org/dc/terms/modified": "2016-04-21 (New)".freeze,
1169
1918
  label: "Intended audience".freeze,
1170
- range: "bibframe:IntendedAudience".freeze,
1171
- type: "rdf:Property".freeze
1172
- property :isan,
1173
- comment: %(International Standard Audiovisual Number.).freeze,
1174
- domain: "bibframe:Work".freeze,
1175
- label: "ISAN".freeze,
1176
- range: "bibframe:Identifier".freeze,
1177
- subPropertyOf: "bibframe:identifier".freeze,
1178
- type: "rdf:Property".freeze
1179
- property :isbn,
1180
- comment: %(International Standard Book Number.).freeze,
1181
- domain: "bibframe:Instance".freeze,
1182
- label: "ISBN".freeze,
1183
- range: "bibframe:Identifier".freeze,
1184
- subPropertyOf: "bibframe:identifier".freeze,
1185
- type: "rdf:Property".freeze
1186
- property :isbn10,
1187
- comment: %(10 digit version of the International Standard Book Number.).freeze,
1188
- domain: "bibframe:Instance".freeze,
1189
- label: "ISBN-10".freeze,
1190
- range: "bibframe:Identifier".freeze,
1191
- subPropertyOf: "bibframe:isbn".freeze,
1192
- type: "rdf:Property".freeze
1193
- property :isbn13,
1194
- comment: %(13 digit version of the International Standard Book Number.).freeze,
1195
- domain: "bibframe:Instance".freeze,
1196
- label: "ISBN-13".freeze,
1197
- range: "bibframe:Identifier".freeze,
1198
- subPropertyOf: "bibframe:isbn".freeze,
1199
- type: "rdf:Property".freeze
1200
- property :ismn,
1201
- comment: %(International Standard Music Number.).freeze,
1202
- domain: "bibframe:Instance".freeze,
1203
- label: "ISMN".freeze,
1204
- range: "bibframe:Identifier".freeze,
1205
- subPropertyOf: "bibframe:identifier".freeze,
1206
- type: "rdf:Property".freeze
1207
- property :iso,
1208
- comment: %(International Organization for Standardization standard number.).freeze,
1209
- domain: "bibframe:Instance".freeze,
1210
- label: "ISO number".freeze,
1211
- range: "bibframe:Identifier".freeze,
1212
- subPropertyOf: "bibframe:identifier".freeze,
1213
- type: "rdf:Property".freeze
1214
- property :issn,
1215
- comment: %(International Standard Serial Number identifier.).freeze,
1216
- domain: "bibframe:Instance".freeze,
1217
- label: "ISSN".freeze,
1218
- range: "bibframe:Identifier".freeze,
1219
- subPropertyOf: "bibframe:identifier".freeze,
1220
- type: "rdf:Property".freeze
1221
- property :issnL,
1222
- comment: %(International Standard Serial Number that links together various media versions of a continuing resource.).freeze,
1223
- domain: "bibframe:Work".freeze,
1224
- label: "ISSN-L".freeze,
1225
- range: "bibframe:Identifier".freeze,
1226
- subPropertyOf: "bibframe:identifier".freeze,
1227
- type: "rdf:Property".freeze
1228
- property :issueNumber,
1229
- comment: %(Number used to identify the issue designation, or serial identification, assigned by a publisher to a sound recording.).freeze,
1230
- domain: "bibframe:Instance".freeze,
1231
- label: "Audio issue number".freeze,
1232
- range: "bibframe:Identifier".freeze,
1233
- subPropertyOf: "bibframe:identifier".freeze,
1234
- type: "rdf:Property".freeze
1919
+ range: "http://id.loc.gov/ontologies/bibframe/IntendedAudience".freeze,
1920
+ type: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze
1921
+ property :issuance,
1922
+ comment: "Suggested use - With Work or Instance".freeze,
1923
+ definition: "Categorization reflecting whether a resource is issued in one or more parts, the way it is updated, and its intended termination.".freeze,
1924
+ "http://purl.org/dc/terms/modified": "2016-04-21 (New)".freeze,
1925
+ label: "Mode of issuance".freeze,
1926
+ range: "http://id.loc.gov/ontologies/bibframe/Issuance".freeze,
1927
+ type: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze
1235
1928
  property :issuedWith,
1236
- comment: %(Instance that is issued on the same carrier as the manifestation being described.).freeze,
1237
- domain: "bibframe:Instance".freeze,
1929
+ comment: ["Suggested use - With Work or Instance".freeze, "Suggested value - Work or Instance".freeze],
1930
+ definition: "Resource that is issued on the same carrier as the resource being described.".freeze,
1931
+ "http://purl.org/dc/terms/modified": ["2016-04-21 (New)".freeze, "2021-06-09 (Removed range [GH62], Broadened domain [GH62])".freeze],
1238
1932
  label: "Issued with".freeze,
1239
- range: "bibframe:Instance".freeze,
1240
- subPropertyOf: "bibframe:hasAccompaniment".freeze,
1241
- type: "rdf:Property".freeze
1242
- property :istc,
1243
- comment: %(International Standard Text code, a numbering system developed to enable the unique identification of textual works.).freeze,
1244
- "dc:modified": "a,z".freeze,
1245
- domain: "bibframe:Work".freeze,
1246
- label: "ISTC".freeze,
1247
- range: "bibframe:Identifier".freeze,
1248
- subPropertyOf: "bibframe:identifier".freeze,
1249
- type: "rdf:Property".freeze
1250
- property :iswc,
1251
- comment: %(International Standard Musical Work Code, a unique, persistent reference number for the identification of musical works.).freeze,
1252
- domain: "bibframe:Work".freeze,
1253
- label: "ISWC".freeze,
1254
- range: "bibframe:Identifier".freeze,
1255
- subPropertyOf: "bibframe:identifier".freeze,
1256
- type: "rdf:Property".freeze
1257
- property :itemId,
1258
- comment: %(Identification number assigned to data about one item held.).freeze,
1259
- domain: "bibframe:HeldItem".freeze,
1260
- label: "System item identifier".freeze,
1261
- range: "rdfs:Literal".freeze,
1262
- type: "rdf:Property".freeze
1263
- property :keyTitle,
1264
- comment: %(Unique title for a continuing resource that is assigned by the ISSN International Center in conjunction with an ISSN.).freeze,
1265
- domain: "bibframe:Instance".freeze,
1266
- label: "Key title".freeze,
1267
- range: "bibframe:Title".freeze,
1268
- subPropertyOf: "bibframe:instanceTitle".freeze,
1269
- type: "rdf:Property".freeze
1270
- property :label,
1271
- comment: %(Text string expressing the property value.).freeze,
1272
- domain: "bibframe:Resource".freeze,
1273
- label: "Label".freeze,
1274
- range: "rdfs:Literal".freeze,
1275
- type: "rdf:Property".freeze
1933
+ subPropertyOf: "http://id.loc.gov/ontologies/bibframe/accompanies".freeze,
1934
+ type: "http://www.w3.org/2002/07/owl#SymmetricProperty".freeze
1935
+ property :itemOf,
1936
+ definition: "Instance for which the described Item is an example.".freeze,
1937
+ domain: "http://id.loc.gov/ontologies/bibframe/Item".freeze,
1938
+ "http://purl.org/dc/terms/modified": ["2016-04-21 (New)".freeze, "2016-04-29 (added inverse)".freeze, "2017-02-07 (slight revision of definition)".freeze],
1939
+ inverseOf: "http://id.loc.gov/ontologies/bibframe/hasItem".freeze,
1940
+ label: "Holding for".freeze,
1941
+ range: "http://id.loc.gov/ontologies/bibframe/Instance".freeze,
1942
+ subPropertyOf: "http://id.loc.gov/ontologies/bibframe/relatedTo".freeze,
1943
+ type: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze
1944
+ property :itemPortion,
1945
+ definition: "Number attached to a classification string that indicates a particular item.".freeze,
1946
+ domain: "http://id.loc.gov/ontologies/bibframe/Classification".freeze,
1947
+ "http://purl.org/dc/terms/modified": "2016-04-21 (New)".freeze,
1948
+ label: "Classification item number".freeze,
1949
+ range: "http://www.w3.org/2000/01/rdf-schema#Literal".freeze,
1950
+ type: "http://www.w3.org/2002/07/owl#DatatypeProperty".freeze
1276
1951
  property :language,
1277
- comment: %(Languages associated with a resource including those for multilingual resources and translated resources.).freeze,
1278
- label: "Language".freeze,
1279
- range: "bibframe:Language".freeze,
1280
- type: "rdf:Property".freeze
1281
- property :languageNote,
1282
- comment: %(Note concerning the language of the material or its parts.).freeze,
1283
- domain: "bibframe:Work".freeze,
1284
- label: "Language note".freeze,
1285
- range: "rdfs:Literal".freeze,
1286
- type: "rdf:Property".freeze
1287
- property :languageOfPart,
1288
- comment: %(Language or notation system used to convey the content of the resource \(associated with part or all of a resource\).).freeze,
1289
- domain: "bibframe:Language".freeze,
1290
- label: "Language of part".freeze,
1291
- range: "rdfs:Literal".freeze,
1292
- type: "rdf:Property".freeze
1293
- property :languageOfPartUri,
1294
- comment: %(Language or notation system used to convey the content of the resource \(associated with part or all of a resource\).).freeze,
1295
- domain: "bibframe:Language".freeze,
1296
- label: "Language of part URI".freeze,
1297
- range: "rdfs:Resource".freeze,
1298
- type: "rdf:Property".freeze
1299
- property :languageSource,
1300
- comment: %(Language code or name list from which value is taken.).freeze,
1301
- domain: "bibframe:Language".freeze,
1302
- label: "Language source".freeze,
1303
- range: "rdfs:Literal".freeze,
1304
- type: "rdf:Property".freeze
1305
- property :lcOverseasAcq,
1306
- comment: %(Identification number assigned by the Library of Congress to works acquired through one of its overseas acquisition programs.).freeze,
1307
- domain: "bibframe:Instance".freeze,
1308
- label: "LC acquisition program".freeze,
1309
- range: "bibframe:Identifier".freeze,
1310
- subPropertyOf: "bibframe:identifier".freeze,
1311
- type: "rdf:Property".freeze
1312
- property :lccn,
1313
- comment: %(Library of Congress Control Number, which identifies the resource description.).freeze,
1314
- domain: "bibframe:Instance".freeze,
1315
- label: "LCCN".freeze,
1316
- range: "bibframe:Identifier".freeze,
1317
- subPropertyOf: "bibframe:identifier".freeze,
1318
- type: "rdf:Property".freeze
1952
+ definition: "Language associated with a resource or its parts.".freeze,
1953
+ domain: "http://www.w3.org/2000/01/rdf-schema#Resource".freeze,
1954
+ "http://purl.org/dc/terms/modified": "2016-04-21 (New)".freeze,
1955
+ label: "Language information".freeze,
1956
+ range: "http://id.loc.gov/ontologies/bibframe/Language".freeze,
1957
+ type: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze
1958
+ property :lastIssue,
1959
+ definition: "Ending date of a resource and/or the sequential designations.".freeze,
1960
+ domain: "http://www.w3.org/2000/01/rdf-schema#Resource".freeze,
1961
+ "http://purl.org/dc/terms/modified": ["2016-04-21 (New)".freeze, "2021-06-09 (Removed domain [GH76])".freeze],
1962
+ label: "Multipart last issue".freeze,
1963
+ range: "http://www.w3.org/2000/01/rdf-schema#Literal".freeze,
1964
+ type: "http://www.w3.org/2002/07/owl#DatatypeProperty".freeze
1965
+ property :layout,
1966
+ definition: "Arrangement of text, images, tactile notation, etc., in a resource.".freeze,
1967
+ domain: "http://id.loc.gov/ontologies/bibframe/Instance".freeze,
1968
+ "http://purl.org/dc/terms/modified": "2016-04-21 (New)".freeze,
1969
+ label: "Layout".freeze,
1970
+ range: "http://id.loc.gov/ontologies/bibframe/Layout".freeze,
1971
+ type: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze
1319
1972
  property :legalDate,
1320
- comment: %(Date of legal work, or promulgation of a law, or signing of a treaty.).freeze,
1973
+ definition: "Date of legal work, or promulgation of a law, or signing of a treaty.".freeze,
1974
+ domain: "http://id.loc.gov/ontologies/bibframe/Work".freeze,
1975
+ "http://purl.org/dc/terms/modified": "2016-04-21 (New)".freeze,
1321
1976
  label: "Date of legal work".freeze,
1322
- range: "rdfs:Literal".freeze,
1323
- type: "rdf:Property".freeze
1324
- property :legalDeposit,
1325
- comment: %(Number assigned to a copyright or legal deposit, which Identifies a resource description.).freeze,
1326
- domain: "bibframe:Instance".freeze,
1327
- label: "Copyright number".freeze,
1328
- range: "bibframe:Identifier".freeze,
1329
- subPropertyOf: "bibframe:identifier".freeze,
1330
- type: "rdf:Property".freeze
1331
- property :lendingPolicy,
1332
- comment: %(Policy statement about whether and with what restrictions the holding may be lent).freeze,
1333
- domain: "bibframe:HeldMaterial".freeze,
1334
- label: "Lending policy".freeze,
1335
- range: "rdfs:Literal".freeze,
1336
- type: "rdf:Property".freeze
1337
- property :local,
1338
- comment: %(Identifier established locally and not a standard number.).freeze,
1339
- label: "Local identifier".freeze,
1340
- range: "bibframe:Identifier".freeze,
1341
- subPropertyOf: "bibframe:identifier".freeze,
1342
- type: "rdf:Property".freeze
1343
- property :manufacture,
1344
- comment: %(Information relating to manufacture of an instance.).freeze,
1345
- domain: "bibframe:Instance".freeze,
1346
- label: "Manufacture event".freeze,
1347
- range: "bibframe:Provider".freeze,
1348
- subPropertyOf: "bibframe:provider".freeze,
1349
- type: "rdf:Property".freeze
1350
- property :materialArrangement,
1351
- comment: %(Pattern of arrangement of materials within a unit.).freeze,
1352
- domain: "bibframe:Arrangement".freeze,
1353
- label: "Arrangement of material".freeze,
1354
- range: "rdfs:Literal".freeze,
1355
- type: "rdf:Property".freeze
1356
- property :materialHierarchicalLevel,
1357
- comment: %(Hierarchical position of the described materials relative to other material from the same source.).freeze,
1358
- domain: "bibframe:Arrangement".freeze,
1359
- label: "Hierarchical level of material".freeze,
1360
- range: "rdfs:Literal".freeze,
1361
- type: "rdf:Property".freeze
1362
- property :materialOrganization,
1363
- comment: %(Manner in which resource is divided into smaller units.).freeze,
1364
- domain: "bibframe:Arrangement".freeze,
1365
- label: "Organization of material".freeze,
1366
- range: "rdfs:Literal".freeze,
1367
- type: "rdf:Property".freeze
1368
- property :materialPart,
1369
- comment: %(Part of the resource to which information applies.).freeze,
1370
- domain: "bibframe:Arrangement".freeze,
1371
- label: "Part of material".freeze,
1372
- range: "rdfs:Literal".freeze,
1373
- type: "rdf:Property".freeze
1374
- property :matrixNumber,
1375
- comment: %(Matrix number from the master from which a specific sound recording was pressed.).freeze,
1376
- domain: "bibframe:Instance".freeze,
1377
- label: "Audio matrix number".freeze,
1378
- range: "bibframe:Identifier".freeze,
1379
- subPropertyOf: "bibframe:identifier".freeze,
1380
- type: "rdf:Property".freeze
1381
- property :mediaCategory,
1382
- comment: %(Categorization reflecting the general type of intermediation device required to view, play, run, etc., the content of a resource.).freeze,
1383
- domain: "bibframe:Instance".freeze,
1977
+ range: "http://www.w3.org/2000/01/rdf-schema#Literal".freeze,
1978
+ subPropertyOf: "http://id.loc.gov/ontologies/bibframe/date".freeze,
1979
+ type: "http://www.w3.org/2002/07/owl#DatatypeProperty".freeze
1980
+ property :mainTitle,
1981
+ definition: "Title being addressed. Possible title component.".freeze,
1982
+ domain: "http://id.loc.gov/ontologies/bibframe/Title".freeze,
1983
+ "http://purl.org/dc/terms/modified": "2016-04-21 (New)".freeze,
1984
+ label: "Main title".freeze,
1985
+ range: "http://www.w3.org/2000/01/rdf-schema#Literal".freeze,
1986
+ type: "http://www.w3.org/2002/07/owl#DatatypeProperty".freeze
1987
+ property :material,
1988
+ comment: "Suggested use - With Work, Instance or Item".freeze,
1989
+ definition: "Resource uses, is composed of, integrates, etc. the related material.".freeze,
1990
+ "http://purl.org/dc/terms/modified": "2021-06-09 (New [GH26])".freeze,
1991
+ label: "Material".freeze,
1992
+ range: "http://www.w3.org/2000/01/rdf-schema#Resource".freeze,
1993
+ type: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze
1994
+ property :materialOf,
1995
+ comment: "Suggested use - With Work, Instance or Item".freeze,
1996
+ definition: "This material is related to a resource.".freeze,
1997
+ "http://purl.org/dc/terms/modified": "2021-06-09 (New [GH26])".freeze,
1998
+ label: "Material of".freeze,
1999
+ range: "http://www.w3.org/2000/01/rdf-schema#Resource".freeze,
2000
+ type: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze
2001
+ property :media,
2002
+ comment: "Suggested use - With Work or Instance".freeze,
2003
+ definition: "Categorization reflecting the general type of intermediation device required to view, play, run, etc., the content of a resource.".freeze,
2004
+ "http://purl.org/dc/terms/modified": "2016-04-21 (New)".freeze,
1384
2005
  label: "Media type".freeze,
1385
- range: "bibframe:Category".freeze,
1386
- type: "rdf:Property".freeze
2006
+ range: "http://id.loc.gov/ontologies/bibframe/Media".freeze,
2007
+ type: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze
1387
2008
  property :mergedToForm,
1388
- comment: %(One of two or more works that come together to form a new work.).freeze,
1389
- "dc:modified": "2014-04-10 (Updated subproperty)".freeze,
1390
- domain: "bibframe:Work".freeze,
2009
+ comment: ["Suggested use - With Work or Instance".freeze, "Suggested value - Work or Instance".freeze],
2010
+ definition: "One of two or more resources that come together to form a new resource.".freeze,
2011
+ "http://purl.org/dc/terms/modified": ["2016-04-21 (New)".freeze, "2016-04-29 (added inverse, updated range)".freeze],
2012
+ inverseOf: "http://id.loc.gov/ontologies/bibframe/mergerOf".freeze,
1391
2013
  label: "Merged to form".freeze,
1392
- range: "bibframe:Work".freeze,
1393
- subPropertyOf: "bibframe:succeededBy".freeze,
1394
- type: "rdf:Property".freeze
1395
- property :modeOfIssuance,
1396
- comment: %(Categorization reflecting whether a resource is issued in one or more parts, the way it is updated, and its intended termination.).freeze,
1397
- domain: "bibframe:Instance".freeze,
1398
- label: "Mode of issuance".freeze,
1399
- range: "rdfs:Literal".freeze,
1400
- type: "rdf:Property".freeze
2014
+ subPropertyOf: "http://id.loc.gov/ontologies/bibframe/succeededBy".freeze,
2015
+ type: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze
2016
+ property :mergerOf,
2017
+ comment: ["Suggested use - With Work or Instance".freeze, "Suggested value - Work or Instance".freeze],
2018
+ definition: "One of two or more resources which came together to form a new resource.".freeze,
2019
+ "http://purl.org/dc/terms/modified": ["2016-04-21 (New)".freeze, "2016-04-29 (added inverse, updated range)".freeze],
2020
+ inverseOf: "http://id.loc.gov/ontologies/bibframe/mergedToForm".freeze,
2021
+ label: "Merger of".freeze,
2022
+ subPropertyOf: "http://id.loc.gov/ontologies/bibframe/precededBy".freeze,
2023
+ type: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze
2024
+ property :mount,
2025
+ definition: "Physical material or object used for the support or backing to which the base material of a resource has been attached.".freeze,
2026
+ domain: "http://id.loc.gov/ontologies/bibframe/Instance".freeze,
2027
+ "http://purl.org/dc/terms/modified": ["2016-04-21 (New)".freeze, "2021-06-09 (Modified label [GH29])".freeze],
2028
+ label: "Mount material or object".freeze,
2029
+ range: "http://www.w3.org/2000/01/rdf-schema#Resource".freeze,
2030
+ type: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze
2031
+ property :musicFormat,
2032
+ comment: "Suggested use - With Work or Instance".freeze,
2033
+ definition: "Layout for content of a resource that is presented in the form of musical notation, such as full score, condensed score, vocal score, etc.".freeze,
2034
+ "http://purl.org/dc/terms/modified": "2016-04-21 (New)".freeze,
2035
+ label: "Format of notated music".freeze,
2036
+ range: "http://id.loc.gov/ontologies/bibframe/MusicFormat".freeze,
2037
+ type: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze
1401
2038
  property :musicKey,
1402
- comment: %(Pitch and mode for music.).freeze,
1403
- label: "Music Key".freeze,
1404
- range: "rdfs:Literal".freeze,
1405
- type: "rdf:Property".freeze
2039
+ definition: "Pitch and mode for music.".freeze,
2040
+ domain: "http://id.loc.gov/ontologies/bibframe/Work".freeze,
2041
+ "http://purl.org/dc/terms/modified": "2016-04-21 (New)".freeze,
2042
+ label: "Music key".freeze,
2043
+ range: "http://www.w3.org/2000/01/rdf-schema#Literal".freeze,
2044
+ type: "http://www.w3.org/2002/07/owl#DatatypeProperty".freeze
1406
2045
  property :musicMedium,
1407
- comment: %(Instrumental, vocal, and/or other medium of performance for which a musical resource was originally conceived, written or performed.).freeze,
1408
- label: "Music medium".freeze,
1409
- range: "rdfs:Resource".freeze,
1410
- type: "rdf:Property".freeze
1411
- property :musicMediumNote,
1412
- comment: %(Instrumental, vocal, and/or other medium of performance for which a musical resource was originally conceived, written or performed.).freeze,
1413
- label: "Music medium note".freeze,
1414
- range: "rdfs:Literal".freeze,
1415
- type: "rdf:Property".freeze
1416
- property :musicNumber,
1417
- comment: %(Serial, opus, or thematic number or code for music.).freeze,
1418
- label: "Music number".freeze,
1419
- range: "rdfs:Literal".freeze,
1420
- type: "rdf:Property".freeze
1421
- property :musicPlate,
1422
- comment: %(Number assigned by a music publisher to a specific music publication.).freeze,
1423
- domain: "bibframe:Instance".freeze,
1424
- label: "Music plate number".freeze,
1425
- range: "bibframe:Identifier".freeze,
1426
- subPropertyOf: "bibframe:identifier".freeze,
1427
- type: "rdf:Property".freeze
1428
- property :musicPublisherNumber,
1429
- comment: %(Number assigned to a music publication other than an issue, matrix, or plate number.).freeze,
1430
- domain: "bibframe:Instance".freeze,
1431
- label: "Music publisher number".freeze,
1432
- range: "bibframe:Identifier".freeze,
1433
- subPropertyOf: "bibframe:identifier".freeze,
1434
- type: "rdf:Property".freeze
1435
- property :musicVersion,
1436
- comment: %(Versions such as arrangements, transcriptions, etc. of music.).freeze,
1437
- "dc:modified": "2014-06-19 (Example Added)".freeze,
1438
- label: "Music version".freeze,
1439
- range: "rdfs:Literal".freeze,
1440
- type: "rdf:Property".freeze
1441
- property :nban,
1442
- comment: %(National Bibliography Agency Number, which identifies the resource description.).freeze,
1443
- domain: "bibframe:Instance".freeze,
1444
- label: "NBAN".freeze,
1445
- range: "bibframe:Identifier".freeze,
1446
- subPropertyOf: "bibframe:identifier".freeze,
1447
- type: "rdf:Property".freeze
1448
- property :nbn,
1449
- comment: %(National Bibliography Number, which identifies the resource description.).freeze,
1450
- domain: "bibframe:Instance".freeze,
1451
- label: "NBN".freeze,
1452
- range: "bibframe:Identifier".freeze,
1453
- subPropertyOf: "bibframe:identifier".freeze,
1454
- type: "rdf:Property".freeze
2046
+ definition: "Instrumental, vocal, and/or other medium of performance for which a musical resource was originally conceived, written or performed.".freeze,
2047
+ domain: "http://id.loc.gov/ontologies/bibframe/Work".freeze,
2048
+ "http://purl.org/dc/terms/modified": "2016-04-21 (New)".freeze,
2049
+ label: "Music medium of performance".freeze,
2050
+ range: "http://id.loc.gov/ontologies/bibframe/MusicMedium".freeze,
2051
+ type: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze
2052
+ property :musicOpusNumber,
2053
+ definition: "Numeric designation of a musical work assigned by a composer, publisher, or a musicologist.".freeze,
2054
+ domain: "http://id.loc.gov/ontologies/bibframe/Work".freeze,
2055
+ "http://purl.org/dc/terms/modified": "2016-04-21 (New)".freeze,
2056
+ label: "Music opus number".freeze,
2057
+ range: "http://www.w3.org/2000/01/rdf-schema#Literal".freeze,
2058
+ type: "http://www.w3.org/2002/07/owl#DatatypeProperty".freeze
2059
+ property :musicSerialNumber,
2060
+ definition: "Numeric designation for musical works consecutively numbered in music reference sources.".freeze,
2061
+ domain: "http://id.loc.gov/ontologies/bibframe/Work".freeze,
2062
+ "http://purl.org/dc/terms/modified": "2016-04-21 (New)".freeze,
2063
+ label: "Music serial number".freeze,
2064
+ range: "http://www.w3.org/2000/01/rdf-schema#Literal".freeze,
2065
+ type: "http://www.w3.org/2002/07/owl#DatatypeProperty".freeze
2066
+ property :musicThematicNumber,
2067
+ definition: "Numeric designation for a musical work as found in a thematic index for the composer.".freeze,
2068
+ domain: "http://id.loc.gov/ontologies/bibframe/Work".freeze,
2069
+ "http://purl.org/dc/terms/modified": "2016-04-21 (New)".freeze,
2070
+ label: "Music thematic number".freeze,
2071
+ range: "http://www.w3.org/2000/01/rdf-schema#Literal".freeze,
2072
+ type: "http://www.w3.org/2002/07/owl#DatatypeProperty".freeze
2073
+ property :natureOfContent,
2074
+ comment: "Suggested use - With Work or Instance".freeze,
2075
+ definition: "Characterization that epitomizes the primary content of a resource, e.g., field recording of birdsong; combined time series analysis and graph plotting system.".freeze,
2076
+ "http://purl.org/dc/terms/modified": "2016-04-21 (New)".freeze,
2077
+ label: "Content nature".freeze,
2078
+ range: "http://www.w3.org/2000/01/rdf-schema#Literal".freeze,
2079
+ type: "http://www.w3.org/2002/07/owl#DatatypeProperty".freeze
1455
2080
  property :notation,
1456
- 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,
1457
- domain: "bibframe:Instance".freeze,
2081
+ comment: "Suggested use - With Work or Instance".freeze,
2082
+ definition: "Alphabet, script, or symbol system used to convey the content of the resource, including specialized scripts, typefaces, tactile notation, movement notation, and musical notation.".freeze,
2083
+ "http://purl.org/dc/terms/modified": "2016-04-21 (New)".freeze,
1458
2084
  label: "Notation system".freeze,
1459
- range: "rdfs:Literal".freeze,
1460
- type: "rdf:Property".freeze
2085
+ range: "http://id.loc.gov/ontologies/bibframe/Notation".freeze,
2086
+ type: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze
1461
2087
  property :note,
1462
- comment: %(General textual information relating to a resource.).freeze,
1463
- "dc:modified": "2014-10-14 (Updated)".freeze,
2088
+ definition: "General textual information relating to a resource, such as Information about a specific copy of a resource or information about a particular attribute of a resource.".freeze,
2089
+ domain: "http://www.w3.org/2000/01/rdf-schema#Resource".freeze,
2090
+ "http://purl.org/dc/terms/modified": "2016-04-21 (New)".freeze,
1464
2091
  label: "Note".freeze,
1465
- range: "rdfs:Literal".freeze,
1466
- type: "rdf:Property".freeze
2092
+ range: "http://id.loc.gov/ontologies/bibframe/Note".freeze,
2093
+ type: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze
2094
+ property :noteFor,
2095
+ definition: "Relates a Note resource to the resource to which the note pertains.".freeze,
2096
+ domain: "http://id.loc.gov/ontologies/bibframe/Note".freeze,
2097
+ "http://purl.org/dc/terms/modified": "2021-06-09 (New [GH34])".freeze,
2098
+ label: "Note for".freeze,
2099
+ range: "http://www.w3.org/2000/01/rdf-schema#Resource".freeze,
2100
+ type: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze
2101
+ property :noteType,
2102
+ definition: "Type of note.".freeze,
2103
+ domain: "http://id.loc.gov/ontologies/bibframe/Note".freeze,
2104
+ "http://purl.org/dc/terms/modified": "2016-04-21 (New)".freeze,
2105
+ label: "Note type".freeze,
2106
+ range: "http://www.w3.org/2000/01/rdf-schema#Literal".freeze,
2107
+ type: "http://www.w3.org/2002/07/owl#DatatypeProperty".freeze
1467
2108
  property :originDate,
1468
- comment: %(Date or date range associated with the creation of the work.).freeze,
1469
- "dc:modified": "2014-07-23 (Example added)".freeze,
1470
- domain: "bibframe:Work".freeze,
1471
- label: "Associated title date".freeze,
1472
- range: "rdfs:Literal".freeze,
1473
- type: "rdf:Property".freeze
2109
+ definition: "Date or date range associated with the creation of a Work.".freeze,
2110
+ domain: "http://id.loc.gov/ontologies/bibframe/Work".freeze,
2111
+ "http://purl.org/dc/terms/modified": ["2016-04-21 (New)".freeze, "2021-06-09 (Better align definition with property name [GH50])".freeze],
2112
+ label: "Origin date".freeze,
2113
+ range: "http://www.w3.org/2000/01/rdf-schema#Literal".freeze,
2114
+ subPropertyOf: "http://id.loc.gov/ontologies/bibframe/date".freeze,
2115
+ type: "http://www.w3.org/2002/07/owl#DatatypeProperty".freeze
1474
2116
  property :originPlace,
1475
- comment: %(Place from which the creation of the work originated.).freeze,
1476
- domain: "bibframe:Work".freeze,
1477
- label: "Associated title place".freeze,
1478
- range: "bibframe:Place".freeze,
1479
- type: "rdf:Property".freeze
2117
+ definition: "Place from which the creation of the Work originated.".freeze,
2118
+ domain: "http://id.loc.gov/ontologies/bibframe/Work".freeze,
2119
+ "http://purl.org/dc/terms/modified": ["2016-04-21 (New)".freeze, "2021-06-09 (Better align definition with property name [GH50], Removed range [GH19])".freeze],
2120
+ label: "Origin place".freeze,
2121
+ range: "http://www.w3.org/2000/01/rdf-schema#Resource".freeze,
2122
+ subPropertyOf: "http://id.loc.gov/ontologies/bibframe/place".freeze,
2123
+ type: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze
1480
2124
  property :originalVersion,
1481
- comment: %(Instance is the original version of which this resource is a reproduction.).freeze,
1482
- domain: "bibframe:Work".freeze,
1483
- label: "Has original version".freeze,
1484
- range: "bibframe:Work".freeze,
1485
- subPropertyOf: "bibframe:derivativeOf".freeze,
1486
- type: "rdf:Property".freeze
2125
+ comment: ["Suggested use - With Work or Instance".freeze, "Suggested value - Work or Instance".freeze],
2126
+ definition: "Resource is the original version of which this resource is a reproduction.".freeze,
2127
+ "http://purl.org/dc/terms/modified": ["2016-04-21 (New)".freeze, "2016-04-29 (added inverse, updated range)".freeze],
2128
+ inverseOf: "http://id.loc.gov/ontologies/bibframe/originalVersionOf".freeze,
2129
+ label: "Original version".freeze,
2130
+ subPropertyOf: "http://id.loc.gov/ontologies/bibframe/derivativeOf".freeze,
2131
+ type: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze
2132
+ property :originalVersionOf,
2133
+ comment: ["Suggested use - With Work or Instance".freeze, "Suggested value - Work or Instance".freeze],
2134
+ definition: "Original version of a resource.".freeze,
2135
+ "http://purl.org/dc/terms/modified": ["2016-04-21 (New)".freeze, "2016-04-29 (added inverse, updated range)".freeze],
2136
+ inverseOf: "http://id.loc.gov/ontologies/bibframe/originalVersion".freeze,
2137
+ label: "Original version of".freeze,
2138
+ subPropertyOf: "http://id.loc.gov/ontologies/bibframe/hasDerivative".freeze,
2139
+ type: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze
1487
2140
  property :otherEdition,
1488
- comment: %(Resource has other available editions, for example simultaneously published language editions or reprints.).freeze,
1489
- domain: "bibframe:Work".freeze,
1490
- label: "hasOtherEdition".freeze,
1491
- range: "bibframe:Work".freeze,
1492
- subPropertyOf: "bibframe:derivativeOf".freeze,
1493
- type: "rdf:Property".freeze
2141
+ comment: ["Suggested use - With Work or Instance".freeze, "Suggested value - Work or Instance".freeze],
2142
+ definition: "Resource has other available editions, for example simultaneously published language editions or reprints.".freeze,
2143
+ "http://purl.org/dc/terms/modified": ["2016-04-21 (New)".freeze, "2016-05-13 (symmetrical)".freeze, "2021-06-09 (Change subproperty to relatedTo [GH61])".freeze],
2144
+ label: "Other edition".freeze,
2145
+ subPropertyOf: "http://id.loc.gov/ontologies/bibframe/relatedTo".freeze,
2146
+ type: "http://www.w3.org/2002/07/owl#SymmetricProperty".freeze
1494
2147
  property :otherPhysicalFormat,
1495
- comment: %(Resource that is manifested in another physical carrier.).freeze,
1496
- "dc:modified": "2014-10-14 (Updated)".freeze,
1497
- domain: "bibframe:Instance".freeze,
2148
+ comment: "Suggested use - With Work or Instance".freeze,
2149
+ definition: "Resource that is manifested in another physical carrier.".freeze,
2150
+ "http://purl.org/dc/terms/modified": ["2016-04-21 (New)".freeze, "2021-06-09 (Broadened domain [GH79])".freeze],
1498
2151
  label: "Has other physical format".freeze,
1499
- range: "bibframe:Instance".freeze,
1500
- subPropertyOf: "bibframe:hasEquivalent".freeze,
1501
- type: "rdf:Property".freeze
2152
+ range: "http://id.loc.gov/ontologies/bibframe/Instance".freeze,
2153
+ subPropertyOf: "http://id.loc.gov/ontologies/bibframe/hasEquivalent".freeze,
2154
+ type: "http://www.w3.org/2002/07/owl#SymmetricProperty".freeze
2155
+ property :outerGRing,
2156
+ definition: "Coordinate pairs that identify the closed non-intersecting boundary of the area covered.".freeze,
2157
+ domain: "http://id.loc.gov/ontologies/bibframe/Cartographic".freeze,
2158
+ "http://purl.org/dc/terms/modified": "2016-04-21 (New)".freeze,
2159
+ label: "Cartographic outer G ring area covered".freeze,
2160
+ range: "http://www.w3.org/2000/01/rdf-schema#Literal".freeze,
2161
+ type: "http://www.w3.org/2002/07/owl#DatatypeProperty".freeze
2162
+ property :part,
2163
+ definition: "Part of a resource to which information applies.".freeze,
2164
+ domain: "http://www.w3.org/2000/01/rdf-schema#Resource".freeze,
2165
+ "http://purl.org/dc/terms/modified": "2016-04-21 (New)".freeze,
2166
+ label: "Part".freeze,
2167
+ range: "http://www.w3.org/2000/01/rdf-schema#Literal".freeze,
2168
+ type: "http://www.w3.org/2002/07/owl#DatatypeProperty".freeze
2169
+ property :partName,
2170
+ definition: "Part or section name of a title. Possible title component.".freeze,
2171
+ domain: "http://id.loc.gov/ontologies/bibframe/Title".freeze,
2172
+ "http://purl.org/dc/terms/modified": "2016-04-21 (New)".freeze,
2173
+ label: "Part title".freeze,
2174
+ range: "http://www.w3.org/2000/01/rdf-schema#Literal".freeze,
2175
+ type: "http://www.w3.org/2002/07/owl#DatatypeProperty".freeze
1502
2176
  property :partNumber,
1503
- comment: %(Part or section number of a title.).freeze,
1504
- domain: "bibframe:Title".freeze,
2177
+ definition: "Part or section enumeration of a title. Possible title component.".freeze,
2178
+ domain: "http://id.loc.gov/ontologies/bibframe/Title".freeze,
2179
+ "http://purl.org/dc/terms/modified": "2016-04-21 (New)".freeze,
1505
2180
  label: "Part number".freeze,
1506
- range: "rdfs:Literal".freeze,
1507
- type: "rdf:Property".freeze
2181
+ range: "http://www.w3.org/2000/01/rdf-schema#Literal".freeze,
2182
+ type: "http://www.w3.org/2002/07/owl#DatatypeProperty".freeze
1508
2183
  property :partOf,
1509
- comment: %(Resource in which the described resource is physically or logically contained.).freeze,
1510
- "dc:modified": "2014-04-30 (New)".freeze,
2184
+ comment: ["Suggested use - With Work, Instance, Item or Event".freeze, "Suggested value - Work, Instance, Item or Event".freeze],
2185
+ definition: "Resource in which the described resource is physically or logically contained.".freeze,
2186
+ "http://purl.org/dc/terms/modified": ["2016-04-21 (New)".freeze, "2016-04-29 (added inverse)".freeze, "2021-06-09 (Use with Event also [GH9])".freeze],
2187
+ inverseOf: "http://id.loc.gov/ontologies/bibframe/hasPart".freeze,
1511
2188
  label: "Is part of".freeze,
1512
- subPropertyOf: "bibframe:relatedTo".freeze,
1513
- type: "rdf:Property".freeze
1514
- property :partTitle,
1515
- comment: %(Part or section name of a title.).freeze,
1516
- domain: "bibframe:Title".freeze,
1517
- label: "Part title".freeze,
1518
- range: "rdfs:Literal".freeze,
1519
- type: "rdf:Property".freeze
1520
- property :performerNote,
1521
- comment: %(Information about the participants, players, narrators, presenters, or performers.).freeze,
1522
- label: "Performer note".freeze,
1523
- range: "rdfs:Literal".freeze,
1524
- type: "rdf:Property".freeze
1525
- property :postalRegistration,
1526
- comment: %(Number assigned to a publication for which the specified postal service permits the use of a special mailing class privilege.).freeze,
1527
- domain: "bibframe:Instance".freeze,
1528
- label: "Postal registration number".freeze,
1529
- range: "bibframe:Identifier".freeze,
1530
- subPropertyOf: "bibframe:identifier".freeze,
1531
- type: "rdf:Property".freeze
2189
+ subPropertyOf: "http://id.loc.gov/ontologies/bibframe/relatedTo".freeze,
2190
+ type: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze
2191
+ property :pattern,
2192
+ definition: "Pattern of arrangement of materials within a unit.".freeze,
2193
+ domain: "http://id.loc.gov/ontologies/bibframe/CollectionArrangement".freeze,
2194
+ "http://purl.org/dc/terms/modified": ["2016-04-21 (New)".freeze, "2021-06-09 (Modified range [GH77])".freeze],
2195
+ label: "Arrangement of material".freeze,
2196
+ range: "http://www.w3.org/2000/01/rdf-schema#Literal".freeze,
2197
+ type: "http://www.w3.org/2002/07/owl#DatatypeProperty".freeze
2198
+ property :physicalLocation,
2199
+ definition: "Location in the holding agency where the item is shelved or stored.".freeze,
2200
+ domain: "http://id.loc.gov/ontologies/bibframe/Item".freeze,
2201
+ "http://purl.org/dc/terms/modified": "2016-04-21 (New)".freeze,
2202
+ label: "Storing or shelving location".freeze,
2203
+ range: "http://www.w3.org/2000/01/rdf-schema#Literal".freeze,
2204
+ type: "http://www.w3.org/2002/07/owl#DatatypeProperty".freeze
2205
+ property :place,
2206
+ definition: "Geographic location or place entity associated with a resource or element of description, such as the place associated with the publication, printing, distribution, issue, release or production of a resource, place of an event.".freeze,
2207
+ domain: "http://www.w3.org/2000/01/rdf-schema#Resource".freeze,
2208
+ "http://purl.org/dc/terms/modified": ["2016-04-21 (New)".freeze, "2021-06-09 (Removed range [GH19])".freeze],
2209
+ label: "Place".freeze,
2210
+ range: "http://www.w3.org/2000/01/rdf-schema#Resource".freeze,
2211
+ type: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze
2212
+ property :polarity,
2213
+ definition: "Relationship of the colors and tones in an image to the colors and tones of the object reproduced.".freeze,
2214
+ domain: "http://id.loc.gov/ontologies/bibframe/Instance".freeze,
2215
+ "http://purl.org/dc/terms/modified": "2016-04-21 (New)".freeze,
2216
+ label: "Polarity".freeze,
2217
+ range: "http://id.loc.gov/ontologies/bibframe/Polarity".freeze,
2218
+ type: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze
1532
2219
  property :precededBy,
1533
- comment: %(Resource that precedes the resource being described \(e.g., is earlier in time or before in narrative\).).freeze,
1534
- "dc:modified": "2014-04-10 (Renamed)".freeze,
1535
- label: "Preceded By".freeze,
1536
- subPropertyOf: "bibframe:relatedTo".freeze,
1537
- type: "rdf:Property".freeze
2220
+ comment: ["Suggested use - With Work or Instance".freeze, "Suggested value - Work or Instance".freeze],
2221
+ definition: "Resource that precedes the resource being described, e.g., is earlier in time or before in narrative.".freeze,
2222
+ "http://purl.org/dc/terms/modified": ["2016-04-21 (New)".freeze, "2016-04-29 (added inverse)".freeze],
2223
+ inverseOf: "http://id.loc.gov/ontologies/bibframe/succeededBy".freeze,
2224
+ label: "Preceded by".freeze,
2225
+ subPropertyOf: "http://id.loc.gov/ontologies/bibframe/relatedTo".freeze,
2226
+ type: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze
1538
2227
  property :preferredCitation,
1539
- comment: %(Citation to the resource preferred by its custodian.).freeze,
1540
- domain: "bibframe:Instance".freeze,
2228
+ comment: "Suggested use - With Work or Instance".freeze,
2229
+ definition: "Citation to the resource preferred by its custodian of the resource.".freeze,
2230
+ "http://purl.org/dc/terms/modified": "2016-04-21 (New)".freeze,
1541
2231
  label: "Preferred citation".freeze,
1542
- range: "rdfs:Literal".freeze,
1543
- type: "rdf:Property".freeze
1544
- property :production,
1545
- comment: %(Information relating to production of an instance.).freeze,
1546
- domain: "bibframe:Instance".freeze,
1547
- label: "Production event".freeze,
1548
- range: "bibframe:Provider".freeze,
1549
- subPropertyOf: "bibframe:provider".freeze,
1550
- type: "rdf:Property".freeze
1551
- property :provider,
1552
- comment: %(Place, name, and/or date information relating to the publication, printing, distribution, issue, release, or production instance.).freeze,
1553
- domain: "bibframe:Instance".freeze,
1554
- label: "Provider".freeze,
1555
- range: "bibframe:Provider".freeze,
1556
- type: "rdf:Property".freeze
1557
- property :providerDate,
1558
- comment: %(Date associated with the publication, printing, distribution, issue, release or production of the instance.).freeze,
1559
- domain: "bibframe:Provider".freeze,
1560
- label: "Provider date".freeze,
1561
- range: "rdfs:Literal".freeze,
1562
- type: "rdf:Property".freeze
1563
- property :providerName,
1564
- comment: %(Name of the entity responsible for the publication, printing, distribution, issue, release or production of the instance.).freeze,
1565
- domain: "bibframe:Provider".freeze,
1566
- label: "Provider name".freeze,
1567
- range: "bibframe:Agent".freeze,
1568
- type: "rdf:Property".freeze
1569
- property :providerPlace,
1570
- comment: %(Place associated with the publication, printing, distribution, issue, release or production of the instance.).freeze,
1571
- domain: "bibframe:Provider".freeze,
1572
- label: "Provider place".freeze,
1573
- range: "bibframe:Place".freeze,
1574
- type: "rdf:Property".freeze
1575
- property :providerRole,
1576
- comment: %(The type of role played by the provider of an instance, e.g. production, publication, manufacture, distribution.).freeze,
1577
- domain: "bibframe:Provider".freeze,
1578
- label: "Provider role".freeze,
1579
- range: "rdfs:Literal".freeze,
1580
- type: "rdf:Property".freeze
1581
- property :providerStatement,
1582
- comment: %(Transcribed provider statement).freeze,
1583
- domain: "bibframe:Instance".freeze,
2232
+ range: "http://www.w3.org/2000/01/rdf-schema#Literal".freeze,
2233
+ type: "http://www.w3.org/2002/07/owl#DatatypeProperty".freeze
2234
+ property :productionMethod,
2235
+ definition: "Process used to produce a resource.".freeze,
2236
+ domain: "http://id.loc.gov/ontologies/bibframe/Instance".freeze,
2237
+ "http://purl.org/dc/terms/modified": "2016-04-21 (New)".freeze,
2238
+ label: "Production method".freeze,
2239
+ range: "http://id.loc.gov/ontologies/bibframe/ProductionMethod".freeze,
2240
+ type: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze
2241
+ property :projection,
2242
+ definition: "Method or system used to represent the surface of the earth or of a celestial sphere on a plane.".freeze,
2243
+ domain: "http://id.loc.gov/ontologies/bibframe/Cartographic".freeze,
2244
+ "http://purl.org/dc/terms/modified": ["2016-04-21 (New)".freeze, "2017-02-03 (changed from data to object property)".freeze],
2245
+ label: "Cartographic projection".freeze,
2246
+ range: "http://id.loc.gov/ontologies/bibframe/Projection".freeze,
2247
+ type: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze
2248
+ property :projectionCharacteristic,
2249
+ definition: "Technical specification relating to the projection of a motion picture film.".freeze,
2250
+ domain: "http://id.loc.gov/ontologies/bibframe/Instance".freeze,
2251
+ "http://purl.org/dc/terms/modified": ["2016-04-21 (New)".freeze, "2017-02-03 (fixed typo in property name)".freeze],
2252
+ label: "Projection characteristic".freeze,
2253
+ range: "http://id.loc.gov/ontologies/bibframe/ProjectionCharacteristic".freeze,
2254
+ type: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze
2255
+ property :provisionActivity,
2256
+ definition: "Place, name, and/or date information relating to the publication, printing, distribution, issue, release, production, etc. of a resource.".freeze,
2257
+ domain: "http://id.loc.gov/ontologies/bibframe/Instance".freeze,
2258
+ "http://purl.org/dc/terms/modified": ["2016-04-21 (New)".freeze, "2017-02-03 (revised label and slightly revised definition)".freeze],
2259
+ label: "Provision activity".freeze,
2260
+ range: "http://id.loc.gov/ontologies/bibframe/ProvisionActivity".freeze,
2261
+ type: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze
2262
+ property :provisionActivityStatement,
2263
+ definition: "Statement relating to providers of a resource; usually transcribed.".freeze,
2264
+ domain: "http://id.loc.gov/ontologies/bibframe/Instance".freeze,
2265
+ "http://purl.org/dc/terms/modified": "2016-04-21 (New)".freeze,
1584
2266
  label: "Provider statement".freeze,
1585
- range: "rdfs:Literal".freeze,
1586
- type: "rdf:Property".freeze
1587
- property :publication,
1588
- comment: %(Information relating to publication of an instance.).freeze,
1589
- domain: "bibframe:Instance".freeze,
1590
- label: "Publication event".freeze,
1591
- range: "bibframe:Provider".freeze,
1592
- subPropertyOf: "bibframe:provider".freeze,
1593
- type: "rdf:Property".freeze
1594
- property :publisherNumber,
1595
- comment: %(Number assigned by a publisher that is not one of the specific defined types.).freeze,
1596
- domain: "bibframe:Instance".freeze,
1597
- label: "Other publisher number".freeze,
1598
- range: "bibframe:Identifier".freeze,
1599
- subPropertyOf: "bibframe:identifier".freeze,
1600
- type: "rdf:Property".freeze
1601
- property :referenceAuthority,
1602
- comment: %(Link to authority information).freeze,
1603
- "dc:modified": "2014-03-27 (Updated)".freeze,
1604
- domain: "bibframe:Authority".freeze,
1605
- label: "Other authority information".freeze,
1606
- range: "bibframe:Resource".freeze,
1607
- type: "rdf:Property".freeze
1608
- property :relatedInstance,
1609
- comment: %(General instance to instance relationship.).freeze,
1610
- domain: "bibframe:Instance".freeze,
1611
- label: "Related Instance".freeze,
1612
- range: "bibframe:Instance".freeze,
1613
- subPropertyOf: "bibframe:relatedTo".freeze,
1614
- type: "rdf:Property".freeze
2267
+ range: "http://www.w3.org/2000/01/rdf-schema#Literal".freeze,
2268
+ type: "http://www.w3.org/2002/07/owl#DatatypeProperty".freeze
2269
+ property :pubFrequency,
2270
+ comment: "Suggested use - With Work or Instance".freeze,
2271
+ definition: "Relates a resource to a publication frequency resource to capture such details as first issue, last issue, status, etc.".freeze,
2272
+ "http://purl.org/dc/terms/modified": "2021-06-09 (New [GH76])".freeze,
2273
+ label: "Publication frequency".freeze,
2274
+ range: "http://id.loc.gov/ontologies/bibframe/PubFrequency".freeze,
2275
+ type: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze
2276
+ property :qualifier,
2277
+ definition: "Qualifier of information, such as an addition to a title to make it unique or qualifying information associated with an identifier.".freeze,
2278
+ domain: "http://www.w3.org/2000/01/rdf-schema#Resource".freeze,
2279
+ "http://purl.org/dc/terms/modified": "2016-04-21 (New)".freeze,
2280
+ label: "Qualifier".freeze,
2281
+ range: "http://www.w3.org/2000/01/rdf-schema#Literal".freeze,
2282
+ type: "http://www.w3.org/2002/07/owl#DatatypeProperty".freeze
2283
+ property :reductionRatio,
2284
+ definition: "Size of a micro-image in relation to the original from which it was produced.".freeze,
2285
+ domain: "http://id.loc.gov/ontologies/bibframe/Instance".freeze,
2286
+ "http://purl.org/dc/terms/modified": "2016-04-21 (New)".freeze,
2287
+ label: "Reduction ratio".freeze,
2288
+ range: "http://id.loc.gov/ontologies/bibframe/ReductionRatio".freeze,
2289
+ type: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze
2290
+ property :referencedBy,
2291
+ comment: ["Suggested use - With Work, Instance or Item".freeze, "Suggested value - Work, Instance or Item".freeze],
2292
+ definition: "Resource that references the described resource".freeze,
2293
+ "http://purl.org/dc/terms/modified": ["2016-04-21 (New)".freeze, "2016-04-29 (added inverse)".freeze],
2294
+ inverseOf: "http://id.loc.gov/ontologies/bibframe/references".freeze,
2295
+ label: "Referenced by".freeze,
2296
+ subPropertyOf: "http://id.loc.gov/ontologies/bibframe/relatedTo".freeze,
2297
+ type: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze
2298
+ property :references,
2299
+ comment: ["Suggested use - With Work, Instance or Item".freeze, "Suggested value - Work, Instance or Item".freeze],
2300
+ definition: "Resource that is referenced by the described resource.".freeze,
2301
+ "http://purl.org/dc/terms/modified": ["2016-04-21 (New)".freeze, "2016-04-29 (added inverse)".freeze],
2302
+ inverseOf: "http://id.loc.gov/ontologies/bibframe/referencedBy".freeze,
2303
+ label: "References".freeze,
2304
+ subPropertyOf: "http://id.loc.gov/ontologies/bibframe/relatedTo".freeze,
2305
+ type: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze
1615
2306
  property :relatedTo,
1616
- comment: %(Any relationship between work or instance resources.).freeze,
1617
- "dc:modified": "2014-04-10 (Range updated)".freeze,
1618
- domain: "bibframe:Resource".freeze,
2307
+ definition: "Any relationship between Work, Instance, Item, and Event resources.".freeze,
2308
+ domain: "http://www.w3.org/2000/01/rdf-schema#Resource".freeze,
2309
+ "http://purl.org/dc/terms/modified": ["2016-04-21 (New)".freeze, "2021-06-09 (Modified definition [GH2])".freeze],
1619
2310
  label: "Related resource".freeze,
1620
- range: "bibframe:Resource".freeze,
1621
- type: "rdf:Property".freeze
1622
- property :relatedWork,
1623
- comment: %(General work to work relationship.).freeze,
1624
- domain: "bibframe:Work".freeze,
1625
- label: "Related Work".freeze,
1626
- range: "bibframe:Work".freeze,
1627
- subPropertyOf: "bibframe:relatedTo".freeze,
1628
- type: "rdf:Property".freeze
1629
- property :relator,
1630
- comment: %(link to role and agent information.).freeze,
1631
- "dc:modified": "2014-04-30 (New)".freeze,
1632
- label: "Relationship of agent".freeze,
1633
- range: "bibframe:Relator".freeze,
1634
- type: "rdf:Property".freeze
1635
- property :relatorRole,
1636
- comment: %(Specific role of agent.).freeze,
1637
- "dc:modified": "2014-04-30 (New)".freeze,
1638
- domain: "bibframe:Relator".freeze,
1639
- label: "Agent role".freeze,
1640
- range: "rdfs:Literal".freeze,
1641
- type: "rdf:Property".freeze
1642
- property :reportNumber,
1643
- comment: %(Identification number of a report that is not a Standard Technical Report Number.).freeze,
1644
- domain: "bibframe:Instance".freeze,
1645
- label: "Technical report number".freeze,
1646
- range: "bibframe:Identifier".freeze,
1647
- subPropertyOf: "bibframe:identifier".freeze,
1648
- type: "rdf:Property".freeze
1649
- property :reproduction,
1650
- comment: %(Instance that reproduces another Instance embodying the same work.).freeze,
1651
- domain: "bibframe:Instance".freeze,
1652
- label: "Has reproduction".freeze,
1653
- range: "bibframe:Instance".freeze,
1654
- subPropertyOf: "bibframe:hasEquivalent".freeze,
1655
- type: "rdf:Property".freeze
1656
- property :reproductionPolicy,
1657
- comment: %(Policy statement about whether reproductions of the holding can be made).freeze,
1658
- "dc:modified": "2014-10-21 (Added)".freeze,
1659
- domain: "bibframe:HeldMaterial".freeze,
1660
- label: "Reproduction policy".freeze,
1661
- range: "rdfs:Literal".freeze,
1662
- type: "rdf:Property".freeze
1663
- property :resourcePart,
1664
- comment: %(Part of a resource for which language is being indicated.).freeze,
1665
- domain: "bibframe:Language".freeze,
1666
- label: "Resource part".freeze,
1667
- range: "rdfs:Literal".freeze,
1668
- type: "rdf:Property".freeze
2311
+ range: "http://www.w3.org/2000/01/rdf-schema#Resource".freeze,
2312
+ type: "http://www.w3.org/2002/07/owl#SymmetricProperty".freeze
2313
+ property :replacedBy,
2314
+ comment: ["Suggested use - With Work or Instance".freeze, "Suggested value - Work or Instance".freeze],
2315
+ definition: "Later resource used in place of an earlier resource, usually because the later resource contains updated or new information.".freeze,
2316
+ "http://purl.org/dc/terms/modified": ["2016-04-21 (New)".freeze, "2016-04-29 (added inverse, updated range)".freeze],
2317
+ inverseOf: "http://id.loc.gov/ontologies/bibframe/replacementOf".freeze,
2318
+ label: "Succeeded by".freeze,
2319
+ subPropertyOf: "http://id.loc.gov/ontologies/bibframe/succeededBy".freeze,
2320
+ type: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze
2321
+ property :replacementOf,
2322
+ comment: ["Suggested use - With Work or Instance".freeze, "Suggested value - Work or Instance".freeze],
2323
+ definition: "Earlier resource whose content has been replaced by a later resource, usually because the later resource contains updated or new information.".freeze,
2324
+ "http://purl.org/dc/terms/modified": ["2016-04-21 (New)".freeze, "2016-04-29 (added inverse, updated range)".freeze],
2325
+ inverseOf: "http://id.loc.gov/ontologies/bibframe/replacedBy".freeze,
2326
+ label: "Preceded by".freeze,
2327
+ subPropertyOf: "http://id.loc.gov/ontologies/bibframe/precededBy".freeze,
2328
+ type: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze
2329
+ property :reproductionOf,
2330
+ definition: "Resource that is a reproduction of another Resource.".freeze,
2331
+ domain: "http://id.loc.gov/ontologies/bibframe/Instance".freeze,
2332
+ "http://purl.org/dc/terms/modified": ["2016-04-21 (New)".freeze, "2016-04-29 (added inverse)".freeze],
2333
+ inverseOf: "http://id.loc.gov/ontologies/bibframe/hasReproduction".freeze,
2334
+ label: "Reproduction of".freeze,
2335
+ range: "http://id.loc.gov/ontologies/bibframe/Instance".freeze,
2336
+ subPropertyOf: "http://id.loc.gov/ontologies/bibframe/hasEquivalent".freeze,
2337
+ type: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze
1669
2338
  property :responsibilityStatement,
1670
- 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,
1671
- domain: "bibframe:Instance".freeze,
1672
- label: "Edition responsibility".freeze,
1673
- range: "rdfs:Literal".freeze,
1674
- type: "rdf:Property".freeze
1675
- property :retentionPolicy,
1676
- comment: %(Policy statement about how many and/or how long the holdings are retained).freeze,
1677
- "dc:modified": "2014-10-21 (Added)".freeze,
1678
- domain: "bibframe:HeldMaterial".freeze,
1679
- label: "Retention policy".freeze,
1680
- range: "rdfs:Literal".freeze,
1681
- type: "rdf:Property".freeze
2339
+ definition: "Statement relating to any persons, families, or corporate bodies responsible for the creation of, or contributing to the content of a resource; usually transcribed.".freeze,
2340
+ domain: "http://id.loc.gov/ontologies/bibframe/Instance".freeze,
2341
+ "http://purl.org/dc/terms/modified": "2016-04-21 (New)".freeze,
2342
+ label: "Creative responsibility statement".freeze,
2343
+ range: "http://www.w3.org/2000/01/rdf-schema#Literal".freeze,
2344
+ type: "http://www.w3.org/2002/07/owl#DatatypeProperty".freeze
1682
2345
  property :review,
1683
- comment: %(Review content.).freeze,
1684
- domain: "bibframe:Review".freeze,
2346
+ comment: "Suggested use - With Work or Instance".freeze,
2347
+ definition: "Review of a resource.".freeze,
2348
+ "http://purl.org/dc/terms/modified": "2016-04-21 (New)".freeze,
1685
2349
  label: "Review content".freeze,
1686
- range: "rdfs:Resource".freeze,
1687
- subPropertyOf: "bibframe:annotationBody".freeze,
1688
- type: "rdf:Property".freeze
1689
- property :reviewOf,
1690
- comment: %(Resource to which the review pertains.).freeze,
1691
- domain: "bibframe:Review".freeze,
1692
- label: "Resource reviewed".freeze,
1693
- range: "bibframe:Work".freeze,
1694
- subPropertyOf: "bibframe:annotates".freeze,
1695
- type: "rdf:Property".freeze
2350
+ range: "http://id.loc.gov/ontologies/bibframe/Review".freeze,
2351
+ type: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze
2352
+ property :role,
2353
+ definition: "Function provided by a contributor, e.g., author, illustrator, etc.".freeze,
2354
+ domain: "http://id.loc.gov/ontologies/bibframe/Contribution".freeze,
2355
+ "http://purl.org/dc/terms/modified": ["2016-04-21 (New)".freeze, "2017-02-03 (Changed from data to object property, adjusted label and definition)".freeze],
2356
+ label: "Contributor role".freeze,
2357
+ range: "http://id.loc.gov/ontologies/bibframe/Role".freeze,
2358
+ type: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze
2359
+ property :scale,
2360
+ comment: "Suggested use - With Work or Instance".freeze,
2361
+ definition: "Ratio of the dimensions of a form contained or embodied in a resource to the dimensions of the entity it represents, e.g., for images or cartographic resources.".freeze,
2362
+ "http://purl.org/dc/terms/modified": ["2016-04-21 (New)".freeze, "2017-02-03 (changed from data to object property)".freeze],
2363
+ label: "Scale".freeze,
2364
+ range: "http://id.loc.gov/ontologies/bibframe/Scale".freeze,
2365
+ type: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze
2366
+ property :schedulePart,
2367
+ definition: "Designates whether the classification number is from the standard or optional part of a schedule or table.".freeze,
2368
+ domain: "http://id.loc.gov/ontologies/bibframe/Classification".freeze,
2369
+ "http://purl.org/dc/terms/modified": "2016-04-21 (New)".freeze,
2370
+ label: "Classification designation".freeze,
2371
+ range: "http://www.w3.org/2000/01/rdf-schema#Literal".freeze,
2372
+ type: "http://www.w3.org/2002/07/owl#DatatypeProperty".freeze
1696
2373
  property :separatedFrom,
1697
- comment: %(Work that spun off a part of its content to form a new work.).freeze,
1698
- "dc:modified": "2014-04-10 (Updated subproperty)".freeze,
1699
- domain: "bibframe:Work".freeze,
2374
+ comment: ["Suggested use - With Work or Instance".freeze, "Suggested value - Work or Instance".freeze],
2375
+ definition: "Resource that spun off a part of its content to form a new resource.".freeze,
2376
+ "http://purl.org/dc/terms/modified": ["2016-04-21 (New)".freeze, "2016-04-29 (added inverse, updated range)".freeze],
2377
+ inverseOf: "http://id.loc.gov/ontologies/bibframe/continuedInPartBy".freeze,
1700
2378
  label: "Separated from".freeze,
1701
- range: "bibframe:Work".freeze,
1702
- subPropertyOf: "bibframe:precededBy".freeze,
1703
- type: "rdf:Property".freeze
1704
- property :serialFirstIssue,
1705
- comment: %(Beginning date of an instance and/or the sequential designations.).freeze,
1706
- domain: "bibframe:Instance".freeze,
1707
- label: "Serial first issue".freeze,
1708
- range: "rdfs:Literal".freeze,
1709
- type: "rdf:Property".freeze
1710
- property :serialLastIssue,
1711
- comment: %(Ending date of an instance and/or the sequential designations.).freeze,
1712
- domain: "bibframe:Instance".freeze,
1713
- label: "Serial last issue".freeze,
1714
- range: "rdfs:Literal".freeze,
1715
- type: "rdf:Property".freeze
1716
- property :series,
1717
- comment: %(Work in which the part has been issued; the title of the larger work appears on the part.).freeze,
1718
- "dc:modified": "2014-10-14 (Updated)".freeze,
1719
- domain: "bibframe:Work".freeze,
1720
- label: "Has series".freeze,
1721
- range: "bibframe:Work".freeze,
1722
- subPropertyOf: "bibframe:partOf".freeze,
1723
- type: "rdf:Property".freeze
2379
+ subPropertyOf: "http://id.loc.gov/ontologies/bibframe/precededBy".freeze,
2380
+ type: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze
2381
+ property :seriesEnumeration,
2382
+ definition: "Series enumeration of the resource; usually transcribed.".freeze,
2383
+ domain: "http://id.loc.gov/ontologies/bibframe/Instance".freeze,
2384
+ "http://purl.org/dc/terms/modified": "2016-04-21 (New)".freeze,
2385
+ label: "Series enumeration".freeze,
2386
+ range: "http://www.w3.org/2000/01/rdf-schema#Literal".freeze,
2387
+ type: "http://www.w3.org/2002/07/owl#DatatypeProperty".freeze
2388
+ property :seriesOf,
2389
+ comment: ["Suggested use - With Work or Instance".freeze, "Suggested value - Work or Instance".freeze],
2390
+ definition: "Resource that is a part of a larger resource.".freeze,
2391
+ "http://purl.org/dc/terms/modified": ["2016-04-21 (New)".freeze, "2016-04-29 (added inverse, updated range)".freeze],
2392
+ inverseOf: "http://id.loc.gov/ontologies/bibframe/hasSeries".freeze,
2393
+ label: "Series container of".freeze,
2394
+ subPropertyOf: "http://id.loc.gov/ontologies/bibframe/hasPart".freeze,
2395
+ type: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze
2396
+ property :seriesStatement,
2397
+ definition: "Statement of the series the resource is in; usually transcribed; includes the ISSN if applicable.".freeze,
2398
+ domain: "http://id.loc.gov/ontologies/bibframe/Instance".freeze,
2399
+ "http://purl.org/dc/terms/modified": "2016-04-21 (New)".freeze,
2400
+ label: "Series statement".freeze,
2401
+ range: "http://www.w3.org/2000/01/rdf-schema#Literal".freeze,
2402
+ type: "http://www.w3.org/2002/07/owl#DatatypeProperty".freeze
1724
2403
  property :shelfMark,
1725
- comment: %(Physical location, such as a call number or a special shelf/location indicator.).freeze,
1726
- domain: "bibframe:HeldItem".freeze,
1727
- label: "Shelf Location".freeze,
1728
- range: "rdfs:Literal".freeze,
1729
- type: "rdf:Property".freeze
1730
- property :shelfMarkDdc,
1731
- comment: %(Shelf mark based on Dewey Decimal Classification.).freeze,
1732
- domain: "bibframe:HeldItem".freeze,
1733
- label: "DDC call number".freeze,
1734
- range: "rdfs:Literal".freeze,
1735
- type: "rdf:Property".freeze
1736
- property :shelfMarkLcc,
1737
- comment: %(Shelf mark based on Library of Congress Classification.).freeze,
1738
- domain: "bibframe:HeldItem".freeze,
1739
- label: "LCC call number".freeze,
1740
- range: "rdfs:Literal".freeze,
1741
- type: "rdf:Property".freeze
1742
- property :shelfMarkNlm,
1743
- comment: %(Shelf mark based on National Library of Medicine Classification.).freeze,
1744
- domain: "bibframe:HeldItem".freeze,
1745
- label: "NLM call number".freeze,
1746
- range: "rdfs:Literal".freeze,
1747
- type: "rdf:Property".freeze
1748
- property :shelfMarkScheme,
1749
- comment: %(Scheme from which a shelf mark is taken.).freeze,
1750
- domain: "bibframe:HeldItem".freeze,
1751
- label: "Shelf mark scheme".freeze,
1752
- range: "rdfs:Literal".freeze,
1753
- type: "rdf:Property".freeze
1754
- property :shelfMarkUdc,
1755
- comment: %(Shelf mark based on Universal Decimal Classification.).freeze,
1756
- domain: "bibframe:HeldItem".freeze,
1757
- label: "UDC call number".freeze,
1758
- range: "rdfs:Literal".freeze,
1759
- type: "rdf:Property".freeze
1760
- property :sici,
1761
- comment: %(Serial Item and Contribution Identifier.).freeze,
1762
- domain: "bibframe:Instance".freeze,
1763
- label: "SICI".freeze,
1764
- range: "bibframe:Identifier".freeze,
1765
- subPropertyOf: "bibframe:identifier".freeze,
1766
- type: "rdf:Property".freeze
2404
+ definition: "Piece identifier, such as a call or other type of number.".freeze,
2405
+ domain: "http://id.loc.gov/ontologies/bibframe/Item".freeze,
2406
+ "http://purl.org/dc/terms/modified": "2016-04-21 (New)".freeze,
2407
+ label: "Shelf mark".freeze,
2408
+ range: "http://id.loc.gov/ontologies/bibframe/ShelfMark".freeze,
2409
+ type: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze
2410
+ property :soundCharacteristic,
2411
+ definition: "Technical specification relating to the encoding of sound in a resource.".freeze,
2412
+ domain: "http://id.loc.gov/ontologies/bibframe/Instance".freeze,
2413
+ "http://purl.org/dc/terms/modified": ["2016-04-21 (New)".freeze, "2016-04-21 (fixed name and range typos)".freeze],
2414
+ label: "Sound characteristic".freeze,
2415
+ range: "http://id.loc.gov/ontologies/bibframe/SoundCharacteristic".freeze,
2416
+ type: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze
1767
2417
  property :soundContent,
1768
- comment: %(Indication of whether the production of sound is an integral part of the resource.).freeze,
1769
- domain: "bibframe:Instance".freeze,
2418
+ comment: "Suggested use - With Work or Instance".freeze,
2419
+ definition: "Indication of whether the production of sound is an integral part of the resource.".freeze,
2420
+ "http://purl.org/dc/terms/modified": "2016-04-21 (New)".freeze,
1770
2421
  label: "Sound content".freeze,
1771
- range: "rdfs:Literal".freeze,
1772
- type: "rdf:Property".freeze
2422
+ range: "http://id.loc.gov/ontologies/bibframe/SoundContent".freeze,
2423
+ type: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze
2424
+ property :source,
2425
+ definition: "Resource from which value or label came or was derived, such as the formal source/scheme from which a classification number is taken or derived, list from which an agent name is taken or derived, source within which an identifier is unique.".freeze,
2426
+ domain: "http://www.w3.org/2000/01/rdf-schema#Resource".freeze,
2427
+ "http://purl.org/dc/terms/modified": ["2016-04-21 (New)".freeze, "2021-06-09 (Removed range [GH63])".freeze],
2428
+ label: "Source".freeze,
2429
+ range: "http://www.w3.org/2000/01/rdf-schema#Resource".freeze,
2430
+ type: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze
2431
+ property :spanEnd,
2432
+ definition: "Ending number of classification number span.".freeze,
2433
+ domain: "http://id.loc.gov/ontologies/bibframe/Classification".freeze,
2434
+ "http://purl.org/dc/terms/modified": "2016-04-21 (New)".freeze,
2435
+ label: "Classification number span end".freeze,
2436
+ range: "http://www.w3.org/2000/01/rdf-schema#Literal".freeze,
2437
+ type: "http://www.w3.org/2002/07/owl#DatatypeProperty".freeze
1773
2438
  property :splitInto,
1774
- comment: %(One of two or more works resulting from the division of an earlier work into separate works.).freeze,
1775
- "dc:modified": "2014-04-10 (Updated subproperty)".freeze,
1776
- domain: "bibframe:Work".freeze,
2439
+ comment: ["Suggested use - With Work or Instance".freeze, "Suggested value - Work or Instance".freeze],
2440
+ definition: "One of two or more resources resulting from the division of an earlier resource into separate resources.".freeze,
2441
+ "http://purl.org/dc/terms/modified": ["2016-04-21 (New)".freeze, "2016-04-29 (added inverse, updated range)".freeze],
2442
+ inverseOf: "http://id.loc.gov/ontologies/bibframe/continuesInPart".freeze,
1777
2443
  label: "Split into".freeze,
1778
- range: "bibframe:Work".freeze,
1779
- subPropertyOf: "bibframe:succeededBy".freeze,
1780
- type: "rdf:Property".freeze
1781
- property :startOfReview,
1782
- comment: %(First part of review.).freeze,
1783
- domain: "bibframe:Review".freeze,
1784
- label: "Review beginning".freeze,
1785
- range: "rdfs:Literal".freeze,
1786
- type: "rdf:Property".freeze
1787
- property :startOfSummary,
1788
- comment: %(First part of description.).freeze,
1789
- domain: "bibframe:Summary".freeze,
1790
- label: "Summary beginning".freeze,
1791
- range: "rdfs:Literal".freeze,
1792
- type: "rdf:Property".freeze
1793
- property :stockNumber,
1794
- comment: %(Identification number such as distributor, publisher, or vendor number.).freeze,
1795
- domain: "bibframe:Instance".freeze,
1796
- label: "Stock number".freeze,
1797
- range: "bibframe:Identifier".freeze,
1798
- subPropertyOf: "bibframe:identifier".freeze,
1799
- type: "rdf:Property".freeze
1800
- property :strn,
1801
- comment: %(Standard Technical Report Number.).freeze,
1802
- domain: "bibframe:Instance".freeze,
1803
- label: "STRN".freeze,
1804
- range: "bibframe:Identifier".freeze,
1805
- subPropertyOf: "bibframe:identifier".freeze,
1806
- type: "rdf:Property".freeze
1807
- property :studyNumber,
1808
- comment: %(Identification number for a computer data file.).freeze,
1809
- domain: "bibframe:Instance".freeze,
1810
- label: "Study number".freeze,
1811
- range: "bibframe:Identifier".freeze,
1812
- subPropertyOf: "bibframe:identifier".freeze,
1813
- type: "rdf:Property".freeze
1814
- property :subLocation,
1815
- comment: %(Specific place within the holding entity where the item is located or made available).freeze,
1816
- "dc:modified": "2014-04-28 (Updated Mapping)".freeze,
1817
- domain: "bibframe:HeldMaterial".freeze,
1818
- label: "Held in sublocation".freeze,
1819
- range: "rdfs:Literal".freeze,
1820
- type: "rdf:Property".freeze
2444
+ subPropertyOf: "http://id.loc.gov/ontologies/bibframe/succeededBy".freeze,
2445
+ type: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze
2446
+ property :status,
2447
+ definition: "Designation of the validity or position of something, such as indication that the classification number is canceled or invalid, circulation availability of an item, indication of whether the identifier is canceled or invalid.".freeze,
2448
+ domain: "http://www.w3.org/2000/01/rdf-schema#Resource".freeze,
2449
+ "http://purl.org/dc/terms/modified": "2016-04-21 (New)".freeze,
2450
+ label: "Status".freeze,
2451
+ range: "http://id.loc.gov/ontologies/bibframe/Status".freeze,
2452
+ type: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze
1821
2453
  property :subject,
1822
- comment: %(Subject term\(s\) describing a resource.).freeze,
1823
- domain: "bibframe:Work".freeze,
2454
+ comment: "Suggested use - With Work, Instance, Item or Event".freeze,
2455
+ definition: "Subject term(s) describing a resource.".freeze,
2456
+ "http://purl.org/dc/terms/modified": ["2016-04-21 (New)".freeze, "2021-06-09 (Broadened domain [GH21])".freeze],
1824
2457
  label: "Subject".freeze,
1825
- range: ["bibframe:Authority".freeze, "bibframe:Work".freeze],
1826
- type: "rdf:Property".freeze
1827
- property :subseries,
1828
- comment: %(Work, which is part of another series, in which the part has been issued.).freeze,
1829
- "dc:modified": "2014-10-14 (Updated)".freeze,
1830
- domain: "bibframe:Work".freeze,
1831
- label: "Has subseries".freeze,
1832
- range: "bibframe:Work".freeze,
1833
- subPropertyOf: "bibframe:hasPart".freeze,
1834
- type: "rdf:Property".freeze
2458
+ range: "http://www.w3.org/2000/01/rdf-schema#Resource".freeze,
2459
+ type: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze
2460
+ property :subjectOf,
2461
+ comment: "Suggested value - Work, Instance, Item or Event".freeze,
2462
+ definition: "Relates a subject to that which it describes.".freeze,
2463
+ domain: "http://www.w3.org/2000/01/rdf-schema#Resource".freeze,
2464
+ "http://purl.org/dc/terms/modified": "2021-06-09 (New [GH20])".freeze,
2465
+ label: "Subject of".freeze,
2466
+ type: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze
2467
+ property :sublocation,
2468
+ definition: "Specific place within the holding entity where the item is located or made available.".freeze,
2469
+ domain: "http://id.loc.gov/ontologies/bibframe/Item".freeze,
2470
+ "http://purl.org/dc/terms/modified": "2016-04-21 (New)".freeze,
2471
+ label: "Held in sublocation".freeze,
2472
+ range: "http://id.loc.gov/ontologies/bibframe/Sublocation".freeze,
2473
+ type: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze
2474
+ property :subseriesEnumeration,
2475
+ definition: "Subseries enumeration of the resource; usually transcribed.".freeze,
2476
+ domain: "http://id.loc.gov/ontologies/bibframe/Instance".freeze,
2477
+ "http://purl.org/dc/terms/modified": "2016-04-21 (New)".freeze,
2478
+ label: "Subseries enumeration".freeze,
2479
+ range: "http://www.w3.org/2000/01/rdf-schema#Literal".freeze,
2480
+ type: "http://www.w3.org/2002/07/owl#DatatypeProperty".freeze
1835
2481
  property :subseriesOf,
1836
- comment: %(Work in which the part consistently appears; the title of the larger work appears on all issues or parts of the subseries\).).freeze,
1837
- "dc:modified": "2014-10-14 (Updated)".freeze,
1838
- domain: "bibframe:Work".freeze,
2482
+ comment: ["Suggested use - With Work or Instance".freeze, "Suggested value - Work or Instance".freeze],
2483
+ definition: "Series resource of which the described resource is a part.".freeze,
2484
+ "http://purl.org/dc/terms/modified": ["2016-04-21 (New)".freeze, "2016-04-29 (added inverse, updated range)".freeze],
2485
+ inverseOf: "http://id.loc.gov/ontologies/bibframe/hasSubseries".freeze,
1839
2486
  label: "Subseries of".freeze,
1840
- range: "bibframe:Work".freeze,
1841
- subPropertyOf: "bibframe:partOf".freeze,
1842
- type: "rdf:Property".freeze
2487
+ subPropertyOf: "http://id.loc.gov/ontologies/bibframe/hasPart".freeze,
2488
+ type: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze
2489
+ property :subseriesStatement,
2490
+ definition: "Statement of the subseries the resource is in; usually transcribed; includes the ISSN if applicable.".freeze,
2491
+ domain: "http://id.loc.gov/ontologies/bibframe/Instance".freeze,
2492
+ "http://purl.org/dc/terms/modified": "2016-04-21 (New)".freeze,
2493
+ label: "Subseries statement".freeze,
2494
+ range: "http://www.w3.org/2000/01/rdf-schema#Literal".freeze,
2495
+ type: "http://www.w3.org/2002/07/owl#DatatypeProperty".freeze
1843
2496
  property :subtitle,
1844
- comment: %(Word, character, or group of words and/or characters that contains the remainder of the title information after the main title.).freeze,
1845
- domain: "bibframe:Title".freeze,
2497
+ definition: "Word, character, or group of words and/or characters that contains the remainder of the title after the main title. Possible title component.".freeze,
2498
+ domain: "http://id.loc.gov/ontologies/bibframe/Title".freeze,
2499
+ "http://purl.org/dc/terms/modified": "2016-04-21 (New)".freeze,
1846
2500
  label: "Subtitle".freeze,
1847
- range: "rdfs:Literal".freeze,
1848
- type: "rdf:Property".freeze
2501
+ range: "http://www.w3.org/2000/01/rdf-schema#Literal".freeze,
2502
+ type: "http://www.w3.org/2002/07/owl#DatatypeProperty".freeze
1849
2503
  property :succeededBy,
1850
- comment: %(Resource that succeeds the resource being described \(e.g., later in time or after in a narrative\).).freeze,
1851
- "dc:modified": "2014-04-10 (Renamed)".freeze,
1852
- label: "Succeeded By".freeze,
1853
- subPropertyOf: "bibframe:relatedTo".freeze,
1854
- type: "rdf:Property".freeze
2504
+ comment: ["Suggested use - With Work or Instance".freeze, "Suggested value - Work or Instance".freeze],
2505
+ definition: "Resource that succeeds the resource being described, e.g., later in time or after in a narrative.".freeze,
2506
+ "http://purl.org/dc/terms/modified": ["2016-04-21 (New)".freeze, "2016-04-29 (added inverse)".freeze],
2507
+ inverseOf: "http://id.loc.gov/ontologies/bibframe/precededBy".freeze,
2508
+ label: "Succeeded by".freeze,
2509
+ subPropertyOf: "http://id.loc.gov/ontologies/bibframe/relatedTo".freeze,
2510
+ type: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze
1855
2511
  property :summary,
1856
- comment: %(Summary or abstract of the target work or instance.).freeze,
1857
- domain: "bibframe:Summary".freeze,
2512
+ comment: "Suggested use - With Work or Instance".freeze,
2513
+ definition: "Summary or abstract of the resource described.".freeze,
2514
+ "http://purl.org/dc/terms/modified": "2016-04-21 (New)".freeze,
1858
2515
  label: "Summary content".freeze,
1859
- range: "rdfs:Resource".freeze,
1860
- subPropertyOf: "bibframe:annotationBody".freeze,
1861
- type: "rdf:Property".freeze
1862
- property :summaryOf,
1863
- comment: %(Resource to which the description pertains.).freeze,
1864
- domain: "bibframe:Summary".freeze,
1865
- label: "Resource summarized".freeze,
1866
- subPropertyOf: "bibframe:annotates".freeze,
1867
- type: "rdf:Property".freeze
1868
- property :supersededBy,
1869
- comment: %(Later Work used in place of an earlier work, usually because the later work contains updated or new information.).freeze,
1870
- "dc:modified": "2014-04-10 (Updated subproperty)".freeze,
1871
- domain: "bibframe:Work".freeze,
1872
- label: "Superseded by".freeze,
1873
- range: "bibframe:Work".freeze,
1874
- subPropertyOf: "bibframe:succeededBy".freeze,
1875
- type: "rdf:Property".freeze
1876
- property :supersededInPartBy,
1877
- comment: %(Later Work used in part in place of an earlier work, usually because the later work contains updated or new information.).freeze,
1878
- "dc:modified": "2014-04-10 (Updated subproperty)".freeze,
1879
- domain: "bibframe:Work".freeze,
1880
- label: "Superseded in part by".freeze,
1881
- range: "bibframe:Work".freeze,
1882
- subPropertyOf: "bibframe:succeededBy".freeze,
1883
- type: "rdf:Property".freeze
1884
- property :supersedes,
1885
- comment: %(Earlier work whose content has been replaced by a later work, usually because the later work contains updated or new information.).freeze,
1886
- "dc:modified": "2014-04-10 (Updated subproperty)".freeze,
1887
- domain: "bibframe:Work".freeze,
1888
- label: "Supersedes".freeze,
1889
- range: "bibframe:Work".freeze,
1890
- subPropertyOf: "bibframe:precededBy".freeze,
1891
- type: "rdf:Property".freeze
1892
- property :supersedesInPart,
1893
- comment: %(Earlier work whose content has been partially replaced by a later work, usually because the later work contains updated or new information.).freeze,
1894
- "dc:modified": "2014-04-10 (Updated subproperty)".freeze,
1895
- domain: "bibframe:Work".freeze,
1896
- label: "Supersedes in part".freeze,
1897
- range: "bibframe:Work".freeze,
1898
- subPropertyOf: "bibframe:precededBy".freeze,
1899
- type: "rdf:Property".freeze
2516
+ range: "http://id.loc.gov/ontologies/bibframe/Summary".freeze,
2517
+ type: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze
1900
2518
  property :supplement,
1901
- comment: %(Work that updates or otherwise complements the predominant work.).freeze,
1902
- domain: "bibframe:Work".freeze,
1903
- label: "Has supplement".freeze,
1904
- range: "bibframe:Work".freeze,
1905
- subPropertyOf: "bibframe:accompaniedBy".freeze,
1906
- type: "rdf:Property".freeze
2519
+ comment: ["Suggested use - With Work or Instance".freeze, "Suggested value - Work or Instance".freeze],
2520
+ definition: "Resource that updates or otherwise complements the predominant resource.".freeze,
2521
+ "http://purl.org/dc/terms/modified": ["2016-04-21 (New)".freeze, "2016-04-29 (added inverse, updated range)".freeze],
2522
+ inverseOf: "http://id.loc.gov/ontologies/bibframe/supplementTo".freeze,
2523
+ label: "Supplement".freeze,
2524
+ subPropertyOf: "http://id.loc.gov/ontologies/bibframe/accompaniedBy".freeze,
2525
+ type: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze
1907
2526
  property :supplementTo,
1908
- comment: %(Work that is updated or otherwise complemented by the augmenting work.).freeze,
1909
- domain: "bibframe:Work".freeze,
2527
+ comment: ["Suggested use - With Work or Instance".freeze, "Suggested value - Work or Instance".freeze],
2528
+ definition: "Resource that is updated or otherwise complemented by the augmenting resource.".freeze,
2529
+ "http://purl.org/dc/terms/modified": ["2016-04-21 (New)".freeze, "2016-04-29 (added inverse, updated range)".freeze],
2530
+ inverseOf: "http://id.loc.gov/ontologies/bibframe/supplement".freeze,
1910
2531
  label: "Supplement to".freeze,
1911
- range: "bibframe:Work".freeze,
1912
- subPropertyOf: "bibframe:accompanies".freeze,
1913
- type: "rdf:Property".freeze
1914
- property :supplementaryContentNote,
1915
- 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,
1916
- domain: "bibframe:Instance".freeze,
1917
- label: "Supplementary content note".freeze,
1918
- range: "rdfs:Literal".freeze,
1919
- type: "rdf:Property".freeze
1920
- property :systemNumber,
1921
- comment: %(Control number of a system other than LCCN or NBAN, which Identifies a resource description.).freeze,
1922
- label: "System control number".freeze,
1923
- range: "bibframe:Identifier".freeze,
1924
- subPropertyOf: "bibframe:identifier".freeze,
1925
- type: "rdf:Property".freeze
2532
+ subPropertyOf: "http://id.loc.gov/ontologies/bibframe/accompanies".freeze,
2533
+ type: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze
2534
+ property :supplementaryContent,
2535
+ comment: "Suggested use - With Work or Instance".freeze,
2536
+ definition: "Material such as an index, bibliography, appendix intended to supplement the primary content of a resource.".freeze,
2537
+ "http://purl.org/dc/terms/modified": "2016-04-21 (New)".freeze,
2538
+ label: "Supplementary material".freeze,
2539
+ range: "http://id.loc.gov/ontologies/bibframe/SupplementaryContent".freeze,
2540
+ type: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze
2541
+ property :systemRequirement,
2542
+ definition: "Equipment or system requirement beyond what is normal and obvious for the type of carrier or type of file, such as make and model of equipment or hardware, operating system, amount of memory, programming language, other necessary software, any plug-ins or peripherals required to play, view, or run the resource, etc.".freeze,
2543
+ domain: "http://id.loc.gov/ontologies/bibframe/Instance".freeze,
2544
+ "http://purl.org/dc/terms/modified": ["2016-04-21 (New)".freeze, "2017-02-06 (Changed from data to object property, changed property name from plural to singular)".freeze],
2545
+ label: "Equipment or system requirements".freeze,
2546
+ range: "http://id.loc.gov/ontologies/bibframe/SystemRequirement".freeze,
2547
+ type: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze
2548
+ property :table,
2549
+ definition: "Number of the table from which the classification number in a subdivision entry is taken, e.g., a DDC table.".freeze,
2550
+ domain: "http://id.loc.gov/ontologies/bibframe/Classification".freeze,
2551
+ "http://purl.org/dc/terms/modified": "2016-04-21 (New)".freeze,
2552
+ label: "Classification table identification".freeze,
2553
+ range: "http://www.w3.org/2000/01/rdf-schema#Literal".freeze,
2554
+ type: "http://www.w3.org/2002/07/owl#DatatypeProperty".freeze
1926
2555
  property :tableOfContents,
1927
- comment: %(Table of contents of the target work or instance.).freeze,
1928
- domain: "bibframe:TableOfContents".freeze,
2556
+ comment: "Suggested use - With Work or Instance".freeze,
2557
+ definition: "Table of contents of the described resource.".freeze,
2558
+ "http://purl.org/dc/terms/modified": "2016-04-21 (New)".freeze,
1929
2559
  label: "Table of contents content".freeze,
1930
- range: "rdfs:Resource".freeze,
1931
- subPropertyOf: "bibframe:annotationBody".freeze,
1932
- type: "rdf:Property".freeze
1933
- property :tableOfContentsFor,
1934
- comment: %(Resource to which the table of contents pertains.).freeze,
1935
- domain: "bibframe:TableOfContents".freeze,
1936
- label: "Table of contents of resource".freeze,
1937
- range: "rdfs:Resource".freeze,
1938
- subPropertyOf: "bibframe:annotates".freeze,
1939
- type: "rdf:Property".freeze
1940
- property :temporalCoverageNote,
1941
- comment: %(Time period covered by the resource.).freeze,
1942
- domain: "bibframe:Work".freeze,
2560
+ range: "http://id.loc.gov/ontologies/bibframe/TableOfContents".freeze,
2561
+ type: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze
2562
+ property :tableSeq,
2563
+ definition: "Sequence number or other identifier for an internal classification sub arrangement or add in a classification scheme.".freeze,
2564
+ domain: "http://id.loc.gov/ontologies/bibframe/Classification".freeze,
2565
+ "http://purl.org/dc/terms/modified": "2016-04-21 (New)".freeze,
2566
+ label: "Classification table sequence number".freeze,
2567
+ range: "http://www.w3.org/2000/01/rdf-schema#Literal".freeze,
2568
+ type: "http://www.w3.org/2002/07/owl#DatatypeProperty".freeze
2569
+ property :temporalCoverage,
2570
+ definition: "Time period coverage of the content of the resource.".freeze,
2571
+ domain: "http://id.loc.gov/ontologies/bibframe/Work".freeze,
2572
+ "http://purl.org/dc/terms/modified": "2016-04-21 (New)".freeze,
1943
2573
  label: "Temporal coverage".freeze,
1944
- range: "rdfs:Literal".freeze,
1945
- type: "rdf:Property".freeze
2574
+ range: "http://www.w3.org/2000/01/rdf-schema#Literal".freeze,
2575
+ type: "http://www.w3.org/2002/07/owl#DatatypeProperty".freeze
1946
2576
  property :title,
1947
- comment: %(Word, character, or group of words and/or characters that is a name given to a resource).freeze,
1948
- label: "Title".freeze,
1949
- range: "rdfs:Literal".freeze,
1950
- type: "rdf:Property".freeze
1951
- property :titleAttribute,
1952
- comment: %(Other distinguishing characteristic of a work, such as version, etc..).freeze,
1953
- domain: "bibframe:Title".freeze,
1954
- label: "Other title attribute".freeze,
1955
- range: "rdfs:Literal".freeze,
1956
- type: "rdf:Property".freeze
1957
- property :titleQualifier,
1958
- comment: %(Qualifier of title information to make it unique.).freeze,
1959
- domain: "bibframe:Title".freeze,
1960
- label: "Title qualifier".freeze,
1961
- range: "rdfs:Literal".freeze,
1962
- type: "rdf:Property".freeze
1963
- property :titleSource,
1964
- comment: %(Title list from which title is taken, e.g., list of abbreviated titles.).freeze,
1965
- domain: "bibframe:Title".freeze,
1966
- label: "Title source".freeze,
1967
- range: "rdfs:Literal".freeze,
1968
- type: "rdf:Property".freeze
1969
- property :titleStatement,
1970
- comment: %(Title transcribed from an instance.).freeze,
1971
- "dc:modified": "2014-09-03 (Updated)".freeze,
1972
- domain: "bibframe:Instance".freeze,
1973
- label: "Transcribed title".freeze,
1974
- range: "rdfs:Literal".freeze,
1975
- type: "rdf:Property".freeze
1976
- property :titleType,
1977
- comment: %(Type of title variation, e.g., acronym, cover, spine. .).freeze,
1978
- "dc:modified": "2014-08-07 (Example added)".freeze,
1979
- domain: "bibframe:Title".freeze,
1980
- label: "Variant title type".freeze,
1981
- range: "rdfs:Literal".freeze,
1982
- type: "rdf:Property".freeze
1983
- property :titleValue,
1984
- comment: %(Title being addressed.).freeze,
1985
- domain: "bibframe:Title".freeze,
1986
- label: "Title".freeze,
1987
- range: "rdfs:Literal".freeze,
1988
- type: "rdf:Property".freeze
1989
- property :titleVariation,
1990
- comment: %(Title associated with the resource that is different from the main title.).freeze,
1991
- label: "Title variation".freeze,
1992
- range: "bibframe:Title".freeze,
1993
- type: "rdf:Property".freeze
1994
- property :titleVariationDate,
1995
- comment: %(Date or sequential designation of title variation.).freeze,
1996
- domain: "bibframe:Title".freeze,
1997
- label: "Variant title date".freeze,
1998
- range: "rdfs:Literal".freeze,
1999
- type: "rdf:Property".freeze
2577
+ comment: "Suggested use - With Work, Instance, Item or Event".freeze,
2578
+ definition: "Name given to a resource.".freeze,
2579
+ "http://purl.org/dc/terms/modified": ["2016-04-21 (New)".freeze, "2021-06-09 (Broadened domain [GH23])".freeze],
2580
+ label: "Title resource".freeze,
2581
+ range: "http://id.loc.gov/ontologies/bibframe/Title".freeze,
2582
+ type: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze
2583
+ property :titleOf,
2584
+ comment: "Suggested value - Work, Instance, Item or Event".freeze,
2585
+ definition: "Relates a title resource to that which it is the title of.".freeze,
2586
+ domain: "http://id.loc.gov/ontologies/bibframe/Title".freeze,
2587
+ "http://purl.org/dc/terms/modified": "2021-06-09 (New [GH22])".freeze,
2588
+ label: "Title of".freeze,
2589
+ type: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze
2000
2590
  property :translation,
2001
- comment: %(Work that translates the text of the source entity into a language different from that of the original.).freeze,
2002
- domain: "bibframe:Work".freeze,
2003
- label: "Has translation".freeze,
2004
- range: "bibframe:Work".freeze,
2005
- subPropertyOf: "bibframe:derivativeOf".freeze,
2006
- type: "rdf:Property".freeze
2591
+ comment: ["Suggested use - With Work or Instance".freeze, "Suggested value - Work or Instance".freeze],
2592
+ definition: "Resource that translates the text of the source entity into a language different from that of the original.".freeze,
2593
+ "http://purl.org/dc/terms/modified": ["2016-04-21 (New)".freeze, "2016-04-29 (added inverse, updated range)".freeze, "2017-02-03 (corrected subproperty)".freeze],
2594
+ inverseOf: "http://id.loc.gov/ontologies/bibframe/translationOf".freeze,
2595
+ label: "Translation as".freeze,
2596
+ subPropertyOf: "http://id.loc.gov/ontologies/bibframe/hasDerivative".freeze,
2597
+ type: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze
2007
2598
  property :translationOf,
2008
- comment: %(Work that has been translated, i.e., the text expressed in a language different from that of the original work\).).freeze,
2009
- domain: "bibframe:Work".freeze,
2599
+ comment: ["Suggested use - With Work or Instance".freeze, "Suggested value - Work or Instance".freeze],
2600
+ definition: "Resource that has been translated, i.e., the text is expressed in a language different from that of the original resource.".freeze,
2601
+ "http://purl.org/dc/terms/modified": ["2016-04-21 (New)".freeze, "2016-04-29 (added inverse, updated range)".freeze, "2017-02-03 (corrected subproperty)".freeze],
2602
+ inverseOf: "http://id.loc.gov/ontologies/bibframe/translation".freeze,
2010
2603
  label: "Translation of".freeze,
2011
- range: "bibframe:Work".freeze,
2012
- subPropertyOf: "bibframe:hasDerivative".freeze,
2013
- type: "rdf:Property".freeze
2014
- property :treatySignator,
2015
- comment: %(Government of other party that has formally signed a treaty.).freeze,
2016
- "dc:modified": "2014-03-21 (Range updated)".freeze,
2017
- label: "Signatory to a treaty".freeze,
2018
- range: "rdfs:Literal".freeze,
2019
- type: "rdf:Property".freeze
2020
- property :unionOf,
2021
- comment: %(One of two or more works which came together to form a new work.).freeze,
2022
- "dc:modified": "2014-04-10 (Updated subproperty)".freeze,
2023
- domain: "bibframe:Work".freeze,
2024
- label: "Union of".freeze,
2025
- range: "bibframe:Work".freeze,
2026
- subPropertyOf: "bibframe:precededBy".freeze,
2027
- type: "rdf:Property".freeze
2028
- property :upc,
2029
- comment: %(Universal Product Code.).freeze,
2030
- domain: "bibframe:Instance".freeze,
2031
- label: "UPC".freeze,
2032
- range: "bibframe:Identifier".freeze,
2033
- subPropertyOf: "bibframe:identifier".freeze,
2034
- type: "rdf:Property".freeze
2035
- property :uri,
2036
- comment: %(Uniform Resource Identifier.).freeze,
2037
- label: "URI".freeze,
2038
- range: "bibframe:Identifier".freeze,
2039
- subPropertyOf: "bibframe:identifier".freeze,
2040
- type: "rdf:Property".freeze
2041
- property :urn,
2042
- comment: %(Uniform Resource Number.).freeze,
2043
- domain: "bibframe:Instance".freeze,
2044
- label: "URN".freeze,
2045
- range: "bibframe:Identifier".freeze,
2046
- subPropertyOf: "bibframe:identifier".freeze,
2047
- type: "rdf:Property".freeze
2048
- property :videorecordingNumber,
2049
- comment: %(Number assigned by a publisher to a videorecording.).freeze,
2050
- domain: "bibframe:Instance".freeze,
2051
- label: "Videorecording number".freeze,
2052
- range: "bibframe:Identifier".freeze,
2053
- subPropertyOf: "bibframe:identifier".freeze,
2054
- type: "rdf:Property".freeze
2055
- property :workTitle,
2056
- comment: %(Title or form of title chosen to identify the work, such as a preferred title, preferred title with additions, uniform title, etc..).freeze,
2057
- domain: "bibframe:Work".freeze,
2058
- label: "Work title".freeze,
2059
- range: "bibframe:Title".freeze,
2060
- type: "rdf:Property".freeze
2604
+ subPropertyOf: "http://id.loc.gov/ontologies/bibframe/derivativeOf".freeze,
2605
+ type: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze
2606
+ property :unit,
2607
+ definition: "Units in which a value is expressed, such as the physical or logical constituent of a resource (e.g., a volume, audiocassette, film reel, a map, a digital file).".freeze,
2608
+ domain: "http://www.w3.org/2000/01/rdf-schema#Resource".freeze,
2609
+ "http://purl.org/dc/terms/modified": "2016-04-21 (New)".freeze,
2610
+ label: "Type of unit".freeze,
2611
+ range: "http://id.loc.gov/ontologies/bibframe/Unit".freeze,
2612
+ type: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze
2613
+ property :usageAndAccessPolicy,
2614
+ comment: "Suggested use - With Work, Instance or Item".freeze,
2615
+ definition: "General statement of allowances and restrictions on access to a resource, including retention, reproduction, access, and lending.".freeze,
2616
+ "http://purl.org/dc/terms/modified": "2016-04-21 (New)".freeze,
2617
+ label: "Use and access condition".freeze,
2618
+ range: "http://id.loc.gov/ontologies/bibframe/UsageAndAccessPolicy".freeze,
2619
+ type: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze
2620
+ property :variantType,
2621
+ definition: "Type of title variation, e.g., acronym, cover, spine, earlier, later, series version.".freeze,
2622
+ domain: "http://id.loc.gov/ontologies/bibframe/VariantTitle".freeze,
2623
+ "http://purl.org/dc/terms/modified": "2016-04-21 (New)".freeze,
2624
+ label: "Variant title type".freeze,
2625
+ range: "http://www.w3.org/2000/01/rdf-schema#Literal".freeze,
2626
+ type: "http://www.w3.org/2002/07/owl#DatatypeProperty".freeze
2627
+ property :version,
2628
+ definition: "Term or terms that identify works such as arranged for music, vulgate for religious work, etc.".freeze,
2629
+ domain: "http://id.loc.gov/ontologies/bibframe/Work".freeze,
2630
+ "http://purl.org/dc/terms/modified": "2016-04-21 (New)".freeze,
2631
+ label: "Version".freeze,
2632
+ range: "http://www.w3.org/2000/01/rdf-schema#Literal".freeze,
2633
+ type: "http://www.w3.org/2002/07/owl#DatatypeProperty".freeze
2634
+ property :videoCharacteristic,
2635
+ definition: "Technical specification relating to the encoding of video images in a resource".freeze,
2636
+ domain: "http://id.loc.gov/ontologies/bibframe/Instance".freeze,
2637
+ "http://purl.org/dc/terms/modified": "2016-04-21 (New)".freeze,
2638
+ label: "Video characteristic".freeze,
2639
+ range: "http://id.loc.gov/ontologies/bibframe/VideoCharacteristic".freeze,
2640
+ type: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze
2641
+ property :voice,
2642
+ definition: "Voice for which a musical work is appropriate, such as soprano, tenor, mixed.".freeze,
2643
+ domain: "http://id.loc.gov/ontologies/bibframe/Work".freeze,
2644
+ "http://purl.org/dc/terms/modified": "2016-04-21 (New)".freeze,
2645
+ label: "Voice".freeze,
2646
+ range: "http://id.loc.gov/ontologies/bibframe/MusicVoice".freeze,
2647
+ type: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze
2648
+ property :voiceType,
2649
+ definition: "Specific type of voice group, such as chorus, solo.".freeze,
2650
+ domain: "http://id.loc.gov/ontologies/bibframe/MusicVoice".freeze,
2651
+ "http://purl.org/dc/terms/modified": "2016-04-21 (New)".freeze,
2652
+ label: "Type of voice".freeze,
2653
+ range: "http://www.w3.org/2000/01/rdf-schema#Literal".freeze,
2654
+ type: "http://www.w3.org/2002/07/owl#DatatypeProperty".freeze
2061
2655
  end
2062
2656
  end