cocina-models 0.74.1 → 0.77.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/.rubocop.yml +40 -11
- data/.rubocop_todo.yml +71 -2
- data/README.md +19 -3
- data/cocina-models.gemspec +2 -0
- data/description_types.yml +168 -39
- data/docs/description_types.md +471 -216
- data/lib/cocina/generator/generator.rb +7 -15
- data/lib/cocina/generator/schema.rb +1 -3
- data/lib/cocina/generator/schema_base.rb +0 -8
- data/lib/cocina/generator/schema_ref.rb +1 -1
- data/lib/cocina/generator/schema_value.rb +14 -4
- data/lib/cocina/models/access.rb +4 -4
- data/lib/cocina/models/admin_policy.rb +1 -1
- data/lib/cocina/models/admin_policy_access_template.rb +7 -7
- data/lib/cocina/models/admin_policy_administrative.rb +1 -1
- data/lib/cocina/models/admin_policy_with_metadata.rb +3 -3
- data/lib/cocina/models/builders/dro_rights_description_builder.rb +69 -0
- data/lib/cocina/models/builders/name_title_group_builder.rb +130 -0
- data/lib/cocina/models/builders/rights_description_builder.rb +83 -0
- data/lib/cocina/models/builders/title_builder.rb +211 -0
- data/lib/cocina/models/citation_only_access.rb +2 -2
- data/lib/cocina/models/collection_access.rb +4 -4
- data/lib/cocina/models/collection_identification.rb +1 -1
- data/lib/cocina/models/collection_with_metadata.rb +2 -2
- data/lib/cocina/models/contributor.rb +4 -4
- data/lib/cocina/models/controlled_digital_lending_access.rb +2 -2
- data/lib/cocina/models/dark_access.rb +4 -4
- data/lib/cocina/models/description.rb +3 -3
- data/lib/cocina/models/descriptive_basic_value.rb +13 -13
- data/lib/cocina/models/descriptive_parallel_contributor.rb +5 -5
- data/lib/cocina/models/descriptive_parallel_event.rb +3 -3
- data/lib/cocina/models/descriptive_value.rb +13 -13
- data/lib/cocina/models/descriptive_value_language.rb +6 -6
- data/lib/cocina/models/dro.rb +1 -1
- data/lib/cocina/models/dro_access.rb +8 -8
- data/lib/cocina/models/dro_with_metadata.rb +3 -3
- data/lib/cocina/models/embargo.rb +5 -5
- data/lib/cocina/models/event.rb +3 -3
- data/lib/cocina/models/file.rb +4 -4
- data/lib/cocina/models/file_access.rb +4 -4
- data/lib/cocina/models/identification.rb +2 -2
- data/lib/cocina/models/language.rb +12 -12
- data/lib/cocina/models/location_based_access.rb +1 -1
- data/lib/cocina/models/location_based_download_access.rb +1 -1
- data/lib/cocina/models/mapping/error_notifier.rb +36 -0
- data/lib/cocina/models/mapping/from_mods/access.rb +177 -0
- data/lib/cocina/models/mapping/from_mods/admin_metadata.rb +217 -0
- data/lib/cocina/models/mapping/from_mods/alt_rep_group.rb +26 -0
- data/lib/cocina/models/mapping/from_mods/authority.rb +51 -0
- data/lib/cocina/models/mapping/from_mods/contributor.rb +161 -0
- data/lib/cocina/models/mapping/from_mods/description.rb +98 -0
- data/lib/cocina/models/mapping/from_mods/description_builder.rb +61 -0
- data/lib/cocina/models/mapping/from_mods/event.rb +543 -0
- data/lib/cocina/models/mapping/from_mods/form.rb +381 -0
- data/lib/cocina/models/mapping/from_mods/geographic.rb +219 -0
- data/lib/cocina/models/mapping/from_mods/hydrus_default_title_builder.rb +28 -0
- data/lib/cocina/models/mapping/from_mods/identifier.rb +51 -0
- data/lib/cocina/models/mapping/from_mods/identifier_builder.rb +71 -0
- data/lib/cocina/models/mapping/from_mods/identifier_type.rb +292 -0
- data/lib/cocina/models/mapping/from_mods/language.rb +36 -0
- data/lib/cocina/models/mapping/from_mods/language_script.rb +30 -0
- data/lib/cocina/models/mapping/from_mods/language_term.rb +106 -0
- data/lib/cocina/models/mapping/from_mods/name_builder.rb +307 -0
- data/lib/cocina/models/mapping/from_mods/note.rb +162 -0
- data/lib/cocina/models/mapping/from_mods/part_builder.rb +147 -0
- data/lib/cocina/models/mapping/from_mods/primary.rb +27 -0
- data/lib/cocina/models/mapping/from_mods/purl.rb +53 -0
- data/lib/cocina/models/mapping/from_mods/related_resource.rb +105 -0
- data/lib/cocina/models/mapping/from_mods/subject.rb +413 -0
- data/lib/cocina/models/mapping/from_mods/subject_authority_codes.rb +794 -0
- data/lib/cocina/models/mapping/from_mods/title.rb +160 -0
- data/lib/cocina/models/mapping/from_mods/title_builder.rb +106 -0
- data/lib/cocina/models/mapping/from_mods/title_builder_strategy.rb +19 -0
- data/lib/cocina/models/mapping/from_mods/value_uri.rb +25 -0
- data/lib/cocina/models/mapping/normalizers/base.rb +16 -0
- data/lib/cocina/models/mapping/normalizers/mods/geo_extension_normalizer.rb +69 -0
- data/lib/cocina/models/mapping/normalizers/mods/name_normalizer.rb +191 -0
- data/lib/cocina/models/mapping/normalizers/mods/origin_info_normalizer.rb +157 -0
- data/lib/cocina/models/mapping/normalizers/mods/subject_normalizer.rb +296 -0
- data/lib/cocina/models/mapping/normalizers/mods/title_normalizer.rb +91 -0
- data/lib/cocina/models/mapping/normalizers/mods_normalizer.rb +409 -0
- data/lib/cocina/models/mapping/purl.rb +27 -0
- data/lib/cocina/models/mapping/to_mods/access.rb +155 -0
- data/lib/cocina/models/mapping/to_mods/admin_metadata.rb +129 -0
- data/lib/cocina/models/mapping/to_mods/contributor.rb +49 -0
- data/lib/cocina/models/mapping/to_mods/description.rb +63 -0
- data/lib/cocina/models/mapping/to_mods/event.rb +200 -0
- data/lib/cocina/models/mapping/to_mods/form.rb +292 -0
- data/lib/cocina/models/mapping/to_mods/geographic.rb +151 -0
- data/lib/cocina/models/mapping/to_mods/id_generator.rb +25 -0
- data/lib/cocina/models/mapping/to_mods/identifier.rb +57 -0
- data/lib/cocina/models/mapping/to_mods/language.rb +82 -0
- data/lib/cocina/models/mapping/to_mods/mods_writer.rb +38 -0
- data/lib/cocina/models/mapping/to_mods/name_title_group.rb +29 -0
- data/lib/cocina/models/mapping/to_mods/name_writer.rb +228 -0
- data/lib/cocina/models/mapping/to_mods/note.rb +105 -0
- data/lib/cocina/models/mapping/to_mods/part_writer.rb +115 -0
- data/lib/cocina/models/mapping/to_mods/related_resource.rb +108 -0
- data/lib/cocina/models/mapping/to_mods/role_writer.rb +50 -0
- data/lib/cocina/models/mapping/to_mods/subject.rb +486 -0
- data/lib/cocina/models/mapping/to_mods/title.rb +260 -0
- data/lib/cocina/models/object_metadata.rb +2 -2
- data/lib/cocina/models/presentation.rb +2 -2
- data/lib/cocina/models/related_resource.rb +9 -9
- data/lib/cocina/models/release_tag.rb +4 -4
- data/lib/cocina/models/request_admin_policy.rb +1 -1
- data/lib/cocina/models/request_administrative.rb +1 -1
- data/lib/cocina/models/request_collection.rb +2 -2
- data/lib/cocina/models/request_description.rb +3 -3
- data/lib/cocina/models/request_dro.rb +4 -4
- data/lib/cocina/models/request_file.rb +5 -5
- data/lib/cocina/models/request_identification.rb +1 -1
- data/lib/cocina/models/sequence.rb +1 -1
- data/lib/cocina/models/source.rb +4 -4
- data/lib/cocina/models/standard.rb +5 -5
- data/lib/cocina/models/stanford_access.rb +2 -2
- data/lib/cocina/models/title.rb +13 -13
- data/lib/cocina/models/validators/associated_name_validator.rb +77 -0
- data/lib/cocina/models/validators/dark_validator.rb +4 -2
- data/lib/cocina/models/validators/open_api_validator.rb +0 -4
- data/lib/cocina/models/validators/validator.rb +1 -0
- data/lib/cocina/models/version.rb +1 -1
- data/lib/cocina/models/world_access.rb +2 -2
- data/lib/cocina/models.rb +4 -0
- data/lib/cocina/rspec/factories.rb +205 -0
- data/lib/cocina/rspec.rb +2 -0
- data/openapi.yml +4 -4
- metadata +97 -24
- data/docs/_config.yml +0 -1
- data/docs/maps/Agent.json +0 -18
- data/docs/maps/Collection.json +0 -240
- data/docs/maps/DRO.json +0 -316
- data/docs/maps/Description.json +0 -17
- data/docs/maps/File.json +0 -196
- data/docs/maps/Fileset.json +0 -143
- data/docs/maps/README.md +0 -7
- data/docs/maps/ReleaseTag.json +0 -39
- data/docs/maps/Sequence.json +0 -46
- data/docs/maps/Title.json +0 -18
- data/docs/sampleETD/foxml-export.xml +0 -935
- data/docs/sampleETD/foxml.xml +0 -3475
- data/docs/sampleETD/xn109qc9773_bibframe.ttl +0 -95
- data/docs/sampleETD/xn109qc9773_taco.json +0 -158
- data/lib/cocina/models/dro_rights_description_builder.rb +0 -67
- data/lib/cocina/models/rights_description_builder.rb +0 -81
- data/lib/cocina/models/title_builder.rb +0 -208
data/docs/description_types.md
CHANGED
@@ -1,215 +1,351 @@
|
|
1
|
-
|
2
|
-
|
3
|
-
|
4
|
-
|
5
|
-
*
|
6
|
-
|
7
|
-
|
8
|
-
|
9
|
-
|
10
|
-
|
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.
|
14
|
-
* access restriction
|
15
|
-
|
16
|
-
*
|
17
|
-
|
18
|
-
*
|
19
|
-
|
20
|
-
|
21
|
-
|
22
|
-
|
23
|
-
|
24
|
-
*
|
25
|
-
|
26
|
-
*
|
27
|
-
|
28
|
-
|
29
|
-
|
30
|
-
*
|
31
|
-
|
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:
|
35
|
-
* conference
|
36
|
-
|
37
|
-
*
|
38
|
-
|
39
|
-
*
|
40
|
-
|
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.
|
44
|
-
* ORCID
|
45
|
-
|
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.
|
49
|
-
* alternative
|
50
|
-
|
51
|
-
*
|
52
|
-
|
53
|
-
*
|
54
|
-
|
55
|
-
*
|
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.
|
59
|
-
* activity dates
|
60
|
-
|
61
|
-
*
|
62
|
-
|
63
|
-
*
|
64
|
-
|
65
|
-
*
|
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.
|
69
|
-
* alternative
|
70
|
-
|
71
|
-
*
|
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.
|
75
|
-
* affiliation
|
76
|
-
|
77
|
-
*
|
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:
|
81
|
-
* acquisition
|
82
|
-
|
83
|
-
*
|
84
|
-
|
85
|
-
*
|
86
|
-
|
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
|
-
|
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
|
-
|
91
|
-
*
|
92
|
-
|
93
|
-
*
|
94
|
-
|
95
|
-
*
|
96
|
-
|
97
|
-
*
|
98
|
-
|
99
|
-
*
|
100
|
-
|
101
|
-
*
|
102
|
-
|
103
|
-
*
|
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.
|
107
|
-
* accompanying letter
|
108
|
-
|
109
|
-
|
110
|
-
*
|
111
|
-
|
112
|
-
*
|
113
|
-
|
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
|
178
|
+
* creation
|
179
|
+
* The coming into being of a resource.
|
116
180
|
* deaccession
|
117
|
-
|
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
|
-
|
120
|
-
*
|
121
|
-
|
122
|
-
|
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
|
-
|
127
|
-
* letter
|
128
|
-
|
129
|
-
|
130
|
-
*
|
131
|
-
|
132
|
-
|
133
|
-
*
|
134
|
-
|
135
|
-
*
|
136
|
-
|
137
|
-
|
138
|
-
*
|
139
|
-
|
140
|
-
|
141
|
-
*
|
142
|
-
|
143
|
-
*
|
144
|
-
|
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
|
-
|
147
|
-
*
|
148
|
-
|
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.
|
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.
|
156
|
-
* start
|
157
|
-
|
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.
|
161
|
-
* copyright statement
|
273
|
+
_Path: event.note.type_
|
274
|
+
* copyright statement
|
275
|
+
* A formal declaration of copyright on a resource.
|
162
276
|
* edition
|
163
|
-
|
164
|
-
*
|
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:
|
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.
|
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.
|
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.
|
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.
|
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:
|
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:
|
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.
|
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
|
-
|
390
|
-
|
391
|
-
|
392
|
-
* has other format
|
393
|
-
|
394
|
-
* has
|
395
|
-
|
396
|
-
*
|
397
|
-
|
398
|
-
*
|
399
|
-
|
400
|
-
*
|
401
|
-
|
402
|
-
*
|
403
|
-
|
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:
|
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
|
-
|
424
|
-
|
622
|
+
* Terms representing the information contained in or other relevant attributes of a resource.
|
425
623
|
## Subject note types
|
426
|
-
_Path: subject.
|
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.
|
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
|
-
|
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
|
-
|
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.
|
720
|
+
_Path: subject.structuredValue.note.type_
|
479
721
|
* affiliation
|
480
|
-
|
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.
|
484
|
-
* uniform
|
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:
|
488
|
-
* abbreviated
|
489
|
-
|
490
|
-
*
|
491
|
-
|
492
|
-
*
|
493
|
-
|
494
|
-
*
|
495
|
-
|
496
|
-
*
|
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.
|
500
|
-
* associated name
|
501
|
-
|
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.
|
505
|
-
* main title
|
506
|
-
|
507
|
-
*
|
508
|
-
|
509
|
-
*
|
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.
|