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