cocina-models 0.75.0 → 0.76.0

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