cocina-models 0.75.0 → 0.78.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (142) hide show
  1. checksums.yaml +4 -4
  2. data/.rubocop.yml +40 -12
  3. data/.rubocop_todo.yml +71 -2
  4. data/README.md +41 -5
  5. data/cocina-models.gemspec +2 -0
  6. data/description_types.yml +167 -38
  7. data/docs/description_types.md +471 -216
  8. data/lib/cocina/generator/generator.rb +7 -12
  9. data/lib/cocina/generator/schema.rb +1 -3
  10. data/lib/cocina/generator/schema_base.rb +0 -8
  11. data/lib/cocina/generator/schema_ref.rb +1 -1
  12. data/lib/cocina/generator/schema_value.rb +14 -4
  13. data/lib/cocina/models/access.rb +4 -4
  14. data/lib/cocina/models/admin_policy.rb +1 -1
  15. data/lib/cocina/models/admin_policy_access_template.rb +7 -7
  16. data/lib/cocina/models/admin_policy_administrative.rb +1 -1
  17. data/lib/cocina/models/admin_policy_with_metadata.rb +3 -3
  18. data/lib/cocina/models/builders/name_title_group_builder.rb +0 -4
  19. data/lib/cocina/models/builders/title_builder.rb +0 -2
  20. data/lib/cocina/models/citation_only_access.rb +2 -2
  21. data/lib/cocina/models/collection_access.rb +4 -4
  22. data/lib/cocina/models/collection_identification.rb +1 -1
  23. data/lib/cocina/models/collection_with_metadata.rb +2 -2
  24. data/lib/cocina/models/contributor.rb +4 -4
  25. data/lib/cocina/models/controlled_digital_lending_access.rb +2 -2
  26. data/lib/cocina/models/dark_access.rb +4 -4
  27. data/lib/cocina/models/description.rb +3 -3
  28. data/lib/cocina/models/descriptive_basic_value.rb +13 -13
  29. data/lib/cocina/models/descriptive_parallel_contributor.rb +5 -5
  30. data/lib/cocina/models/descriptive_parallel_event.rb +3 -3
  31. data/lib/cocina/models/descriptive_value.rb +13 -13
  32. data/lib/cocina/models/descriptive_value_language.rb +6 -6
  33. data/lib/cocina/models/dro.rb +1 -1
  34. data/lib/cocina/models/dro_access.rb +8 -8
  35. data/lib/cocina/models/dro_with_metadata.rb +3 -3
  36. data/lib/cocina/models/embargo.rb +5 -5
  37. data/lib/cocina/models/event.rb +3 -3
  38. data/lib/cocina/models/file.rb +4 -4
  39. data/lib/cocina/models/file_access.rb +4 -4
  40. data/lib/cocina/models/identification.rb +2 -2
  41. data/lib/cocina/models/language.rb +12 -12
  42. data/lib/cocina/models/location_based_access.rb +1 -1
  43. data/lib/cocina/models/location_based_download_access.rb +1 -1
  44. data/lib/cocina/models/mapping/error_notifier.rb +36 -0
  45. data/lib/cocina/models/mapping/from_mods/access.rb +177 -0
  46. data/lib/cocina/models/mapping/from_mods/admin_metadata.rb +217 -0
  47. data/lib/cocina/models/mapping/from_mods/alt_rep_group.rb +26 -0
  48. data/lib/cocina/models/mapping/from_mods/authority.rb +51 -0
  49. data/lib/cocina/models/mapping/from_mods/contributor.rb +161 -0
  50. data/lib/cocina/models/mapping/from_mods/description.rb +98 -0
  51. data/lib/cocina/models/mapping/from_mods/description_builder.rb +61 -0
  52. data/lib/cocina/models/mapping/from_mods/event.rb +543 -0
  53. data/lib/cocina/models/mapping/from_mods/form.rb +381 -0
  54. data/lib/cocina/models/mapping/from_mods/geographic.rb +219 -0
  55. data/lib/cocina/models/mapping/from_mods/hydrus_default_title_builder.rb +28 -0
  56. data/lib/cocina/models/mapping/from_mods/identifier.rb +51 -0
  57. data/lib/cocina/models/mapping/from_mods/identifier_builder.rb +71 -0
  58. data/lib/cocina/models/mapping/from_mods/identifier_type.rb +292 -0
  59. data/lib/cocina/models/mapping/from_mods/language.rb +36 -0
  60. data/lib/cocina/models/mapping/from_mods/language_script.rb +30 -0
  61. data/lib/cocina/models/mapping/from_mods/language_term.rb +106 -0
  62. data/lib/cocina/models/mapping/from_mods/name_builder.rb +307 -0
  63. data/lib/cocina/models/mapping/from_mods/note.rb +162 -0
  64. data/lib/cocina/models/mapping/from_mods/part_builder.rb +147 -0
  65. data/lib/cocina/models/mapping/from_mods/primary.rb +27 -0
  66. data/lib/cocina/models/mapping/from_mods/purl.rb +53 -0
  67. data/lib/cocina/models/mapping/from_mods/related_resource.rb +105 -0
  68. data/lib/cocina/models/mapping/from_mods/subject.rb +413 -0
  69. data/lib/cocina/models/mapping/from_mods/subject_authority_codes.rb +794 -0
  70. data/lib/cocina/models/mapping/from_mods/title.rb +160 -0
  71. data/lib/cocina/models/mapping/from_mods/title_builder.rb +106 -0
  72. data/lib/cocina/models/mapping/from_mods/title_builder_strategy.rb +19 -0
  73. data/lib/cocina/models/mapping/from_mods/value_uri.rb +25 -0
  74. data/lib/cocina/models/mapping/normalizers/base.rb +16 -0
  75. data/lib/cocina/models/mapping/normalizers/mods/geo_extension_normalizer.rb +69 -0
  76. data/lib/cocina/models/mapping/normalizers/mods/name_normalizer.rb +191 -0
  77. data/lib/cocina/models/mapping/normalizers/mods/origin_info_normalizer.rb +157 -0
  78. data/lib/cocina/models/mapping/normalizers/mods/subject_normalizer.rb +296 -0
  79. data/lib/cocina/models/mapping/normalizers/mods/title_normalizer.rb +91 -0
  80. data/lib/cocina/models/mapping/normalizers/mods_normalizer.rb +409 -0
  81. data/lib/cocina/models/mapping/purl.rb +27 -0
  82. data/lib/cocina/models/mapping/to_mods/access.rb +155 -0
  83. data/lib/cocina/models/mapping/to_mods/admin_metadata.rb +129 -0
  84. data/lib/cocina/models/mapping/to_mods/contributor.rb +49 -0
  85. data/lib/cocina/models/mapping/to_mods/description.rb +63 -0
  86. data/lib/cocina/models/mapping/to_mods/event.rb +200 -0
  87. data/lib/cocina/models/mapping/to_mods/form.rb +292 -0
  88. data/lib/cocina/models/mapping/to_mods/geographic.rb +151 -0
  89. data/lib/cocina/models/mapping/to_mods/id_generator.rb +25 -0
  90. data/lib/cocina/models/mapping/to_mods/identifier.rb +57 -0
  91. data/lib/cocina/models/mapping/to_mods/language.rb +82 -0
  92. data/lib/cocina/models/mapping/to_mods/mods_writer.rb +38 -0
  93. data/lib/cocina/models/mapping/to_mods/name_title_group.rb +29 -0
  94. data/lib/cocina/models/mapping/to_mods/name_writer.rb +228 -0
  95. data/lib/cocina/models/mapping/to_mods/note.rb +105 -0
  96. data/lib/cocina/models/mapping/to_mods/part_writer.rb +115 -0
  97. data/lib/cocina/models/mapping/to_mods/related_resource.rb +108 -0
  98. data/lib/cocina/models/mapping/to_mods/role_writer.rb +50 -0
  99. data/lib/cocina/models/mapping/to_mods/subject.rb +486 -0
  100. data/lib/cocina/models/mapping/to_mods/title.rb +260 -0
  101. data/lib/cocina/models/object_metadata.rb +2 -2
  102. data/lib/cocina/models/presentation.rb +2 -2
  103. data/lib/cocina/models/related_resource.rb +9 -9
  104. data/lib/cocina/models/release_tag.rb +4 -4
  105. data/lib/cocina/models/request_admin_policy.rb +1 -1
  106. data/lib/cocina/models/request_administrative.rb +1 -1
  107. data/lib/cocina/models/request_collection.rb +2 -2
  108. data/lib/cocina/models/request_description.rb +3 -3
  109. data/lib/cocina/models/request_dro.rb +4 -4
  110. data/lib/cocina/models/request_file.rb +5 -5
  111. data/lib/cocina/models/request_identification.rb +1 -1
  112. data/lib/cocina/models/sequence.rb +1 -1
  113. data/lib/cocina/models/source.rb +4 -4
  114. data/lib/cocina/models/standard.rb +5 -5
  115. data/lib/cocina/models/stanford_access.rb +2 -2
  116. data/lib/cocina/models/title.rb +13 -13
  117. data/lib/cocina/models/validators/dark_validator.rb +4 -2
  118. data/lib/cocina/models/validators/description_values_validator.rb +77 -0
  119. data/lib/cocina/models/validators/open_api_validator.rb +0 -4
  120. data/lib/cocina/models/validators/validator.rb +2 -1
  121. data/lib/cocina/models/version.rb +1 -1
  122. data/lib/cocina/models/world_access.rb +2 -2
  123. data/lib/cocina/models.rb +4 -0
  124. data/lib/cocina/rspec/factories.rb +205 -0
  125. data/lib/cocina/rspec.rb +2 -0
  126. data/openapi.yml +5 -5
  127. metadata +89 -17
  128. data/docs/_config.yml +0 -1
  129. data/docs/maps/Agent.json +0 -18
  130. data/docs/maps/Collection.json +0 -240
  131. data/docs/maps/DRO.json +0 -316
  132. data/docs/maps/Description.json +0 -17
  133. data/docs/maps/File.json +0 -196
  134. data/docs/maps/Fileset.json +0 -143
  135. data/docs/maps/README.md +0 -7
  136. data/docs/maps/ReleaseTag.json +0 -39
  137. data/docs/maps/Sequence.json +0 -46
  138. data/docs/maps/Title.json +0 -18
  139. data/docs/sampleETD/foxml-export.xml +0 -935
  140. data/docs/sampleETD/foxml.xml +0 -3475
  141. data/docs/sampleETD/xn109qc9773_bibframe.ttl +0 -95
  142. data/docs/sampleETD/xn109qc9773_taco.json +0 -158
@@ -17,8 +17,6 @@ access.note:
17
17
  description: License describing allowed uses of the resource.
18
18
  - value: use and reproduction
19
19
  description: Information related to allowed uses of the resource in other contexts.
20
- - value: access constraints
21
- status: TEMP
22
20
  access.physicalLocation:
23
21
  - value: discovery
24
22
  description: Location where a user may find the resource.
@@ -29,6 +27,7 @@ access.physicalLocation:
29
27
  - value: series
30
28
  description: Archival series of the resource.
31
29
  status: deprecated
30
+ use: relatedResource.title.value with relatedResource type "host" and displayLabel "Series"
32
31
  - value: shelf locator
33
32
  description: Identifier or shelfmark indicating the location of the resource.
34
33
  adminMetadata.note:
@@ -66,7 +65,7 @@ contributor.name:
66
65
  - value: pseudonym
67
66
  description: Name used that differs from legal or primary form of name.
68
67
  - value: surname
69
- description: Last or family name.
68
+ description: Last or family name or names.
70
69
  - value: transliteration
71
70
  description: Name originally in non-Latin script presented phonetically using Latin characters.
72
71
  contributor.name.structuredValue:
@@ -81,7 +80,7 @@ contributor.name.structuredValue:
81
80
  - value: ordinal
82
81
  description: Indicator that the name is one in a series (e.g. Elizabeth I, Martin Luther King, Jr.).
83
82
  - value: surname
84
- description: Last or family name.
83
+ description: Last or family name or names.
85
84
  - value: term of address
86
85
  description: Title or other signifier associated with name.
87
86
  contributor.name.groupedValue:
@@ -112,9 +111,11 @@ event:
112
111
  - value: creation
113
112
  description: The coming into being of a resource.
114
113
  - value: deaccession
114
+ description: The removal of a resource from a repository.
115
115
  - value: degree conferral
116
116
  description: The institutional approval of a thesis or other resource leading to an academic degree.
117
117
  - value: deposit
118
+ description: The submission of a resource to a repository.
118
119
  - value: development
119
120
  description: The creation of a print from a photographic negative or other source medium.
120
121
  - value: distribution
@@ -131,6 +132,8 @@ event:
131
132
  description: The discussion of an academic or intellectual work for an audience, such as a seminar.
132
133
  - value: production
133
134
  description: The physical assembly of a resource not considered published, such as page proofs for a book.
135
+ - value: provenance
136
+ description: The resource's origins and history.
134
137
  - value: publication
135
138
  description: The publishing or issuing of a resource.
136
139
  - value: recording
@@ -145,7 +148,7 @@ event:
145
148
  description: The removal of previous access to a resource, often due to its obsolescence.
146
149
  event.date:
147
150
  - value: accompanying letter
148
- description: Athanasius
151
+ description: Used in Athanasius Kircher project.
149
152
  status: deprecated
150
153
  - value: acquisition
151
154
  description: The transferral of ownership of a resource to a repository.
@@ -154,10 +157,10 @@ event.date:
154
157
  - value: collection
155
158
  description: The addition of a resource to a set of other resources.
156
159
  - value: composition
157
- description: Athanasius
160
+ description: Used in Athanasius Kircher project.
158
161
  status: deprecated
159
162
  - value: copy
160
- description: Athanasius
163
+ description: Used in Athanasius Kircher project.
161
164
  status: deprecated
162
165
  - value: copyright
163
166
  description: The activity by which a resource may be considered subject to copyright law.
@@ -165,9 +168,11 @@ event.date:
165
168
  - value: creation
166
169
  description: The coming into being of a resource.
167
170
  - value: deaccession
171
+ description: The removal of a resource from a repository.
168
172
  - value: degree conferral
169
173
  description: The institutional approval of a thesis or other resource leading to an academic degree.
170
174
  - value: deposit
175
+ description: The submission of a resource to a repository.
171
176
  - value: developed
172
177
  description: The creation of a print from a photographic negative or other source medium.
173
178
  status: deprecated
@@ -178,59 +183,73 @@ event.date:
178
183
  description: The delivery of the resource to an external audience.
179
184
  - value: generation
180
185
  description: The creation of a resource by an automatic or natural process.
186
+ - value: Gregorian
187
+ status: deprecated
188
+ use: event.date.note.value with type "calendar"
189
+ - value: Hebrew
190
+ status: deprecated
191
+ use: event.date.note.value with type "calendar"
181
192
  - value: Hijri calendar
193
+ status: deprecated
194
+ use: event.date.note.value with type "calendar"
182
195
  - value: Islamic
196
+ status: deprecated
197
+ use: event.date.note.value with type "calendar"
183
198
  - value: Julian
199
+ status: deprecated
200
+ use: event.date.note.value with type "calendar"
184
201
  - value: letter
185
- description: Athanasius
202
+ description: Used in Athanasius Kircher project.
186
203
  status: deprecated
187
204
  - value: letter referred to
188
- description: Athanasius
205
+ description: Used in Athanasius Kircher project.
189
206
  status: deprecated
190
207
  - value: manufacture
191
208
  description: The physical assembly of a resource, often in multiple copies, for publication or other distribution.
192
209
  - value: manuscript
193
- description: Athanasius
210
+ description: Used in Athanasius Kircher project.
194
211
  status: deprecated
195
212
  - value: manuscript referred to
196
- description: Athanasius
213
+ description: Used in Athanasius Kircher project.
197
214
  status: deprecated
198
215
  - value: modification
199
216
  description: A change to an existing resource.
200
217
  - value: new document
201
- description: Athanasius
202
- - value: new style letter
218
+ description: Used in Athanasius Kircher project.
203
219
  status: deprecated
204
- description: Athanasius
220
+ - value: new style letter
221
+ description: Used in Athanasius Kircher project.
205
222
  status: deprecated
206
223
  - value: observation
207
- description: Athanasius
224
+ description: Used in Athanasius Kircher project.
208
225
  status: deprecated
209
226
  - value: old style letter
210
- description: Athanasius
227
+ description: Used in Athanasius Kircher project.
211
228
  status: deprecated
212
229
  - value: original sent
213
- description: Athanasius
230
+ description: Used in Athanasius Kircher project.
214
231
  status: deprecated
215
232
  - value: performance
216
233
  description: The enactment of an artistic or cultural work for an audience, such as a play.
217
234
  - value: presentation
218
235
  description: The discussion of an academic or intellectual work for an audience, such as a seminar.
219
236
  - value: proclamation
220
- description: Athanasius
237
+ description: Used in Athanasius Kircher project.
221
238
  status: deprecated
222
239
  - value: production
223
240
  description: The physical assembly of a resource not considered published, such as page proofs for a book.
224
241
  - value: publication
225
242
  description: The publishing or issuing of a resource.
226
243
  - value: quoted
227
- description: Athanasius
244
+ description: Used in Athanasius Kircher project.
228
245
  status: deprecated
229
246
  - value: recording
230
247
  description: The initial fixation to a medium of live audio and/or visual activity.
231
248
  - value: release
232
249
  description: Making a resource available to a broader audience.
233
250
  - value: Revolutionary calendar
251
+ status: deprecated
252
+ use: event.date.note.value with type "calendar"
234
253
  - value: submission
235
254
  description: The provision of a resource for review or evaluation.
236
255
  - value: validity
@@ -239,6 +258,7 @@ event.date:
239
258
  description: The removal of previous access to a resource, often due to its obsolescence.
240
259
  event.date.note:
241
260
  - value: calendar
261
+ description: The calendar system used for a date.
242
262
  event.date.structuredValue:
243
263
  - value: start
244
264
  description: The start date in a range.
@@ -248,44 +268,69 @@ event.note:
248
268
  - value: copyright statement
249
269
  description: A formal declaration of copyright on a resource.
250
270
  - value: edition
271
+ description: A published version of a resource issued at one time.
251
272
  - value: frequency
252
273
  description: How often a resource is issued, such as monthly.
253
274
  - value: issuance
254
275
  description: How the resource is issued, such as serially.
255
276
  form:
256
277
  - value: carrier
278
+ description: Format of the resource's storage medium.
257
279
  - value: data format
280
+ description: The structure of a dataset.
258
281
  - value: digital origin
282
+ description: The relationship of a digitized resource to a previous format.
259
283
  - value: extent
284
+ description: The size or dimensions of the resource.
260
285
  - value: form
286
+ description: A description of the materiality of the resource.
261
287
  - value: genre
288
+ description: The intellectual category of a resource based on style, form, content, etc.
262
289
  - value: map projection
290
+ description: The method used to represent the curvature of a planet on a flat plane.
263
291
  - value: map scale
292
+ description: The size ratio of the map image to the depicted area.
264
293
  - value: material
294
+ description: The physical components constituting the resource.
265
295
  - value: media
296
+ description: The technology required to mediate interactions with a resource.
266
297
  - value: media type
267
298
  - value: reformatting quality
299
+ description: The use for which the reproduction quality of the resource was intended (e.g. access, preservation).
268
300
  - value: resource type
301
+ description: The general format category of the resource.
269
302
  - value: technique
303
+ description: The method used to create the resource.
270
304
  - value: type
271
305
  form.structuredValue:
272
306
  - value: type
307
+ description: Used for H2 deposits.
273
308
  - value: subtype
309
+ description: Used for H2 deposits.
274
310
  geographic.form:
275
311
  - value: data format
276
312
  - value: media type
277
313
  - value: type
278
314
  geographic.subject:
279
315
  - value: bounding box coordinates
316
+ description: A series of coordinates forming the boundaries of the depicted area.
280
317
  - value: coverage
318
+ description: The name of the area the resource depicts.
281
319
  - value: point coordinates
320
+ description: A pair of coordinates showing the latitude and longitude of the depicted area.
282
321
  geographic.subject.structuredValue:
283
322
  - value: east
323
+ description: A directional indicator for a point of a bounding box.
284
324
  - value: latitude
325
+ description: The angular distance of a place north or south from the equator.
285
326
  - value: longitude
327
+ description: The angular distance of a place east or west from the standard meridian.
286
328
  - value: north
329
+ description: A directional indicator for a point of a bounding box.
287
330
  - value: south
331
+ description: A directional indicator for a point of a bounding box.
288
332
  - value: west
333
+ description: A directional indicator for a point of a bounding box.
289
334
  identifier:
290
335
  - value: accession
291
336
  status: deprecated
@@ -367,68 +412,87 @@ identifier:
367
412
  - value: 'West Mat #'
368
413
  - value: Wikidata
369
414
  code: wikidata
370
- - value: Bodley 342
371
- status: TEMP
372
- - value: vintage
373
- status: TEMP
374
- - value: accesion
375
- status: TEMP
376
- - value: Suri UUID
377
- status: TEMP
378
415
  note:
379
416
  - value: abstract
417
+ description: A short overview of a research article or other work.
380
418
  - value: access
419
+ description: Information about gaining access to a resource.
381
420
  - value: access note
382
421
  status: deprecated
383
422
  use: access
384
423
  - value: acquisition
424
+ description: The transfer of a resource to a repository.
385
425
  - value: action
386
426
  - value: additional physical form
427
+ description: Other formats of the resource.
387
428
  - value: additions
429
+ description: Resources added after initial acquisition.
388
430
  - value: admin
431
+ description: Administrative or internal use.
389
432
  - value: affiliation
433
+ description: Institution with which a person or other entity is associated.
390
434
  - value: arrangement
435
+ description: The organization of an archival or other collection.
391
436
  - value: bibliographic
392
437
  - value: bibliography
438
+ description: Other resources with additional information about the resource.
393
439
  - value: binding
394
440
  - value: biographical/historical
441
+ description: Background on a person, organization, or other entity strongly associated with the resource.
395
442
  - value: biographical/historical note
396
443
  status: deprecated
397
444
  use: biographical/historical
398
445
  - value: biography
446
+ description: Background on a person strongly associated with the resource.
399
447
  - value: boat note
400
448
  - value: citation/reference
449
+ description: Other resources that cite this resource.
401
450
  - value: codicology
402
451
  - value: collation
403
452
  - value: colophon
404
453
  - value: condition
454
+ description: Physical wear on an object.
405
455
  - value: contact
456
+ description: Contact information for someone responsible for the resource.
406
457
  - value: content
458
+ description: The information the resource contains.
407
459
  - value: content note
408
460
  status: deprecated
409
461
  use: content
410
462
  - value: content warning
463
+ description: Cautionary information about offensive or triggering resource content.
411
464
  - value: contents
412
465
  status: deprecated
413
466
  use: content
414
467
  - value: copyright
468
+ description: A creator's legal ownership of a resource's content.
415
469
  - value: creation/production credits
470
+ description: Cast and crew associated with the production of a resource.
416
471
  - value: date
472
+ description: Information about a date or dates associated with the resource.
417
473
  - value: date/sequential designation
418
474
  - value: decoNote
419
475
  status: deprecated
420
476
  use: decoration
421
477
  - value: decoration
422
478
  - value: description
479
+ description: Information describing the resource.
423
480
  - value: digitization
481
+ description: The process of creating a digital representation of a physical object.
424
482
  - value: dimensions
483
+ description: The size of an object in terms of area or volume.
425
484
  - value: duration
485
+ description: The length of a time-based resource.
426
486
  - value: email
487
+ description: An email address related to the resource.
427
488
  - value: event
489
+ description: A time-bound occurrence associated with a resource.
428
490
  - value: exhibitions
491
+ description: Public displays of the resource as part of an exhibit.
429
492
  - value: explicit
430
493
  - value: foliation
431
494
  - value: funding
495
+ description: Financial support for producing, acquiring, or otherwise processing the resource.
432
496
  - value: general
433
497
  - value: genre type
434
498
  - value: geography
@@ -440,9 +504,11 @@ note:
440
504
  - value: host
441
505
  - value: incipit
442
506
  - value: instrumentation
507
+ description: Musical instruments involved in the performance of a resource.
443
508
  - value: language
444
509
  - value: layout
445
510
  - value: local
511
+ description: A note with local application.
446
512
  - value: location
447
513
  - value: material
448
514
  - value: medium of performance
@@ -456,11 +522,15 @@ note:
456
522
  - value: performer
457
523
  - value: performers
458
524
  - value: preferred citation
525
+ description: The preferred form for citing a resource.
459
526
  - value: provenance
527
+ description: The resource's origins and history.
460
528
  - value: publications
529
+ description: Other published works related to the resource.
461
530
  - value: qualifications
462
531
  - value: quote
463
532
  - value: reassembly
533
+ description: The return of an object to a whole after being separated into parts.
464
534
  - value: reference
465
535
  - value: references
466
536
  - value: reformatting
@@ -480,6 +550,7 @@ note:
480
550
  - value: source characteristics
481
551
  - value: source identifier
482
552
  - value: statement of responsibility
553
+ description: The contributors to a work as transcribed from a title page.
483
554
  - value: summary
484
555
  - value: system details
485
556
  - value: system requirements
@@ -493,11 +564,10 @@ note:
493
564
  - value: update
494
565
  - value: use and reproduction
495
566
  - value: venue
567
+ description: The location of a public performance or other event.
496
568
  - value: version
497
569
  - value: version identification
498
570
  - value: writing
499
- - value: note
500
- status: TEMP
501
571
  note.groupedValue:
502
572
  - value: caption
503
573
  - value: date
@@ -537,78 +607,141 @@ relatedResource:
537
607
  description: A successor to the resource, such as a subsequent journal title.
538
608
  subject:
539
609
  - value: classification
610
+ description: A coded reference to the main subjects of the resource according to a larger system.
540
611
  - value: conference
612
+ description: An event focusing on a particular topic or discipline.
541
613
  - value: display
614
+ description: Preferred form of the value for display.
542
615
  - value: event
616
+ description: A time-bound occurrence.
543
617
  - value: family
618
+ description: A group of individuals related by blood or personal alliance.
544
619
  - value: genre
620
+ description: The intellectual category of a resource based on style, form, content, etc.
545
621
  - value: map coordinates
622
+ description: Bounding box or point coordinates describing the area represented by a map or other geographic resource.
546
623
  - value: name
624
+ description: The name of an entity whose type is not known.
547
625
  - value: occupation
626
+ description: A profession or job category associated with the content of a resource.
548
627
  - value: organization
628
+ description: An institution or other corporate or collective body.
549
629
  - value: person
630
+ description: An individual identity.
550
631
  - value: place
632
+ description: A geographic location associated with the content of a resource.
551
633
  - value: point coordinates
634
+ description: The latitude and longitude of a place associated with the content of a resource.
552
635
  - value: time
636
+ description: The temporal period associated with the content of a resource.
553
637
  - value: title
638
+ description: A work that is the subject of the resource.
554
639
  - value: topic
555
- - value: surname
556
- status: TEMP
640
+ description: Terms representing the information contained in or other relevant attributes of a resource.
557
641
  subject.note:
558
642
  - value: affiliation
643
+ description: Institution with which the contributor is associated.
559
644
  - value: description
645
+ description: Biographical information about the contributor.
560
646
  - value: role
647
+ description: The relation of the subject entity to the resource.
561
648
  subject.structuredValue:
562
649
  - value: activity dates
650
+ description: The date or dates when someone was producing work.
563
651
  - value: area
652
+ description: A non-jurisdictional geographic entity.
564
653
  - value: city
654
+ description: An inhabited place incorporated as a city or equivalent.
565
655
  - value: city section
656
+ description: A smaller unit within a populated place, such as a neighborhood.
566
657
  - value: conference
658
+ description: An event focusing on a particular topic or discipline.
567
659
  - value: continent
660
+ description: Large land mass or portion of land mass considered to be a continent.
568
661
  - value: country
662
+ description: A political entity considered to be a country.
569
663
  - value: county
570
- - value: end
664
+ description: A political division of a state or the largest local administrative unit.
665
+ - value: display
666
+ description: Preferred form of the value for display.
571
667
  - value: east
668
+ description: A directional indicator for a point of a bounding box.
669
+ - value: end
670
+ description: The end date in a range.
572
671
  - value: event
672
+ description: A time-bound occurrence.
573
673
  - value: extraterrestrial area
574
- - value: display
674
+ description: An entity, space, or feature not on Earth.
575
675
  - value: family
676
+ description: A group of individuals related by blood or personal alliance.
576
677
  - value: forename
678
+ description: First or given name or names.
577
679
  - value: genre
680
+ description: The intellectual category of a resource based on style, form, content, etc.
578
681
  - value: island
682
+ description: A tract of land surrounded by water but not itself a separate continent or country.
579
683
  - value: latitude
684
+ description: The angular distance of a place north or south from the equator.
580
685
  - value: life dates
686
+ description: Birth and death dates, or dates when an entity was in existence.
581
687
  - value: longitude
688
+ description: The angular distance of a place east or west from the standard meridian.
582
689
  - value: main title
690
+ description: Title provided alongside additional information.
583
691
  - value: name
692
+ description: Name provided alongside additional information.
584
693
  - value: nonsorting characters
694
+ description: A string at the beginning of the title to be disregarded when sorting.
585
695
  - value: north
696
+ description: A directional indicator for a point of a bounding box.
586
697
  - value: occupation
698
+ description: A profession or job category associated with the content of a resource.
587
699
  - value: ordinal
700
+ description: Indicator that the name is one in a series (e.g. Elizabeth I, Martin Luther King, Jr.).
588
701
  - value: organization
702
+ description: An institution or other corporate or collective body.
589
703
  - value: part name
704
+ description: The distinct name of a resource as part of a series or multivolume set.
590
705
  - value: part number
706
+ description: The distinct number of a resource as part of a series or multivolume set.
591
707
  - value: person
708
+ description: An individual identity.
592
709
  - value: place
710
+ description: A geographic location associated with the content of a resource.
593
711
  - value: region
712
+ description: An area that incorporates more than one first-order jurisdiction.
594
713
  - value: south
714
+ description: A directional indicator for a point of a bounding box.
595
715
  - value: start
716
+ description: The start date in a range.
596
717
  - value: state
718
+ description: A first-order political jurisdiction under country, including provinces, cantons, etc.
597
719
  - value: subtitle
720
+ description: The secondary part of a title.
598
721
  - value: surname
722
+ description: Last or family name or names.
599
723
  - value: term of address
724
+ description: Title or other signifier associated with name.
600
725
  - value: territory
726
+ description: A geographical area belonging to or under the jurisdiction of a governmental authority.
601
727
  - value: time
728
+ description: The temporal period associated with the content of a resource.
602
729
  - value: title
730
+ description: A work that is the subject of the resource.
603
731
  - value: topic
732
+ description: Terms representing the information contained in or other relevant attributes of a resource.
604
733
  - value: west
734
+ description: A directional indicator for a point of a bounding box.
605
735
  subject.structuredValue.note:
606
736
  - value: affiliation
737
+ description: Institution with which the contributor is associated.
738
+ - value: description
739
+ description: Biographical information about the contributor.
607
740
  - value: role
608
741
  description: The relation of the subject entity to the resource.
609
742
  subject.groupedValue:
610
743
  - value: uniform
611
- description: Form of title in Library of Congress title authority.
744
+ description: Form of title in Library of Congress title authority file.
612
745
  title:
613
746
  - value: abbreviated
614
747
  description: Abbreviated form of title for indexing or identification.
@@ -624,10 +757,6 @@ title:
624
757
  description: Title transliterated from non-Latin script to Latin script.
625
758
  - value: uniform
626
759
  description: Form of title in Library of Congress title authority.
627
- - value: main
628
- status: TEMP
629
- - value: other title
630
- status: TEMP
631
760
  title.note:
632
761
  - value: associated name
633
762
  description: A name linked to the title, such as for a name-title heading.