@@ -31,8 +31,7 @@ def extract_form_terms(marc_record, mapping_ruleset)
31
31
leader_bytes_6_and_7 = marc_record . leader [ 6 ..7 ]
32
32
case leader_bytes_6_and_7
33
33
when 'am' , # Language material, Monograph/Item
34
- 'aa' , # Language material, Monographic component part
35
- 'tm' # Manuscript language material, Monograph/Item
34
+ 'aa' # Language material, Monographic component part
36
35
form_terms << { 'uri' => 'http://id.loc.gov/vocabulary/graphicMaterials/tgm001221' } # books
37
36
when 'as' , # Language material, Serial
38
37
'ab' # Language material, Serial component part
@@ -58,7 +57,8 @@ def extract_form_terms(marc_record, mapping_ruleset)
58
57
form_terms << { 'uri' => 'http://vocab.getty.edu/aat/300028881' } # ephemera
59
58
when 'rm' # Three-dimensional artifact or naturally occurring object, Monograph/Item
60
59
form_terms << { 'uri' => 'http://id.loc.gov/vocabulary/graphicMaterials/tgm007159' } # objects
61
- when 'tc' # Manuscript language material, Collection
60
+ when 'tc' , # Manuscript language material, Collection
61
+ 'tm' # Manuscript language material, Monograph/Item
62
62
form_terms << { 'uri' => 'http://id.loc.gov/authorities/subjects/sh85080672.html' } # manuscripts
63
63
when 'cm' # Notated music, Monograph/Item
64
64
form_terms << { 'uri' => 'http://id.loc.gov/authorities/genreForms/gf2014026952' } # music
0 commit comments