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
@@ -1,215 +1,349 @@
1
- # Description types
2
-
3
- ## Access accesscontact types
4
- _Path: access.accessContact_
5
- * email: Email address for a contact person or institution concerning the resource.
6
- * repository: Institution providing access to the resource.
7
-
8
- ## Access digitallocation types
9
- _Path: access.digitalLocation_
10
- * discovery: Online location for the purpose of discovering the resource.
11
-
1
+ ## Access accessContact types
2
+ _Path: access.accessContact.type_
3
+ * email
4
+ * Email address for a contact person or institution concerning the resource.
5
+ * repository
6
+ * Institution providing access to the resource.
7
+ ## Access digitalLocation types
8
+ _Path: access.digitalLocation.type_
9
+ * discovery
10
+ * Online location for the purpose of discovering the resource.
12
11
  ## Access note types
13
- _Path: access.note_
14
- * access restriction: Restrictions on or conditions for gaining access to the resource.
15
- * display label: Display label for the purl.
16
- * license: License describing allowed uses of the resource.
17
- * use and reproduction: Information related to allowed uses of the resource in other contexts.
18
- * access constraints
19
-
20
- ## Access physicallocation types
21
- _Path: access.physicalLocation_
22
- * discovery: Location where a user may find the resource.
23
- * location: Physical location of the resource, or path to the resource on a hard drive or disk.
24
- * repository: The institution holding the resource.
25
- * series: Archival series of the resource.
26
- * shelf locator: Identifier or shelfmark indicating the location of the resource.
27
-
28
- ## Adminmetadata note types
29
- _Path: adminMetadata.note_
30
- * record information: General information about the metadata record.
31
- * record origin: The source of the record, such as another record transformed to generate the current record.
32
-
12
+ _Path: access.note.type_
13
+ * access restriction
14
+ * Restrictions on or conditions for gaining access to the resource.
15
+ * display label
16
+ * Display label for the purl.
17
+ * license
18
+ * License describing allowed uses of the resource.
19
+ * use and reproduction
20
+ * Information related to allowed uses of the resource in other contexts.
21
+ ## Access physicalLocation types
22
+ _Path: access.physicalLocation.type_
23
+ * discovery
24
+ * Location where a user may find the resource.
25
+ * location
26
+ * Physical location of the resource, or path to the resource on a hard drive or disk.
27
+ * repository
28
+ * The institution holding the resource.
29
+ * series
30
+ * Archival series of the resource.
31
+ * Deprecated. Preferred usage: relatedResource.title.value with relatedResource type "host" and displayLabel "Series"
32
+ * shelf locator
33
+ * Identifier or shelfmark indicating the location of the resource.
34
+ ## AdminMetadata note types
35
+ _Path: adminMetadata.note.type_
36
+ * record information
37
+ * General information about the metadata record.
38
+ * record origin
39
+ * The source of the record, such as another record transformed to generate the current record.
33
40
  # Contributor types
34
- _Path: contributor_
35
- * conference: An event focusing on a particular topic or discipline.
36
- * event: A time-bound occurrence.
37
- * family: A group of individuals related by blood or personal alliance.
38
- * organization: An institution or other corporate or collective body.
39
- * person: An individual identity.
40
- * unspecified others: Designator for one or more additional contributors not named individually.
41
-
41
+ _Path: contributor.type_
42
+ * conference
43
+ * An event focusing on a particular topic or discipline.
44
+ * event
45
+ * A time-bound occurrence.
46
+ * family
47
+ * A group of individuals related by blood or personal alliance.
48
+ * organization
49
+ * An institution or other corporate or collective body.
50
+ * person
51
+ * An individual identity.
52
+ * unspecified others
53
+ * Designator for one or more additional contributors not named individually.
42
54
  ## Contributor identifier types
43
- _Path: contributor.identifier_
44
- * ORCID: Identifier from orcid.org.
45
- * Wikidata: Identifier from wikidata.org.
46
-
55
+ _Path: contributor.identifier.type_
56
+ * ORCID
57
+ * Identifier from orcid.org.
58
+ * Wikidata
59
+ * Identifier from wikidata.org.
47
60
  ## Contributor name types
48
- _Path: contributor.name_
49
- * alternative: Additional nonpreferred form of name.
50
- * display: Preferred form of the name for display.
51
- * forename: First or given name or names.
52
- * inverted full name: Name given in last name, first name order.
53
- * pseudonym: Name used that differs from legal or primary form of name.
54
- * surname: Last or family name.
55
- * transliteration: Name originally in non-Latin script presented phonetically using Latin characters.
56
-
61
+ _Path: contributor.name.type_
62
+ * alternative
63
+ * Additional nonpreferred form of name.
64
+ * display
65
+ * Preferred form of the name for display.
66
+ * forename
67
+ * First or given name or names.
68
+ * inverted full name
69
+ * Name given in last name, first name order.
70
+ * pseudonym
71
+ * Name used that differs from legal or primary form of name.
72
+ * surname
73
+ * Last or family name or names.
74
+ * transliteration
75
+ * Name originally in non-Latin script presented phonetically using Latin characters.
57
76
  ### Contributor name part types for structured value
58
- _Path: contributor.name.structuredValue_
59
- * activity dates: The date or dates when someone was producing work.
60
- * forename: First or given name or names.
61
- * life dates: Birth and death dates, or dates when an entity was in existence.
62
- * name: Name provided alongside additional information.
63
- * ordinal: Indicator that the name is one in a series (e.g. Elizabeth I, Martin Luther King, Jr.).
64
- * surname: Last or family name.
65
- * term of address: Title or other signifier associated with name.
66
-
77
+ _Path: contributor.name.structuredValue.type_
78
+ * activity dates
79
+ * The date or dates when someone was producing work.
80
+ * forename
81
+ * First or given name or names.
82
+ * life dates
83
+ * Birth and death dates, or dates when an entity was in existence.
84
+ * name
85
+ * Name provided alongside additional information.
86
+ * ordinal
87
+ * Indicator that the name is one in a series (e.g. Elizabeth I, Martin Luther King, Jr.).
88
+ * surname
89
+ * Last or family name or names.
90
+ * term of address
91
+ * Title or other signifier associated with name.
67
92
  ### Contributor name types for grouped value (MODS legacy)
68
- _Path: contributor.name.groupedValue_
69
- * alternative: Additional nonpreferred form of name.
70
- * name: Primary form of name within group of values.
71
- * pseudonym: Name used that differs from legal or primary form of name.
72
-
93
+ _Path: contributor.name.groupedValue.type_
94
+ * alternative
95
+ * Additional nonpreferred form of name.
96
+ * name
97
+ * Primary form of name within group of values.
98
+ * pseudonym
99
+ * Name used that differs from legal or primary form of name.
73
100
  ## Contributor note types
74
- _Path: contributor.note_
75
- * affiliation: Institution with which the contributor is associated.
76
- * citation status: Indicator of whether the contributor should be included in the citation.
77
- * description: Biographical information about the contributor.
78
-
101
+ _Path: contributor.note.type_
102
+ * affiliation
103
+ * Institution with which the contributor is associated.
104
+ * citation status
105
+ * Indicator of whether the contributor should be included in the citation.
106
+ * description
107
+ * Biographical information about the contributor.
79
108
  # Event types
80
- _Path: event_
81
- * acquisition: The transferral of ownership of a resource to a repository.
82
- * capture: A record of the resource in a fixed form at a specific time.
83
- * collection: The addition of a resource to a set of other resources.
84
- * copyright: The activity by which a resource may be considered subject to copyright law.
85
- * copyright notice: An explicit statement that a resource is under copyright.
86
- * creation: The coming into being of a resource.
109
+ _Path: event.type_
110
+ * acquisition
111
+ * The transferral of ownership of a resource to a repository.
112
+ * capture
113
+ * A record of the resource in a fixed form at a specific time.
114
+ * collection
115
+ * The addition of a resource to a set of other resources.
116
+ * copyright
117
+ * The activity by which a resource may be considered subject to copyright law.
118
+ * copyright notice
119
+ * An explicit statement that a resource is under copyright.
120
+ * creation
121
+ * The coming into being of a resource.
87
122
  * deaccession
88
- * degree conferral: The institutional approval of a thesis or other resource leading to an academic degree.
123
+ * The removal of a resource from a repository.
124
+ * degree conferral
125
+ * The institutional approval of a thesis or other resource leading to an academic degree.
89
126
  * deposit
90
- * development: The creation of a print from a photographic negative or other source medium.
91
- * distribution: The delivery of the resource to an external audience.
92
- * generation: The creation of a resource by an automatic or natural process.
93
- * manufacture: The physical assembly of a resource, often in multiple copies, for publication or other distribution.
94
- * modification: A change to an existing resource.
95
- * performance: The enactment of an artistic or cultural work for an audience, such as a play.
96
- * presentation: The discussion of an academic or intellectual work for an audience, such as a seminar.
97
- * production: The physical assembly of a resource not considered published, such as page proofs for a book.
98
- * publication: The publishing or issuing of a resource.
99
- * recording: The initial fixation to a medium of live audio and/or visual activity.
100
- * release: Making a resource available to a broader audience.
101
- * submission: The provision of a resource for review or evaluation.
102
- * validity: When a resource takes effect, such as a revised train schedule.
103
- * withdrawal: The removal of previous access to a resource, often due to its obsolescence.
104
-
127
+ * The submission of a resource to a repository.
128
+ * development
129
+ * The creation of a print from a photographic negative or other source medium.
130
+ * distribution
131
+ * The delivery of the resource to an external audience.
132
+ * generation
133
+ * The creation of a resource by an automatic or natural process.
134
+ * manufacture
135
+ * The physical assembly of a resource, often in multiple copies, for publication or other distribution.
136
+ * modification
137
+ * A change to an existing resource.
138
+ * performance
139
+ * The enactment of an artistic or cultural work for an audience, such as a play.
140
+ * presentation
141
+ * The discussion of an academic or intellectual work for an audience, such as a seminar.
142
+ * production
143
+ * The physical assembly of a resource not considered published, such as page proofs for a book.
144
+ * publication
145
+ * The publishing or issuing of a resource.
146
+ * recording
147
+ * The initial fixation to a medium of live audio and/or visual activity.
148
+ * release
149
+ * Making a resource available to a broader audience.
150
+ * submission
151
+ * The provision of a resource for review or evaluation.
152
+ * validity
153
+ * When a resource takes effect, such as a revised train schedule.
154
+ * withdrawal
155
+ * The removal of previous access to a resource, often due to its obsolescence.
105
156
  ## Event date types
106
- _Path: event.date_
107
- * accompanying letter: Athanasius
108
- * acquisition: The transferral of ownership of a resource to a repository.
109
- * capture: A record of the resource in a fixed form at a specific time.
110
- * collection: The addition of a resource to a set of other resources.
111
- * composition: Athanasius
112
- * copy: Athanasius
113
- * copyright: The activity by which a resource may be considered subject to copyright law.
157
+ _Path: event.date.type_
158
+ * accompanying letter
159
+ * Used in Athanasius Kircher project.
160
+ * Deprecated.
161
+ * acquisition
162
+ * The transferral of ownership of a resource to a repository.
163
+ * capture
164
+ * A record of the resource in a fixed form at a specific time.
165
+ * collection
166
+ * The addition of a resource to a set of other resources.
167
+ * composition
168
+ * Used in Athanasius Kircher project.
169
+ * Deprecated.
170
+ * copy
171
+ * Used in Athanasius Kircher project.
172
+ * Deprecated.
173
+ * copyright
174
+ * The activity by which a resource may be considered subject to copyright law.
114
175
  * coverage
115
- * creation: The coming into being of a resource.
176
+ * creation
177
+ * The coming into being of a resource.
116
178
  * deaccession
117
- * degree conferral: The institutional approval of a thesis or other resource leading to an academic degree.
179
+ * The removal of a resource from a repository.
180
+ * degree conferral
181
+ * The institutional approval of a thesis or other resource leading to an academic degree.
118
182
  * deposit
119
- * developed: The creation of a print from a photographic negative or other source medium.
120
- * development: The creation of a print from a photographic negative or other source medium.
121
- * distribution: The delivery of the resource to an external audience.
122
- * generation: The creation of a resource by an automatic or natural process.
183
+ * The submission of a resource to a repository.
184
+ * developed
185
+ * The creation of a print from a photographic negative or other source medium.
186
+ * Deprecated. Preferred usage: development
187
+ * development
188
+ * The creation of a print from a photographic negative or other source medium.
189
+ * distribution
190
+ * The delivery of the resource to an external audience.
191
+ * generation
192
+ * The creation of a resource by an automatic or natural process.
193
+ * Gregorian
194
+ * Deprecated. Preferred usage: event.date.note.value with type "calendar"
195
+ * Hebrew
196
+ * Deprecated. Preferred usage: event.date.note.value with type "calendar"
123
197
  * Hijri calendar
198
+ * Deprecated. Preferred usage: event.date.note.value with type "calendar"
124
199
  * Islamic
200
+ * Deprecated. Preferred usage: event.date.note.value with type "calendar"
125
201
  * Julian
126
- * letter: Athanasius
127
- * letter referred to: Athanasius
128
- * manufacture: The physical assembly of a resource, often in multiple copies, for publication or other distribution.
129
- * manuscript: Athanasius
130
- * manuscript referred to: Athanasius
131
- * modification: A change to an existing resource.
132
- * new document: Athanasius
133
- * new style letter: Athanasius
134
- * observation: Athanasius
135
- * old style letter: Athanasius
136
- * original sent: Athanasius
137
- * performance: The enactment of an artistic or cultural work for an audience, such as a play.
138
- * presentation: The discussion of an academic or intellectual work for an audience, such as a seminar.
139
- * proclamation: Athanasius
140
- * production: The physical assembly of a resource not considered published, such as page proofs for a book.
141
- * publication: The publishing or issuing of a resource.
142
- * quoted: Athanasius
143
- * recording: The initial fixation to a medium of live audio and/or visual activity.
144
- * release: Making a resource available to a broader audience.
202
+ * Deprecated. Preferred usage: event.date.note.value with type "calendar"
203
+ * letter
204
+ * Used in Athanasius Kircher project.
205
+ * Deprecated.
206
+ * letter referred to
207
+ * Used in Athanasius Kircher project.
208
+ * Deprecated.
209
+ * manufacture
210
+ * The physical assembly of a resource, often in multiple copies, for publication or other distribution.
211
+ * manuscript
212
+ * Used in Athanasius Kircher project.
213
+ * Deprecated.
214
+ * manuscript referred to
215
+ * Used in Athanasius Kircher project.
216
+ * Deprecated.
217
+ * modification
218
+ * A change to an existing resource.
219
+ * new document
220
+ * Used in Athanasius Kircher project.
221
+ * Deprecated.
222
+ * new style letter
223
+ * Used in Athanasius Kircher project.
224
+ * Deprecated.
225
+ * observation
226
+ * Used in Athanasius Kircher project.
227
+ * Deprecated.
228
+ * old style letter
229
+ * Used in Athanasius Kircher project.
230
+ * Deprecated.
231
+ * original sent
232
+ * Used in Athanasius Kircher project.
233
+ * Deprecated.
234
+ * performance
235
+ * The enactment of an artistic or cultural work for an audience, such as a play.
236
+ * presentation
237
+ * The discussion of an academic or intellectual work for an audience, such as a seminar.
238
+ * proclamation
239
+ * Used in Athanasius Kircher project.
240
+ * Deprecated.
241
+ * production
242
+ * The physical assembly of a resource not considered published, such as page proofs for a book.
243
+ * publication
244
+ * The publishing or issuing of a resource.
245
+ * quoted
246
+ * Used in Athanasius Kircher project.
247
+ * Deprecated.
248
+ * recording
249
+ * The initial fixation to a medium of live audio and/or visual activity.
250
+ * release
251
+ * Making a resource available to a broader audience.
145
252
  * Revolutionary calendar
146
- * submission: The provision of a resource for review or evaluation.
147
- * validity: When a resource takes effect, such as a revised train schedule.
148
- * withdrawal: The removal of previous access to a resource, often due to its obsolescence.
149
-
253
+ * Deprecated. Preferred usage: event.date.note.value with type "calendar"
254
+ * submission
255
+ * The provision of a resource for review or evaluation.
256
+ * validity
257
+ * When a resource takes effect, such as a revised train schedule.
258
+ * withdrawal
259
+ * The removal of previous access to a resource, often due to its obsolescence.
150
260
  ### Event date note types
151
- _Path: event.date.note_
261
+ _Path: event.date.note.type_
152
262
  * calendar
153
-
263
+ * The calendar system used for a date.
154
264
  ### Event date part types for structured value
155
- _Path: event.date.structuredValue_
156
- * start: The start date in a range.
157
- * end: The end date in a range.
158
-
265
+ _Path: event.date.structuredValue.type_
266
+ * start
267
+ * The start date in a range.
268
+ * end
269
+ * The end date in a range.
159
270
  ## Event note types
160
- _Path: event.note_
161
- * copyright statement: A formal declaration of copyright on a resource.
271
+ _Path: event.note.type_
272
+ * copyright statement
273
+ * A formal declaration of copyright on a resource.
162
274
  * edition
163
- * frequency: How often a resource is issued, such as monthly.
164
- * issuance: How the resource is issued, such as serially.
165
-
275
+ * A published version of a resource issued at one time.
276
+ * frequency
277
+ * How often a resource is issued, such as monthly.
278
+ * issuance
279
+ * How the resource is issued, such as serially.
166
280
  # Form types
167
- _Path: form_
281
+ _Path: form.type_
168
282
  * carrier
283
+ * Format of the resource's storage medium.
169
284
  * data format
285
+ * The structure of a dataset.
170
286
  * digital origin
287
+ * The relationship of a digitized resource to a previous format.
171
288
  * extent
289
+ * The size or dimensions of the resource.
172
290
  * form
291
+ * A description of the materiality of the resource.
173
292
  * genre
293
+ * The intellectual category of a resource based on style, form, content, etc.
174
294
  * map projection
295
+ * The method used to represent the curvature of a planet on a flat plane.
175
296
  * map scale
297
+ * The size ratio of the map image to the depicted area.
176
298
  * material
299
+ * The physical components constituting the resource.
177
300
  * media
301
+ * The technology required to mediate interactions with a resource.
178
302
  * media type
179
303
  * reformatting quality
304
+ * The use for which the reproduction quality of the resource was intended (e.g. access, preservation).
180
305
  * resource type
306
+ * The general format category of the resource.
181
307
  * technique
308
+ * The method used to create the resource.
182
309
  * type
183
-
184
310
  ## Form part types for structured value
185
- _Path: form.structuredValue_
311
+ _Path: form.structuredValue.type_
186
312
  * type
313
+ * Used for H2 deposits.
187
314
  * subtype
188
-
315
+ * Used for H2 deposits.
189
316
  ## Geographic form types
190
- _Path: geographic.form_
317
+ _Path: geographic.form.type_
191
318
  * data format
192
319
  * media type
193
320
  * type
194
-
195
321
  ## Geographic subject types
196
- _Path: geographic.subject_
322
+ _Path: geographic.subject.type_
197
323
  * bounding box coordinates
324
+ * A series of coordinates forming the boundaries of the depicted area.
198
325
  * coverage
326
+ * The name of the area the resource depicts.
199
327
  * point coordinates
200
-
328
+ * A pair of coordinates showing the latitude and longitude of the depicted area.
201
329
  ### Geographic subject part types for structured value
202
- _Path: geographic.subject.structuredValue_
330
+ _Path: geographic.subject.structuredValue.type_
203
331
  * east
332
+ * A directional indicator for a point of a bounding box.
204
333
  * latitude
334
+ * The angular distance of a place north or south from the equator.
205
335
  * longitude
336
+ * The angular distance of a place east or west from the standard meridian.
206
337
  * north
338
+ * A directional indicator for a point of a bounding box.
207
339
  * south
340
+ * A directional indicator for a point of a bounding box.
208
341
  * west
209
-
342
+ * A directional indicator for a point of a bounding box.
210
343
  # Identifier types
211
- _Path: identifier_
344
+ _Path: identifier.type_
212
345
  * accession
346
+ * Deprecated. Preferred usage: accession number
213
347
  * accession number
214
348
  * alternate case number
215
349
  * anchor
@@ -252,6 +386,7 @@ _Path: identifier_
252
386
  * SIRSI
253
387
  * Source ID
254
388
  * sourceID
389
+ * Deprecated. Preferred usage: Source ID
255
390
  * stock number
256
391
  * SUL catalog key
257
392
  * Swets (Netherlands) ID
@@ -259,70 +394,100 @@ _Path: identifier_
259
394
  * URI
260
395
  * URN
261
396
  * videorecording identifier
262
- * West Mat \#
397
+ * West Mat #
263
398
  * Wikidata
264
- * Bodley 342
265
- * vintage
266
- * accesion
267
- * Suri UUID
268
-
269
399
  # Note types
270
- _Path: note_
400
+ _Path: note.type_
271
401
  * abstract
402
+ * A short overview of a research article or other work.
272
403
  * access
404
+ * Information about gaining access to a resource.
273
405
  * access note
406
+ * Deprecated. Preferred usage: access
274
407
  * acquisition
408
+ * The transfer of a resource to a repository.
275
409
  * action
276
410
  * additional physical form
411
+ * Other formats of the resource.
277
412
  * additions
413
+ * Resources added after initial acquisition.
278
414
  * admin
415
+ * Administrative or internal use.
279
416
  * affiliation
417
+ * Institution with which a person or other entity is associated.
280
418
  * arrangement
419
+ * The organization of an archival or other collection.
281
420
  * bibliographic
282
421
  * bibliography
422
+ * Other resources with additional information about the resource.
283
423
  * binding
284
424
  * biographical/historical
425
+ * Background on a person, organization, or other entity strongly associated with the resource.
285
426
  * biographical/historical note
427
+ * Deprecated. Preferred usage: biographical/historical
286
428
  * biography
429
+ * Background on a person strongly associated with the resource.
287
430
  * boat note
288
431
  * citation/reference
432
+ * Other resources that cite this resource.
289
433
  * codicology
290
434
  * collation
291
435
  * colophon
292
436
  * condition
437
+ * Physical wear on an object.
293
438
  * contact
439
+ * Contact information for someone responsible for the resource.
294
440
  * content
441
+ * The information the resource contains.
295
442
  * content note
443
+ * Deprecated. Preferred usage: content
296
444
  * content warning
445
+ * Cautionary information about offensive or triggering resource content.
297
446
  * contents
447
+ * Deprecated. Preferred usage: content
298
448
  * copyright
449
+ * A creator's legal ownership of a resource's content.
299
450
  * creation/production credits
451
+ * Cast and crew associated with the production of a resource.
300
452
  * date
453
+ * Information about a date or dates associated with the resource.
301
454
  * date/sequential designation
302
455
  * decoNote
456
+ * Deprecated. Preferred usage: decoration
303
457
  * decoration
304
458
  * description
459
+ * Information describing the resource.
305
460
  * digitization
461
+ * The process of creating a digital representation of a physical object.
306
462
  * dimensions
463
+ * The size of an object in terms of area or volume.
307
464
  * duration
465
+ * The length of a time-based resource.
308
466
  * email
467
+ * An email address related to the resource.
309
468
  * event
469
+ * A time-bound occurrence associated with a resource.
310
470
  * exhibitions
471
+ * Public displays of the resource as part of an exhibit.
311
472
  * explicit
312
473
  * foliation
313
474
  * funding
475
+ * Financial support for producing, acquiring, or otherwise processing the resource.
314
476
  * general
315
477
  * genre type
316
478
  * geography
317
479
  * hand note
318
480
  * handNote
481
+ * Deprecated. Preferred usage: hand note
319
482
  * handwritten
320
483
  * host
321
484
  * incipit
322
485
  * instrumentation
486
+ * Musical instruments involved in the performance of a resource.
323
487
  * language
324
488
  * layout
325
489
  * local
490
+ * A note with local application.
326
491
  * location
327
492
  * material
328
493
  * medium of performance
@@ -336,11 +501,15 @@ _Path: note_
336
501
  * performer
337
502
  * performers
338
503
  * preferred citation
504
+ * The preferred form for citing a resource.
339
505
  * provenance
506
+ * The resource's origins and history.
340
507
  * publications
508
+ * Other published works related to the resource.
341
509
  * qualifications
342
510
  * quote
343
511
  * reassembly
512
+ * The return of an object to a whole after being separated into parts.
344
513
  * reference
345
514
  * references
346
515
  * reformatting
@@ -351,11 +520,14 @@ _Path: note_
351
520
  * rubric
352
521
  * scope and content
353
522
  * secfol
523
+ * Deprecated. Preferred usage: second folio
354
524
  * second folio
355
525
  * secondFolio
526
+ * Deprecated. Preferred usage: second folio
356
527
  * source characteristics
357
528
  * source identifier
358
529
  * statement of responsibility
530
+ * The contributors to a work as transcribed from a title page.
359
531
  * summary
360
532
  * system details
361
533
  * system requirements
@@ -369,13 +541,12 @@ _Path: note_
369
541
  * update
370
542
  * use and reproduction
371
543
  * venue
544
+ * The location of a public performance or other event.
372
545
  * version
373
546
  * version identification
374
547
  * writing
375
- * note
376
-
377
548
  ## Note types for grouped value (MODS legacy)
378
- _Path: note.groupedValue_
549
+ _Path: note.groupedValue.type_
379
550
  * caption
380
551
  * date
381
552
  * detail type
@@ -385,125 +556,207 @@ _Path: note.groupedValue_
385
556
  * number
386
557
  * title
387
558
  * text
388
-
389
- # Relatedresource types
390
- _Path: relatedResource_
391
- * has original version: An initial form of the resource.
392
- * has other format: A version of the resource in a different physical or digital format.
393
- * has part: A constituent unit of the resource.
394
- * has version: A version of the resource with different intellectual content.
395
- * in series: The name of a series of publications to which the resource belongs.
396
- * other relation type: Resource type not otherwise described.
397
- * part of: A larger resource to which the resource belongs, such as a collection.
398
- * preceded by: A predecessor to the resource, such as a preceding journal title.
399
- * referenced by: Other resources that cite the resource, such as a catalog.
400
- * references: A resource which the resource references or cites.
401
- * related to: A generically related resource.
402
- * reviewed by: A review of the resource.
403
- * succeeded by: A successor to the resource, such as a subsequent journal title.
404
-
559
+ # RelatedResource types
560
+ _Path: relatedResource.type_
561
+ * has original version
562
+ * An initial form of the resource.
563
+ * has other format
564
+ * A version of the resource in a different physical or digital format.
565
+ * has part
566
+ * A constituent unit of the resource.
567
+ * has version
568
+ * A version of the resource with different intellectual content.
569
+ * in series
570
+ * The name of a series of publications to which the resource belongs.
571
+ * other relation type
572
+ * Resource type not otherwise described.
573
+ * part of
574
+ * A larger resource to which the resource belongs, such as a collection.
575
+ * preceded by
576
+ * A predecessor to the resource, such as a preceding journal title.
577
+ * referenced by
578
+ * Other resources that cite the resource, such as a catalog.
579
+ * references
580
+ * A resource which the resource references or cites.
581
+ * related to
582
+ * A generically related resource.
583
+ * reviewed by
584
+ * A review of the resource.
585
+ * succeeded by
586
+ * A successor to the resource, such as a subsequent journal title.
405
587
  # Subject types
406
- _Path: subject_
588
+ _Path: subject.type_
407
589
  * classification
590
+ * A coded reference to the main subjects of the resource according to a larger system.
408
591
  * conference
592
+ * An event focusing on a particular topic or discipline.
409
593
  * display
594
+ * Preferred form of the value for display.
410
595
  * event
596
+ * A time-bound occurrence.
411
597
  * family
598
+ * A group of individuals related by blood or personal alliance.
412
599
  * genre
600
+ * The intellectual category of a resource based on style, form, content, etc.
413
601
  * map coordinates
602
+ * Bounding box or point coordinates describing the area represented by a map or other geographic resource.
414
603
  * name
604
+ * The name of an entity whose type is not known.
415
605
  * occupation
606
+ * A profession or job category associated with the content of a resource.
416
607
  * organization
608
+ * An institution or other corporate or collective body.
417
609
  * person
610
+ * An individual identity.
418
611
  * place
612
+ * A geographic location associated with the content of a resource.
419
613
  * point coordinates
614
+ * The latitude and longitude of a place associated with the content of a resource.
420
615
  * time
616
+ * The temporal period associated with the content of a resource.
421
617
  * title
618
+ * A work that is the subject of the resource.
422
619
  * topic
423
- * surname
424
-
620
+ * Terms representing the information contained in or other relevant attributes of a resource.
425
621
  ## Subject note types
426
- _Path: subject.note_
622
+ _Path: subject.note.type_
427
623
  * affiliation
624
+ * Institution with which the contributor is associated.
428
625
  * description
626
+ * Biographical information about the contributor.
429
627
  * role
430
-
628
+ * The relation of the subject entity to the resource.
431
629
  ## Subject part types for structured value
432
- _Path: subject.structuredValue_
630
+ _Path: subject.structuredValue.type_
433
631
  * activity dates
632
+ * The date or dates when someone was producing work.
434
633
  * area
634
+ * A non-jurisdictional geographic entity.
435
635
  * city
636
+ * An inhabited place incorporated as a city or equivalent.
436
637
  * city section
638
+ * A smaller unit within a populated place, such as a neighborhood.
437
639
  * conference
640
+ * An event focusing on a particular topic or discipline.
438
641
  * continent
642
+ * Large land mass or portion of land mass considered to be a continent.
439
643
  * country
644
+ * A political entity considered to be a country.
440
645
  * county
441
- * end
646
+ * A political division of a state or the largest local administrative unit.
647
+ * display
648
+ * Preferred form of the value for display.
442
649
  * east
650
+ * A directional indicator for a point of a bounding box.
651
+ * end
652
+ * The end date in a range.
443
653
  * event
654
+ * A time-bound occurrence.
444
655
  * extraterrestrial area
445
- * display
656
+ * An entity, space, or feature not on Earth.
446
657
  * family
658
+ * A group of individuals related by blood or personal alliance.
447
659
  * forename
660
+ * First or given name or names.
448
661
  * genre
662
+ * The intellectual category of a resource based on style, form, content, etc.
449
663
  * island
664
+ * A tract of land surrounded by water but not itself a separate continent or country.
450
665
  * latitude
666
+ * The angular distance of a place north or south from the equator.
451
667
  * life dates
668
+ * Birth and death dates, or dates when an entity was in existence.
452
669
  * longitude
670
+ * The angular distance of a place east or west from the standard meridian.
453
671
  * main title
672
+ * Title provided alongside additional information.
454
673
  * name
674
+ * Name provided alongside additional information.
455
675
  * nonsorting characters
676
+ * A string at the beginning of the title to be disregarded when sorting.
456
677
  * north
678
+ * A directional indicator for a point of a bounding box.
457
679
  * occupation
680
+ * A profession or job category associated with the content of a resource.
458
681
  * ordinal
682
+ * Indicator that the name is one in a series (e.g. Elizabeth I, Martin Luther King, Jr.).
459
683
  * organization
684
+ * An institution or other corporate or collective body.
460
685
  * part name
686
+ * The distinct name of a resource as part of a series or multivolume set.
461
687
  * part number
688
+ * The distinct number of a resource as part of a series or multivolume set.
462
689
  * person
690
+ * An individual identity.
463
691
  * place
692
+ * A geographic location associated with the content of a resource.
464
693
  * region
694
+ * An area that incorporates more than one first-order jurisdiction.
465
695
  * south
696
+ * A directional indicator for a point of a bounding box.
466
697
  * start
698
+ * The start date in a range.
467
699
  * state
700
+ * A first-order political jurisdiction under country, including provinces, cantons, etc.
468
701
  * subtitle
702
+ * The secondary part of a title.
469
703
  * surname
704
+ * Last or family name or names.
470
705
  * term of address
706
+ * Title or other signifier associated with name.
471
707
  * territory
708
+ * A geographical area belonging to or under the jurisdiction of a governmental authority.
472
709
  * time
710
+ * The temporal period associated with the content of a resource.
473
711
  * title
712
+ * A work that is the subject of the resource.
474
713
  * topic
714
+ * Terms representing the information contained in or other relevant attributes of a resource.
475
715
  * west
476
-
716
+ * A directional indicator for a point of a bounding box.
477
717
  ### Subject note types
478
- _Path: subject.structuredValue.note_
718
+ _Path: subject.structuredValue.note.type_
479
719
  * affiliation
480
- * role: The relation of the subject entity to the resource.
481
-
720
+ * Institution with which the contributor is associated.
721
+ * description
722
+ * Biographical information about the contributor.
723
+ * role
724
+ * The relation of the subject entity to the resource.
482
725
  ## Subject types for grouped value (MODS legacy)
483
- _Path: subject.groupedValue_
484
- * uniform: Form of title in Library of Congress title authority.
485
-
726
+ _Path: subject.groupedValue.type_
727
+ * uniform
728
+ * Form of title in Library of Congress title authority file.
486
729
  # Title types
487
- _Path: title_
488
- * abbreviated: Abbreviated form of title for indexing or identification.
489
- * alternative: Variant title.
490
- * parallel: Title transcribed from the resource in multiple languages or scripts.
491
- * supplied: Title provided by metadata creator rather than transcribed from the resource.
492
- * translated: Title translated into another language.
493
- * transliterated: Title transliterated from non-Latin script to Latin script.
494
- * uniform: Form of title in Library of Congress title authority.
495
- * main
496
- * other title
497
-
730
+ _Path: title.type_
731
+ * abbreviated
732
+ * Abbreviated form of title for indexing or identification.
733
+ * alternative
734
+ * Variant title.
735
+ * parallel
736
+ * Title transcribed from the resource in multiple languages or scripts.
737
+ * supplied
738
+ * Title provided by metadata creator rather than transcribed from the resource.
739
+ * translated
740
+ * Title translated into another language.
741
+ * transliterated
742
+ * Title transliterated from non-Latin script to Latin script.
743
+ * uniform
744
+ * Form of title in Library of Congress title authority.
498
745
  ## Title note types
499
- _Path: title.note_
500
- * associated name: A name linked to the title, such as for a name-title heading.
501
- * nonsorting character count: The number of characters at the beginning of the string to be disregarded when sorting.
502
-
746
+ _Path: title.note.type_
747
+ * associated name
748
+ * A name linked to the title, such as for a name-title heading.
749
+ * nonsorting character count
750
+ * The number of characters at the beginning of the string to be disregarded when sorting.
503
751
  ## Title part types for structured value
504
- _Path: title.structuredValue_
505
- * main title: The primary part of a multipart title.
506
- * nonsorting characters: A string at the beginning of the title to be disregarded when sorting.
507
- * part name: The distinct name of a resource as part of a series or multivolume set.
508
- * part number: The distinct number of a resource as part of a series or multivolume set.
509
- * subtitle: The secondary part of a title.
752
+ _Path: title.structuredValue.type_
753
+ * main title
754
+ * The primary part of a multipart title.
755
+ * nonsorting characters
756
+ * A string at the beginning of the title to be disregarded when sorting.
757
+ * part name
758
+ * The distinct name of a resource as part of a series or multivolume set.
759
+ * part number
760
+ * The distinct number of a resource as part of a series or multivolume set.
761
+ * subtitle
762
+ * The secondary part of a title.