diff --git a/app/controllers/catalog_controller.rb b/app/controllers/catalog_controller.rb index 31abccdb3..dbbf2dcae 100644 --- a/app/controllers/catalog_controller.rb +++ b/app/controllers/catalog_controller.rb @@ -264,7 +264,7 @@ class CatalogController < ApplicationController # SECONDARY # Find This Item config.add_show_field 'repository_tesim', label: 'Repository', link_to_facet: 'repository_sim' - config.add_show_field 'local_identifier_ssm', label: 'Local identifier' + config.add_show_field 'local_identifier_ssim', label: 'Local identifier' config.add_show_field 'oclc_ssi', label: 'OCLC Number' config.add_show_field 'iiif_manifest_url_ssi', label: 'Manifest url' config.add_show_field 'finding_aid_url_ssm', label: 'Finding aid url' diff --git a/app/models/concerns/mods_arce_solr_document.rb b/app/models/concerns/mods_arce_solr_document.rb index 07f60ec88..c63b13812 100644 --- a/app/models/concerns/mods_arce_solr_document.rb +++ b/app/models/concerns/mods_arce_solr_document.rb @@ -11,7 +11,7 @@ def to_mods_arce # xml['mods'].identifier({ type: 'ladybird' }, "oid#{self[:id]}") # xml['mods'].identifier({ displayLabel: 'Accession Number', type: 'local' }, self[:accessionNumber_ssi]) if self[:accessionNumber_ssi].present? # xml['mods'].identifier({ displayLabel: 'Barcode', type: 'local' }, self[:orbisBarcode_ssi]) if self[:orbisBarcode_ssi].present? - self[:local_identifier_ssm]&.each { |local_identifier| xml['mods'].identifier({ type: 'local' }, local_identifier.to_s) } if self[:local_identifier_ssm].present? + self[:local_identifier_ssim]&.each { |local_identifier| xml['mods'].identifier({ type: 'local' }, local_identifier.to_s) } if self[:local_identifier_ssim].present? self[:note_tesim]&.each { |abstract| xml['mods'].abstract abstract.to_s } self[:license_tesim]&.each { |access| xml['mods'].accessCondition({ type: "use and reproduction", displayLabel: "license" }, access.to_s) } self[:local_rights_statement_ssm]&.each { |access| xml['mods'].accessCondition({ type: "local rights statements" }, access.to_s) } diff --git a/app/services/search_field_service.rb b/app/services/search_field_service.rb index 78784df46..eb1865e02 100644 --- a/app/services/search_field_service.rb +++ b/app/services/search_field_service.rb @@ -30,7 +30,7 @@ class SearchFieldService 'illustrations_note_tesim', 'inscription_tesim', 'incipit_tesim', - 'local_identifier_ssm', + 'local_identifier_ssim', 'location_tesim', 'lyricist_tesim', 'medium_tesim', diff --git a/config/locales/blacklight.en.yml b/config/locales/blacklight.en.yml index f83310a16..58b18dd2f 100644 --- a/config/locales/blacklight.en.yml +++ b/config/locales/blacklight.en.yml @@ -83,7 +83,7 @@ en: extent_tesim: 'Extent' genre_tesim: 'Genre' identifier_tesim: 'Identifier' - local_identifier_ssm: 'Local Identifier' + local_identifier_ssim: 'Local Identifier' location_tesim: 'Location' named_subject_tesim: 'Names' normalized_date_sim: 'Date' @@ -121,7 +121,7 @@ en: identifier_tesim: 'Identifier' human_readable_language_tesim: 'Language' latitude_tesim: 'Longitude' - local_identifier_ssm: 'Local Identifier' + local_identifier_ssim: 'Local Identifier' location_tesim: 'Location' longitude_tesim: 'Latitude' lyricist_tesim: 'Lyricist' diff --git a/config/metadata/find_collection_metadata.yml b/config/metadata/find_collection_metadata.yml index 25655ad95..cc88d1279 100644 --- a/config/metadata/find_collection_metadata.yml +++ b/config/metadata/find_collection_metadata.yml @@ -1,5 +1,5 @@ repository_tesim: "Repository" -local_identifier_ssm: "Local identifier" +local_identifier_ssim: "Local identifier" oclc_ssi: "OCLC Number" ark_ssi: "ARK" opac_url_ssi: "Opac url" diff --git a/config/metadata/find_this_item_metadata.yml b/config/metadata/find_this_item_metadata.yml index de729d104..0c2add90e 100644 --- a/config/metadata/find_this_item_metadata.yml +++ b/config/metadata/find_this_item_metadata.yml @@ -1,5 +1,5 @@ repository_tesim: "Repository" -local_identifier_ssm: "Local identifier" +local_identifier_ssim: "Local identifier" opac_url_tesim: "Opac url" oclc_ssi: "OCLC Number" ark_ssi: "ARK" diff --git a/config/oai.yml b/config/oai.yml index ba19fcbe8..58340ecaf 100644 --- a/config/oai.yml +++ b/config/oai.yml @@ -74,7 +74,7 @@ default: identifier: - masterFilename - itemCallNumber - - local_identifier_ssm + - local_identifier_ssim - opac_url_ssi - oclc_ssi - ark_ssi diff --git a/config/secondary_metadata.yml b/config/secondary_metadata.yml index 8ffb4736e..312b5e9e1 100644 --- a/config/secondary_metadata.yml +++ b/config/secondary_metadata.yml @@ -1,5 +1,5 @@ repository_tesim: 'Repository' -local_identifier_ssm: 'Local identifier' +local_identifier_ssim: 'Local identifier' # OCLC Number ark_ssi: 'ARK' # Rights statement diff --git a/spec/controllers/catalog_controller_spec.rb b/spec/controllers/catalog_controller_spec.rb index bdd216369..500111a8b 100644 --- a/spec/controllers/catalog_controller_spec.rb +++ b/spec/controllers/catalog_controller_spec.rb @@ -76,7 +76,7 @@ "identifier_tesim", "illuminator_tesim", "illustrator_tesim", "iiif_manifest_url_ssi", "illustrations_note_tesim", "incipit_tesim", "inscription_tesim", "keyword_tesim", "latitude_tesim", - "local_rights_statement_ssm", "location_tesim", "local_identifier_ssm", + "local_rights_statement_ssm", "location_tesim", "local_identifier_ssim", "longitude_tesim", "lyricist_tesim", "medium_tesim", "member_of_collections_ssim", "named_subject_tesim", "note_tesim", "oclc_ssi", "opac_url_ssi", "page_layout_ssim", "photographer_tesim", diff --git a/spec/presenters/ursus/find_collection_metadata_presenter_spec.rb b/spec/presenters/ursus/find_collection_metadata_presenter_spec.rb index 50b3791bf..dd9322bd0 100644 --- a/spec/presenters/ursus/find_collection_metadata_presenter_spec.rb +++ b/spec/presenters/ursus/find_collection_metadata_presenter_spec.rb @@ -5,7 +5,7 @@ let(:solr_doc) do { 'repository_tesim' => 'Repository', - 'local_identifier_ssm' => 'Local identifier', + 'local_identifier_ssim' => 'Local identifier', 'oclc_ssi' => 'OCLC Number', 'ark_ssi' => 'ARK', 'opac_url_ssi' => 'Opac url' @@ -14,7 +14,7 @@ let(:solr_doc_missing_items) do { 'repository_tesim' => 'Repository', - 'local_identifier_ssm' => 'Local identifier', + 'local_identifier_ssim' => 'Local identifier', 'oclc_ssi' => 'OCLC Number' } end @@ -29,7 +29,7 @@ end it 'returns the Local identifier Key' do - expect(config['local_identifier_ssm'].to_s).to eq('Local identifier') + expect(config['local_identifier_ssim'].to_s).to eq('Local identifier') end it 'returns the OCLC Number Key' do diff --git a/spec/presenters/ursus/find_this_item_metadata_presenter_spec.rb b/spec/presenters/ursus/find_this_item_metadata_presenter_spec.rb index f3b97af39..8de869e01 100644 --- a/spec/presenters/ursus/find_this_item_metadata_presenter_spec.rb +++ b/spec/presenters/ursus/find_this_item_metadata_presenter_spec.rb @@ -5,7 +5,7 @@ let(:solr_doc) do { 'repository_tesim' => 'Repository', - 'local_identifier_ssm' => 'Local identifier', + 'local_identifier_ssim' => 'Local identifier', 'opac_url_tesim' => 'Opac url', 'oclc_ssi' => 'OCLC Number', 'ark_ssi' => 'ARK' @@ -14,7 +14,7 @@ let(:solr_doc_missing_items) do { 'repository_tesim' => 'Repository', - 'local_identifier_ssm' => 'Local identifier', + 'local_identifier_ssim' => 'Local identifier', 'oclc_ssi' => 'OCLC Number' } end @@ -29,7 +29,7 @@ end it 'returns the Local identifier Key' do - expect(config['local_identifier_ssm'].to_s).to eq('Local identifier') + expect(config['local_identifier_ssim'].to_s).to eq('Local identifier') end it 'returns the Opac url' do diff --git a/spec/presenters/ursus/tagline_metadata_presenter_spec.rb b/spec/presenters/ursus/tagline_metadata_presenter_spec.rb index 8a7fac38f..74780f626 100644 --- a/spec/presenters/ursus/tagline_metadata_presenter_spec.rb +++ b/spec/presenters/ursus/tagline_metadata_presenter_spec.rb @@ -7,7 +7,7 @@ 'ark_ssi' => 'test', 'title_tesim' => 'Test record', 'repository_tesim' => 'Test Repository', - 'local_identifier_ssm' => '890_abc', + 'local_identifier_ssim' => '890_abc', 'oclc_ssi' => 'abc123_oclc', 'dlcs_collection_name_ssm' => 'Collection 1', 'resource_type_tesim' => 'still image' @@ -19,7 +19,7 @@ 'ark_ssi' => 'test', 'title_tesim' => 'Test record', 'repository_tesim' => 'Test Repository', - 'local_identifier_ssm' => '890_abc', + 'local_identifier_ssim' => '890_abc', 'oclc_ssi' => 'abc123_oclc', 'dlcs_collection_name_ssm' => 'Collection 1', 'resource_type_tesim' => 'still image', diff --git a/spec/services/search_field_service_spec.rb b/spec/services/search_field_service_spec.rb index 46bd64188..173f24a35 100644 --- a/spec/services/search_field_service_spec.rb +++ b/spec/services/search_field_service_spec.rb @@ -5,6 +5,6 @@ RSpec.describe SearchFieldService do let(:search_field_service) { described_class.instance } it 'returns the correct list of search fields' do - expect(search_field_service.search_fields).to eq(['ark_ssi', 'artist_tesim', 'alternative_title_tesim', 'architect_tesim', 'author_tesim', 'binding_note_tesim', 'caption_tesim', 'collation_tesim', 'colophon_tesim', 'composer_tesim', 'condition_note_ssi', 'contents_note_tesim', 'contributor_tesim', 'creator_tesim', 'date_created_tesim', 'description_tesim', 'explicit_tesim', 'features_tesim', 'foliation_tesim', 'genre_tesim', 'human_readable_language_tesim', 'identifier_tesim', 'illuminator_tesim', 'illustrations_note_tesim', 'inscription_tesim', 'incipit_tesim', 'local_identifier_ssm', 'location_tesim', 'lyricist_tesim', 'medium_tesim', 'named_subject_tesim', 'page_layout_ssim', 'opac_url_ssi', 'page_layout_ssim', 'photographer_tesim', 'place_of_origin_tesim', 'producer_tesim', 'provenance_tesim', 'publisher_tesim', 'scribe_tesim', 'script_tesim', 'series_tesim', 'combined_subject_ssim', 'summary_tesim', 'support_tesim', 'title_tesim', 'toc_tesim', 'uniform_title_tesim', 'hand_note_tesim', 'writing_system_tesim', 'uniform_title_tesim', 'shelfmark_ssi', 'descriptive_title_tesim', 'delivery_tesim', 'other_versions_tesim', 'repository_tesim', 'host_tesim', 'musician_tesim', 'printer_tesim', 'researcher_tesim', 'format_book_tesim', 'resp_statement_tesim', 'citation_source_tesim'].join(' ')) + expect(search_field_service.search_fields).to eq(['ark_ssi', 'artist_tesim', 'alternative_title_tesim', 'architect_tesim', 'author_tesim', 'binding_note_tesim', 'caption_tesim', 'collation_tesim', 'colophon_tesim', 'composer_tesim', 'condition_note_ssi', 'contents_note_tesim', 'contributor_tesim', 'creator_tesim', 'date_created_tesim', 'description_tesim', 'explicit_tesim', 'features_tesim', 'foliation_tesim', 'genre_tesim', 'human_readable_language_tesim', 'identifier_tesim', 'illuminator_tesim', 'illustrations_note_tesim', 'inscription_tesim', 'incipit_tesim', 'local_identifier_ssim', 'location_tesim', 'lyricist_tesim', 'medium_tesim', 'named_subject_tesim', 'page_layout_ssim', 'opac_url_ssi', 'page_layout_ssim', 'photographer_tesim', 'place_of_origin_tesim', 'producer_tesim', 'provenance_tesim', 'publisher_tesim', 'scribe_tesim', 'script_tesim', 'series_tesim', 'combined_subject_ssim', 'summary_tesim', 'support_tesim', 'title_tesim', 'toc_tesim', 'uniform_title_tesim', 'hand_note_tesim', 'writing_system_tesim', 'uniform_title_tesim', 'shelfmark_ssi', 'descriptive_title_tesim', 'delivery_tesim', 'other_versions_tesim', 'repository_tesim', 'host_tesim', 'musician_tesim', 'printer_tesim', 'researcher_tesim', 'format_book_tesim', 'resp_statement_tesim', 'citation_source_tesim'].join(' ')) end end diff --git a/spec/support/response.rb b/spec/support/response.rb index fbc2a345b..12ce79570 100644 --- a/spec/support/response.rb +++ b/spec/support/response.rb @@ -1,2 +1,2 @@ # frozen_string_literal: true -RESPONSE = { "responseHeader" => { "status" => 0, "QTime" => 1, "params" => { "mm" => "100%", "facet.field" => ["subject_sim", "human_readable_resource_type_sim", "genre_sim", "named_subject_sim", "location_sim", "year_isim", "human_readable_language_sim", "member_of_collections_ssim", "generic_type_sim"], "qt" => "search", "f.human_readable_language_sim.facet.limit" => "6", "f.named_subject_sim.facet.limit" => "6", "fq" => ["{!terms f=has_model_ssim v=Work,Collection}", "{!term f=member_of_collections_ssim}Connell (Will) Papers"], "sort" => "score desc", "rows" => "10", "f.location_sim.facet.limit" => "6", "f.member_of_collections_ssim.facet.limit" => "6", "f.human_readable_resource_type_sim.facet.limit" => "6", "qf" => "architect_tesim caption_tesim contributor_tesim creator_tesim description_tesim genre_tesim identifier_tesim local_identifier_ssm location_tesim medium_tesim named_subject_tesim normalized_date_tesim photographer_tesim publisher_tesim subject_tesim title_tesim ark_ssi", "stats" => "true", "f.year_isim.facet.limit" => "6", "f.genre_sim.facet.limit" => "6", "facet" => "true", "wt" => "json", "f.subject_sim.facet.limit" => "6", "stats.field" => "year_isim" } }, "response" => { "numFound" => 19, "start" => 0, "maxScore" => 1.0, "docs" => [{ "system_create_dtsi" => "2019-05-30T19:54:42Z", "system_modified_dtsi" => "2019-05-30T19:54:45Z", "has_model_ssim" => ["Work"], "id" => "bqf2h200zz-89112", "accessControl_ssim" => ["e514f76a-04ba-4eed-a192-d846896c71a1"], "depositor_ssim" => ["batchuser@example.com"], "depositor_tesim" => ["batchuser@example.com"], "title_tesim" => ["Otto Klemperer, 1925-1939"], "date_uploaded_dtsi" => "2019-05-30T19:54:42Z", "date_modified_dtsi" => "2019-05-30T19:54:42Z", "isPartOf_ssim" => ["admin_set/default"], "ark_ssi" => "ark:/21198/zz002h2fqb", "extent_tesim" => ["1 photographic negative"], "dlcs_collection_name_ssm" => ["Will Connell Collection. Department of Special Collections, Charles E. Young Research Library, UCLA."], "funding_note_tesim" => ["Access to this collection is generously supported by Arcadia funds."], "genre_tesim" => ["cellulose nitrate film", "Portrait photographs", "black-and-white photographs"], "local_identifier_ssm" => ["uclamss_893_0206"], "medium_tesim" => ["b&w nitrate negative"], "named_subject_tesim" => ["Klemperer, Otto, 1885-1973"], "normalized_date_tesim" => ["1925-1939"], "photographer_tesim" => ["Connell, Will, 1898-1961"], "repository_tesim" => ["University of California, Los Angeles. Library Special Collections"], "resource_type_tesim" => ["http://id.loc.gov/vocabulary/resourceTypes/img"], "subject_tesim" => ["Composers", "Conductors"], "description_tesim" => ["Text from negative sleeve: Klemperer (Otto Klemperer) German conductor and composer. Director of LA Philharmonic 1933-1939.", "Portrait of Otto Klemperer"], "rights_statement_tesim" => ["http://vocabs.library.ucla.edu/rights/copyrighted"], "date_created_tesim" => ["[between 1925-1939]"], "thumbnail_path_ss" => "/assets/work-ff055336041c3f7d310ad69109eda4a887b16ec501f35afc0a547c4adb97ee72.png", "suppressed_bsi" => false, "member_of_collections_ssim" => ["Connell (Will) Papers"], "member_of_collection_ids_ssim" => ["coll-123"], "visibility_ssi" => "open", "admin_set_tesim" => ["Default Admin Set"], "sort_year_isi" => 1925, "human_readable_resource_type_tesim" => ["still image"], "human_readable_rights_statement_tesim" => ["copyrighted"], "sort_title_tesi" => "Otto Klemperer, 1925-1939", "ursus_id_ssi" => "21198-zz002h2fqb", "year_isim" => [1925], "human_readable_type_tesim" => ["Work"], "read_access_group_ssim" => ["public"], "edit_access_group_ssim" => ["admin"], "nesting_collection__ancestors_ssim" => ["tpf2h200zz-89112"], "nesting_collection__parent_ids_ssim" => ["tpf2h200zz-89112"], "nesting_collection__pathnames_ssim" => ["tpf2h200zz-89112/bqf2h200zz-89112"], "nesting_collection__deepest_nested_depth_isi" => 2, "_version_" => 1_634_988_068_206_280_704, "timestamp" => "2019-05-30T19:55:28.279Z", "score" => 1.0 }, { "system_create_dtsi" => "2019-05-30T19:54:53Z", "system_modified_dtsi" => "2019-05-30T19:54:54Z", "has_model_ssim" => ["Work"], "id" => "dvf2h200zz-89112", "accessControl_ssim" => ["7a70d729-5f91-48ee-bde0-8a44d5545ca6"], "depositor_ssim" => ["batchuser@example.com"], "depositor_tesim" => ["batchuser@example.com"], "title_tesim" => ["George Sprague seated at a piano, and an unidentified woman, circa 1930-1939"], "date_uploaded_dtsi" => "2019-05-30T19:54:53Z", "date_modified_dtsi" => "2019-05-30T19:54:53Z", "isPartOf_ssim" => ["admin_set/default"], "ark_ssi" => "ark:/21198/zz002h2fvd", "extent_tesim" => ["1 photographic negative"], "caption_tesim" => ["Text from negative sleeve: George Sprague"], "dlcs_collection_name_ssm" => ["Will Connell Collection. Department of Special Collections, Charles E. Young Research Library, UCLA."], "funding_note_tesim" => ["Access to this collection is generously supported by Arcadia funds."], "genre_tesim" => ["cellulose nitrate film", "black-and-white photographs"], "local_identifier_ssm" => ["uclamss_893_0210"], "medium_tesim" => ["b&w nitrate negative"], "named_subject_tesim" => ["Sprague, George Newman, 1903-1967"], "normalized_date_tesim" => ["1930/1939"], "photographer_tesim" => ["Connell, Will, 1898-1961"], "repository_tesim" => ["University of California, Los Angeles. Library Special Collections"], "resource_type_tesim" => ["http://id.loc.gov/vocabulary/resourceTypes/img"], "subject_tesim" => ["Architects"], "description_tesim" => ["Photograph of George Sprague, probably the architect, seated at a piano, and an unidentified woman, both with drinks at a social gathering. There are 2 paintings on the wall behind them.", "This is probably George Newman Sprague, an architect who earned his Master's Degree in Architecture from Harvard University, opened his office in Los Angeles in 1930, taught at USC and the Art Center, married Katherine Devlin in 1931, and who lived in Chadd's Ford, PA from 1947 on. Will Connell taught at the art Center during the time that Sprague was there."], "rights_statement_tesim" => ["http://vocabs.library.ucla.edu/rights/copyrighted"], "date_created_tesim" => ["[circa 1930-1939]"], "thumbnail_path_ss" => "/assets/work-ff055336041c3f7d310ad69109eda4a887b16ec501f35afc0a547c4adb97ee72.png", "suppressed_bsi" => false, "member_of_collections_ssim" => ["Connell (Will) Papers"], "member_of_collection_ids_ssim" => ["tpf2h200zz-89112"], "visibility_ssi" => "open", "admin_set_tesim" => ["Default Admin Set"], "sort_year_isi" => 1930, "human_readable_resource_type_tesim" => ["still image"], "human_readable_rights_statement_tesim" => ["copyrighted"], "sort_title_tesi" => "George Sprague seated at a piano, and an unidentified woman, circa 1930-1939", "ursus_id_ssi" => "21198-zz002h2fvd", "year_isim" => [1930, 1931, 1932, 1933, 1934, 1935, 1936, 1937, 1938, 1939], "human_readable_type_tesim" => ["Work"], "read_access_group_ssim" => ["public"], "edit_access_group_ssim" => ["admin"], "nesting_collection__ancestors_ssim" => ["tpf2h200zz-89112"], "nesting_collection__parent_ids_ssim" => ["tpf2h200zz-89112"], "nesting_collection__pathnames_ssim" => ["tpf2h200zz-89112/dvf2h200zz-89112"], "nesting_collection__deepest_nested_depth_isi" => 2, "_version_" => 1_634_988_069_456_183_296, "timestamp" => "2019-05-30T19:55:29.471Z", "score" => 1.0 }, { "system_create_dtsi" => "2019-05-30T19:54:51Z", "system_modified_dtsi" => "2019-05-30T19:54:52Z", "has_model_ssim" => ["Work"], "id" => "wtf2h200zz-89112", "accessControl_ssim" => ["c5947c4e-2026-4eac-a9dd-65ea0f885799"], "depositor_ssim" => ["batchuser@example.com"], "depositor_tesim" => ["batchuser@example.com"], "title_tesim" => ["George Sprague seated at a piano, circa 1930-1939"], "date_uploaded_dtsi" => "2019-05-30T19:54:50Z", "date_modified_dtsi" => "2019-05-30T19:54:50Z", "isPartOf_ssim" => ["admin_set/default"], "ark_ssi" => "ark:/21198/zz002h2ftw", "extent_tesim" => ["1 photographic negative"], "caption_tesim" => ["Text from negative sleeve: George Sprague"], "dlcs_collection_name_ssm" => ["Will Connell Collection. Department of Special Collections, Charles E. Young Research Library, UCLA."], "funding_note_tesim" => ["Access to this collection is generously supported by Arcadia funds."], "genre_tesim" => ["cellulose nitrate film", "Portrait photographs", "black-and-white photographs"], "local_identifier_ssm" => ["uclamss_893_0209"], "medium_tesim" => ["b&w nitrate negative"], "named_subject_tesim" => ["Sprague, George Newman, 1903-1967"], "normalized_date_tesim" => ["1930/1939"], "photographer_tesim" => ["Connell, Will, 1898-1961"], "repository_tesim" => ["University of California, Los Angeles. Library Special Collections"], "resource_type_tesim" => ["http://id.loc.gov/vocabulary/resourceTypes/img"], "subject_tesim" => ["Architects"], "description_tesim" => ["This is probably George Newman Sprague, an architect who earned his Master's Degree in Architecture from Harvard University, opened his office in Los Angeles in 1930, taught at USC and the Art Center, married Katherine Devlin in 1931, and who lived in Chadd's Ford, PA from 1947 on. Will Connell taught at the art Center during the time that Sprague was there.", "Photograph of George Sprague, probably the architect, seated at a piano with sheet music titled \"Santly's Successful Songs.\" There is a painting on the wall behind him and a vase of flowers on the piano."], "rights_statement_tesim" => ["http://vocabs.library.ucla.edu/rights/copyrighted"], "date_created_tesim" => ["[circa 1930-1939]"], "thumbnail_path_ss" => "/assets/work-ff055336041c3f7d310ad69109eda4a887b16ec501f35afc0a547c4adb97ee72.png", "suppressed_bsi" => false, "member_of_collections_ssim" => ["Connell (Will) Papers"], "member_of_collection_ids_ssim" => ["tpf2h200zz-89112"], "visibility_ssi" => "open", "admin_set_tesim" => ["Default Admin Set"], "sort_year_isi" => 1930, "human_readable_resource_type_tesim" => ["still image"], "human_readable_rights_statement_tesim" => ["copyrighted"], "sort_title_tesi" => "George Sprague seated at a piano, circa 1930-1939", "ursus_id_ssi" => "21198-zz002h2ftw", "year_isim" => [1930, 1931, 1932, 1933, 1934, 1935, 1936, 1937, 1938, 1939], "human_readable_type_tesim" => ["Work"], "read_access_group_ssim" => ["public"], "edit_access_group_ssim" => ["admin"], "nesting_collection__ancestors_ssim" => ["tpf2h200zz-89112"], "nesting_collection__parent_ids_ssim" => ["tpf2h200zz-89112"], "nesting_collection__pathnames_ssim" => ["tpf2h200zz-89112/wtf2h200zz-89112"], "nesting_collection__deepest_nested_depth_isi" => 2, "_version_" => 1_634_988_069_155_241_984, "timestamp" => "2019-05-30T19:55:29.184Z", "score" => 1.0 }, { "system_create_dtsi" => "2019-05-30T19:54:55Z", "system_modified_dtsi" => "2019-05-30T19:54:57Z", "has_model_ssim" => ["Work"], "id" => "xwf2h200zz-89112", "accessControl_ssim" => ["0c5a20e3-ddee-4ff4-9627-699ecc6aafc9"], "depositor_ssim" => ["batchuser@example.com"], "depositor_tesim" => ["batchuser@example.com"], "title_tesim" => ["Opal Weimer Fostvedt Tice and William C. Fostvedt, 1933-1946"], "date_uploaded_dtsi" => "2019-05-30T19:54:55Z", "date_modified_dtsi" => "2019-05-30T19:54:55Z", "isPartOf_ssim" => ["admin_set/default"], "ark_ssi" => "ark:/21198/zz002h2fwx", "extent_tesim" => ["1 photographic negative"], "caption_tesim" => ["Text from negative sleeve: Fostveldt. Frankenfield. Jos. Paget-Fredericks"], "dlcs_collection_name_ssm" => ["Will Connell Collection. Department of Special Collections, Charles E. Young Research Library, UCLA."], "funding_note_tesim" => ["Access to this collection is generously supported by Arcadia funds."], "genre_tesim" => ["cellulose nitrate film", "Portrait photographs", "black-and-white photographs"], "local_identifier_ssm" => ["uclamss_893_0211"], "medium_tesim" => ["b&w nitrate negative"], "named_subject_tesim" => ["Tice, Opal Weimer Fostvedt, 1900-1978", "Fostvedt, William C., 1902-1964"], "normalized_date_tesim" => ["1933/1946"], "photographer_tesim" => ["Connell, Will, 1898-1961"], "repository_tesim" => ["University of California, Los Angeles. Library Special Collections"], "resource_type_tesim" => ["http://id.loc.gov/vocabulary/resourceTypes/img"], "description_tesim" => ["Opal Weimer Fostvedt Tice was a member of the Los Angeles art community and often a model for photographers in the group.", "Double portrait of Opal Weimer Fostvedt Tice, standing, with her hand on the shoulder of her husband William C. Fostvedt"], "rights_statement_tesim" => ["http://vocabs.library.ucla.edu/rights/copyrighted"], "date_created_tesim" => ["[between 1933-1946]"], "thumbnail_path_ss" => "/assets/work-ff055336041c3f7d310ad69109eda4a887b16ec501f35afc0a547c4adb97ee72.png", "suppressed_bsi" => false, "member_of_collections_ssim" => ["Connell (Will) Papers"], "member_of_collection_ids_ssim" => ["tpf2h200zz-89112"], "visibility_ssi" => "open", "admin_set_tesim" => ["Default Admin Set"], "sort_year_isi" => 1933, "human_readable_resource_type_tesim" => ["still image"], "human_readable_rights_statement_tesim" => ["copyrighted"], "sort_title_tesi" => "Opal Weimer Fostvedt Tice and William C. Fostvedt, 1933-1946", "ursus_id_ssi" => "21198-zz002h2fwx", "year_isim" => [1933, 1934, 1935, 1936, 1937, 1938, 1939, 1940, 1941, 1942, 1943, 1944, 1945, 1946], "human_readable_type_tesim" => ["Work"], "read_access_group_ssim" => ["public"], "edit_access_group_ssim" => ["admin"], "nesting_collection__ancestors_ssim" => ["tpf2h200zz-89112"], "nesting_collection__parent_ids_ssim" => ["tpf2h200zz-89112"], "nesting_collection__pathnames_ssim" => ["tpf2h200zz-89112/xwf2h200zz-89112"], "nesting_collection__deepest_nested_depth_isi" => 2, "_version_" => 1_634_988_069_751_881_728, "timestamp" => "2019-05-30T19:55:29.753Z", "score" => 1.0 }, { "system_create_dtsi" => "2019-05-30T19:54:58Z", "system_modified_dtsi" => "2019-05-30T19:54:59Z", "has_model_ssim" => ["Work"], "id" => "fxf2h200zz-89112", "accessControl_ssim" => ["ee27af10-ed62-4de7-be0d-8b1c5e7b5127"], "depositor_ssim" => ["batchuser@example.com"], "depositor_tesim" => ["batchuser@example.com"], "title_tesim" => ["Drawing of Bill Williams by Opal Weimer Fostvedt Tice, 1933-1946"], "date_uploaded_dtsi" => "2019-05-30T19:54:57Z", "date_modified_dtsi" => "2019-05-30T19:54:57Z", "isPartOf_ssim" => ["admin_set/default"], "ark_ssi" => "ark:/21198/zz002h2fxf", "extent_tesim" => ["1 photographic negative"], "caption_tesim" => ["Text from negative sleeve: Fostvedt. Frankenfield. Jos. Paget-Fredericks.", "Signed: \"Opal Fostvedt. Bill Williams 7-16-31.\""], "dlcs_collection_name_ssm" => ["Will Connell Collection. Department of Special Collections, Charles E. Young Research Library, UCLA."], "funding_note_tesim" => ["Access to this collection is generously supported by Arcadia funds."], "genre_tesim" => ["cellulose nitrate film", "drawings (visual works)", "black-and-white photographs"], "local_identifier_ssm" => ["uclamss_893_0212"], "medium_tesim" => ["b&w nitrate negative"], "named_subject_tesim" => ["Williams, Bill, 1915-1992"], "normalized_date_tesim" => ["1933/1946"], "photographer_tesim" => ["Connell, Will, 1898-1961"], "repository_tesim" => ["University of California, Los Angeles. Library Special Collections"], "resource_type_tesim" => ["http://id.loc.gov/vocabulary/resourceTypes/img"], "description_tesim" => ["Bust-length drawing of actor Bill Williams", "Opal Weimer Fostvedt Tice was a member of the Los Angeles art community and often a model for photographers in the group."], "rights_statement_tesim" => ["http://vocabs.library.ucla.edu/rights/copyrighted"], "date_created_tesim" => ["[between 1933-1946]"], "thumbnail_path_ss" => "/assets/work-ff055336041c3f7d310ad69109eda4a887b16ec501f35afc0a547c4adb97ee72.png", "suppressed_bsi" => false, "member_of_collections_ssim" => ["Connell (Will) Papers"], "member_of_collection_ids_ssim" => ["tpf2h200zz-89112"], "visibility_ssi" => "open", "admin_set_tesim" => ["Default Admin Set"], "sort_year_isi" => 1933, "human_readable_resource_type_tesim" => ["still image"], "human_readable_rights_statement_tesim" => ["copyrighted"], "sort_title_tesi" => "Drawing of Bill Williams by Opal Weimer Fostvedt Tice, 1933-1946", "ursus_id_ssi" => "21198-zz002h2fxf", "year_isim" => [1933, 1934, 1935, 1936, 1937, 1938, 1939, 1940, 1941, 1942, 1943, 1944, 1945, 1946], "human_readable_type_tesim" => ["Work"], "read_access_group_ssim" => ["public"], "edit_access_group_ssim" => ["admin"], "nesting_collection__ancestors_ssim" => ["tpf2h200zz-89112"], "nesting_collection__parent_ids_ssim" => ["tpf2h200zz-89112"], "nesting_collection__pathnames_ssim" => ["tpf2h200zz-89112/fxf2h200zz-89112"], "nesting_collection__deepest_nested_depth_isi" => 2, "_version_" => 1_634_988_070_065_405_952, "timestamp" => "2019-05-30T19:55:30.052Z", "score" => 1.0 }, { "system_create_dtsi" => "2019-05-30T19:55:02Z", "system_modified_dtsi" => "2019-05-30T19:55:04Z", "has_model_ssim" => ["Work"], "id" => "z0g2h200zz-89112", "accessControl_ssim" => ["b56ee407-48a4-451f-b98e-82417b5a0928"], "depositor_ssim" => ["batchuser@example.com"], "depositor_tesim" => ["batchuser@example.com"], "title_tesim" => ["Opal Weimer Fostvedt Tice, 1933-1946"], "date_uploaded_dtsi" => "2019-05-30T19:55:02Z", "date_modified_dtsi" => "2019-05-30T19:55:02Z", "isPartOf_ssim" => ["admin_set/default"], "ark_ssi" => "ark:/21198/zz002h2g0z", "extent_tesim" => ["1 photographic negative"], "caption_tesim" => ["Text from negative sleeve: Fostveldt. Frankenfield. Jos. Paget-Fredericks"], "dlcs_collection_name_ssm" => ["Will Connell Collection. Department of Special Collections, Charles E. Young Research Library, UCLA."], "funding_note_tesim" => ["Access to this collection is generously supported by Arcadia funds."], "genre_tesim" => ["cellulose nitrate film", "Portrait photographs", "black-and-white photographs"], "local_identifier_ssm" => ["uclamss_893_0214"], "medium_tesim" => ["b&w nitrate negative"], "named_subject_tesim" => ["Tice, Opal Weimer Fostvedt, 1900-1978"], "normalized_date_tesim" => ["1933/1946"], "photographer_tesim" => ["Connell, Will, 1898-1961"], "repository_tesim" => ["University of California, Los Angeles. Library Special Collections"], "resource_type_tesim" => ["http://id.loc.gov/vocabulary/resourceTypes/img"], "description_tesim" => ["Opal Weimer Fostvedt Tice was a member of the Los Angeles art community and often a model for photographers in the group.", "Bust-length portrait of Opal Weimer Fostvedt Tice, in profile, in a floral dress"], "rights_statement_tesim" => ["http://vocabs.library.ucla.edu/rights/copyrighted"], "date_created_tesim" => ["[between 1933-1946]"], "thumbnail_path_ss" => "/assets/work-ff055336041c3f7d310ad69109eda4a887b16ec501f35afc0a547c4adb97ee72.png", "suppressed_bsi" => false, "member_of_collections_ssim" => ["Connell (Will) Papers"], "member_of_collection_ids_ssim" => ["tpf2h200zz-89112"], "visibility_ssi" => "open", "admin_set_tesim" => ["Default Admin Set"], "sort_year_isi" => 1933, "human_readable_resource_type_tesim" => ["still image"], "human_readable_rights_statement_tesim" => ["copyrighted"], "sort_title_tesi" => "Opal Weimer Fostvedt Tice, 1933-1946", "ursus_id_ssi" => "21198-zz002h2g0z", "year_isim" => [1933, 1934, 1935, 1936, 1937, 1938, 1939, 1940, 1941, 1942, 1943, 1944, 1945, 1946], "human_readable_type_tesim" => ["Work"], "read_access_group_ssim" => ["public"], "edit_access_group_ssim" => ["admin"], "nesting_collection__ancestors_ssim" => ["tpf2h200zz-89112"], "nesting_collection__parent_ids_ssim" => ["tpf2h200zz-89112"], "nesting_collection__pathnames_ssim" => ["tpf2h200zz-89112/z0g2h200zz-89112"], "nesting_collection__deepest_nested_depth_isi" => 2, "_version_" => 1_634_988_070_653_657_088, "timestamp" => "2019-05-30T19:55:30.613Z", "score" => 1.0 }, { "system_create_dtsi" => "2019-05-30T19:55:04Z", "system_modified_dtsi" => "2019-05-30T19:55:06Z", "has_model_ssim" => ["Work"], "id" => "g1g2h200zz-89112", "accessControl_ssim" => ["43369a9a-e669-45c8-8b1d-a9f433733fb9"], "depositor_ssim" => ["batchuser@example.com"], "depositor_tesim" => ["batchuser@example.com"], "title_tesim" => ["Opal Weimer Fostvedt Tice, 1933-1946"], "date_uploaded_dtsi" => "2019-05-30T19:55:04Z", "date_modified_dtsi" => "2019-05-30T19:55:04Z", "isPartOf_ssim" => ["admin_set/default"], "ark_ssi" => "ark:/21198/zz002h2g1g", "extent_tesim" => ["1 photographic negative"], "caption_tesim" => ["Text from negative sleeve: Fostveldt. Frankenfield. Jos. Paget-Fredericks"], "dlcs_collection_name_ssm" => ["Will Connell Collection. Department of Special Collections, Charles E. Young Research Library, UCLA."], "funding_note_tesim" => ["Access to this collection is generously supported by Arcadia funds."], "genre_tesim" => ["cellulose nitrate film", "Portrait photographs", "black-and-white photographs"], "local_identifier_ssm" => ["uclamss_893_0215"], "medium_tesim" => ["b&w nitrate negative"], "named_subject_tesim" => ["Tice, Opal Weimer Fostvedt, 1900-1978"], "normalized_date_tesim" => ["1933/1946"], "photographer_tesim" => ["Connell, Will, 1898-1961"], "repository_tesim" => ["University of California, Los Angeles. Library Special Collections"], "resource_type_tesim" => ["http://id.loc.gov/vocabulary/resourceTypes/img"], "description_tesim" => ["Opal Weimer Fostvedt Tice was a member of the Los Angeles art community and often a model for photographers in the group.", "Bust-length portrait of Opal Weimer Fostvedt Tice in a floral dress"], "rights_statement_tesim" => ["http://vocabs.library.ucla.edu/rights/copyrighted"], "date_created_tesim" => ["[between 1933-1946]"], "thumbnail_path_ss" => "/assets/work-ff055336041c3f7d310ad69109eda4a887b16ec501f35afc0a547c4adb97ee72.png", "suppressed_bsi" => false, "member_of_collections_ssim" => ["Connell (Will) Papers"], "member_of_collection_ids_ssim" => ["tpf2h200zz-89112"], "visibility_ssi" => "open", "admin_set_tesim" => ["Default Admin Set"], "sort_year_isi" => 1933, "human_readable_resource_type_tesim" => ["still image"], "human_readable_rights_statement_tesim" => ["copyrighted"], "sort_title_tesi" => "Opal Weimer Fostvedt Tice, 1933-1946", "ursus_id_ssi" => "21198-zz002h2g1g", "year_isim" => [1933, 1934, 1935, 1936, 1937, 1938, 1939, 1940, 1941, 1942, 1943, 1944, 1945, 1946], "human_readable_type_tesim" => ["Work"], "read_access_group_ssim" => ["public"], "edit_access_group_ssim" => ["admin"], "nesting_collection__ancestors_ssim" => ["tpf2h200zz-89112"], "nesting_collection__parent_ids_ssim" => ["tpf2h200zz-89112"], "nesting_collection__pathnames_ssim" => ["tpf2h200zz-89112/g1g2h200zz-89112"], "nesting_collection__deepest_nested_depth_isi" => 2, "_version_" => 1_634_988_070_961_938_432, "timestamp" => "2019-05-30T19:55:30.907Z", "score" => 1.0 }, { "system_create_dtsi" => "2019-05-30T19:54:48Z", "system_modified_dtsi" => "2019-05-30T19:54:50Z", "has_model_ssim" => ["Work"], "id" => "csf2h200zz-89112", "accessControl_ssim" => ["9e7c771f-d9f5-4d68-b49d-7a4a7dfdefa5"], "depositor_ssim" => ["batchuser@example.com"], "depositor_tesim" => ["batchuser@example.com"], "title_tesim" => ["Otto Klemperer, 1925-1939"], "date_uploaded_dtsi" => "2019-05-30T19:54:48Z", "date_modified_dtsi" => "2019-05-30T19:54:48Z", "isPartOf_ssim" => ["admin_set/default"], "ark_ssi" => "ark:/21198/zz002h2fsc", "extent_tesim" => ["1 photographic negative"], "caption_tesim" => ["Text from negative sleeve: Klemperer (Otto Klemperer) German conductor and composer. Director of LA Philharmonic 1933-1939."], "dlcs_collection_name_ssm" => ["Will Connell Collection. Department of Special Collections, Charles E. Young Research Library, UCLA."], "funding_note_tesim" => ["Access to this collection is generously supported by Arcadia funds."], "genre_tesim" => ["cellulose nitrate film", "black-and-white photographs"], "local_identifier_ssm" => ["uclamss_893_0208"], "medium_tesim" => ["b&w nitrate negative"], "named_subject_tesim" => ["Klemperer, Otto, 1885-1973"], "normalized_date_tesim" => ["1925/1939"], "photographer_tesim" => ["Connell, Will, 1898-1961"], "repository_tesim" => ["University of California, Los Angeles. Library Special Collections"], "resource_type_tesim" => ["http://id.loc.gov/vocabulary/resourceTypes/img"], "subject_tesim" => ["Composers", "Conductors"], "description_tesim" => ["Portrait of Otto Klemperer"], "rights_statement_tesim" => ["http://vocabs.library.ucla.edu/rights/copyrighted"], "date_created_tesim" => ["[between 1925-1939]"], "thumbnail_path_ss" => "/assets/work-ff055336041c3f7d310ad69109eda4a887b16ec501f35afc0a547c4adb97ee72.png", "suppressed_bsi" => false, "member_of_collections_ssim" => ["Connell (Will) Papers"], "member_of_collection_ids_ssim" => ["tpf2h200zz-89112"], "visibility_ssi" => "open", "admin_set_tesim" => ["Default Admin Set"], "sort_year_isi" => 1925, "human_readable_resource_type_tesim" => ["still image"], "human_readable_rights_statement_tesim" => ["copyrighted"], "sort_title_tesi" => "Otto Klemperer, 1925-1939", "ursus_id_ssi" => "21198-zz002h2fsc", "year_isim" => [1925, 1926, 1927, 1928, 1929, 1930, 1931, 1932, 1933, 1934, 1935, 1936, 1937, 1938, 1939], "human_readable_type_tesim" => ["Work"], "read_access_group_ssim" => ["public"], "edit_access_group_ssim" => ["admin"], "nesting_collection__ancestors_ssim" => ["tpf2h200zz-89112"], "nesting_collection__parent_ids_ssim" => ["tpf2h200zz-89112"], "nesting_collection__pathnames_ssim" => ["tpf2h200zz-89112/csf2h200zz-89112"], "nesting_collection__deepest_nested_depth_isi" => 2, "_version_" => 1_634_988_068_854_300_672, "timestamp" => "2019-05-30T19:55:28.896Z", "score" => 1.0 }, { "system_create_dtsi" => "2019-05-30T19:54:46Z", "system_modified_dtsi" => "2019-05-30T19:54:47Z", "has_model_ssim" => ["Work"], "id" => "vrf2h200zz-89112", "accessControl_ssim" => ["8a314d6d-6d3d-4d55-ac43-3b01e29683f5"], "depositor_ssim" => ["batchuser@example.com"], "depositor_tesim" => ["batchuser@example.com"], "title_tesim" => ["Otto Klemperer, 1925-1939"], "date_uploaded_dtsi" => "2019-05-30T19:54:46Z", "date_modified_dtsi" => "2019-05-30T19:54:46Z", "isPartOf_ssim" => ["admin_set/default"], "ark_ssi" => "ark:/21198/zz002h2frv", "extent_tesim" => ["1 photographic negative"], "dlcs_collection_name_ssm" => ["Will Connell Collection. Department of Special Collections, Charles E. Young Research Library, UCLA."], "funding_note_tesim" => ["Access to this collection is generously supported by Arcadia funds."], "genre_tesim" => ["cellulose nitrate film", "black-and-white photographs"], "local_identifier_ssm" => ["uclamss_893_0207"], "medium_tesim" => ["b&w nitrate negative"], "named_subject_tesim" => ["Klemperer, Otto, 1885-1973"], "normalized_date_tesim" => ["1925/1939"], "photographer_tesim" => ["Connell, Will, 1898-1961"], "repository_tesim" => ["University of California, Los Angeles. Library Special Collections"], "resource_type_tesim" => ["http://id.loc.gov/vocabulary/resourceTypes/img"], "subject_tesim" => ["Composers", "Conductors"], "description_tesim" => ["Text from negative sleeve: Klemperer (Otto Klemperer) German conductor and composer. Director of LA Philharmonic 1933-1939.", "Portrait of Otto Klemperer"], "rights_statement_tesim" => ["http://vocabs.library.ucla.edu/rights/copyrighted"], "date_created_tesim" => ["[between 1925-1939]"], "thumbnail_path_ss" => "/assets/work-ff055336041c3f7d310ad69109eda4a887b16ec501f35afc0a547c4adb97ee72.png", "suppressed_bsi" => false, "member_of_collections_ssim" => ["Connell (Will) Papers"], "member_of_collection_ids_ssim" => ["tpf2h200zz-89112"], "visibility_ssi" => "open", "admin_set_tesim" => ["Default Admin Set"], "sort_year_isi" => 1925, "human_readable_resource_type_tesim" => ["still image"], "human_readable_rights_statement_tesim" => ["copyrighted"], "sort_title_tesi" => "Otto Klemperer, 1925-1939", "ursus_id_ssi" => "21198-zz002h2frv", "year_isim" => [1925, 1926, 1927, 1928, 1929, 1930, 1931, 1932, 1933, 1934, 1935, 1936, 1937, 1938, 1939], "human_readable_type_tesim" => ["Work"], "read_access_group_ssim" => ["public"], "edit_access_group_ssim" => ["admin"], "nesting_collection__ancestors_ssim" => ["tpf2h200zz-89112"], "nesting_collection__parent_ids_ssim" => ["tpf2h200zz-89112"], "nesting_collection__pathnames_ssim" => ["tpf2h200zz-89112/vrf2h200zz-89112"], "nesting_collection__deepest_nested_depth_isi" => 2, "_version_" => 1_634_988_068_523_999_232, "timestamp" => "2019-05-30T19:55:28.582Z", "score" => 1.0 }, { "system_create_dtsi" => "2019-05-30T19:55:00Z", "system_modified_dtsi" => "2019-05-30T19:55:01Z", "has_model_ssim" => ["Work"], "id" => "zzf2h200zz-89112", "accessControl_ssim" => ["fdf44f42-1b06-4360-b90e-dd1dea914ba7"], "depositor_ssim" => ["batchuser@example.com"], "depositor_tesim" => ["batchuser@example.com"], "title_tesim" => ["Portrait drawing of a man by Opal Weimer Fostvedt Tice, 1933-1946"], "date_uploaded_dtsi" => "2019-05-30T19:55:00Z", "date_modified_dtsi" => "2019-05-30T19:55:00Z", "isPartOf_ssim" => ["admin_set/default"], "ark_ssi" => "ark:/21198/zz002h2fzz", "extent_tesim" => ["1 photographic negative"], "dlcs_collection_name_ssm" => ["Will Connell Collection. Department of Special Collections, Charles E. Young Research Library, UCLA."], "funding_note_tesim" => ["Access to this collection is generously supported by Arcadia funds."], "genre_tesim" => ["cellulose nitrate film", "drawings (visual works)", "black-and-white photographs"], "local_identifier_ssm" => ["uclamss_893_0213"], "medium_tesim" => ["b&w nitrate negative"], "normalized_date_tesim" => ["1933/1946"], "photographer_tesim" => ["Connell, Will, 1898-1961"], "repository_tesim" => ["University of California, Los Angeles. Library Special Collections"], "resource_type_tesim" => ["http://id.loc.gov/vocabulary/resourceTypes/img"], "description_tesim" => ["Portrait drawing of a man by Opal Weimer Fostvedt Tice"], "rights_statement_tesim" => ["http://vocabs.library.ucla.edu/rights/copyrighted"], "date_created_tesim" => ["[between 1933-1946]"], "thumbnail_path_ss" => "/assets/work-ff055336041c3f7d310ad69109eda4a887b16ec501f35afc0a547c4adb97ee72.png", "suppressed_bsi" => false, "member_of_collections_ssim" => ["Connell (Will) Papers"], "member_of_collection_ids_ssim" => ["tpf2h200zz-89112"], "visibility_ssi" => "open", "admin_set_tesim" => ["Default Admin Set"], "sort_year_isi" => 1933, "human_readable_resource_type_tesim" => ["still image"], "human_readable_rights_statement_tesim" => ["copyrighted"], "sort_title_tesi" => "Portrait drawing of a man by Opal Weimer Fostvedt Tice, 1933-1946", "ursus_id_ssi" => "21198-zz002h2fzz", "year_isim" => [1933, 1934, 1935, 1936, 1937, 1938, 1939, 1940, 1941, 1942, 1943, 1944, 1945, 1946], "human_readable_type_tesim" => ["Work"], "read_access_group_ssim" => ["public"], "edit_access_group_ssim" => ["admin"], "nesting_collection__ancestors_ssim" => ["tpf2h200zz-89112"], "nesting_collection__parent_ids_ssim" => ["tpf2h200zz-89112"], "nesting_collection__pathnames_ssim" => ["tpf2h200zz-89112/zzf2h200zz-89112"], "nesting_collection__deepest_nested_depth_isi" => 2, "_version_" => 1_634_988_070_357_958_656, "timestamp" => "2019-05-30T19:55:30.331Z", "score" => 1.0 }] }, "facet_counts" => { "facet_queries" => {}, "facet_fields" => { "subject_sim" => ["Interior design--California--Los Angeles", 6, "Clothing stores--California--Los Angeles", 4, "Composers", 3, "Conductors", 3, "Architects", 2, "Food industry--California", 1], "human_readable_resource_type_sim" => ["still image", 19], "genre_sim" => ["black-and-white photographs", 19, "cellulose nitrate film", 17, "Portrait photographs", 7, "acetate film", 2, "drawings (visual works)", 2], "named_subject_sim" => ["Tice, Opal Weimer Fostvedt, 1900-1978", 5, "Klemperer, Otto, 1885-1973", 3, "Sprague, George Newman, 1903-1967", 2, "Fostvedt, William C., 1902-1964", 1, "Williams, Bill, 1915-1992", 1], "location_sim" => ["California--Los Angeles", 6, "California", 1], "year_isim" => ["1933", 12, "1934", 12, "1935", 12, "1936", 12, "1937", 12, "1938", 12], "human_readable_language_sim" => [], "member_of_collections_ssim" => ["Connell (Will) Papers", 19], "generic_type_sim" => ["Work", 19] }, "facet_ranges" => {}, "facet_intervals" => {}, "facet_heatmaps" => {} }, "stats" => { "stats_fields" => { "year_isim" => { "min" => 1925.0, "max" => 1946.0, "count" => 167, "missing" => 0, "sum" => 323_422.0, "sumOfSquares" => 626_362_628.0, "mean" => 1936.6586826347304, "stddev" => 5.2661369384107575 } } } }.freeze # rubocop:disable LineLength +RESPONSE = { "responseHeader" => { "status" => 0, "QTime" => 1, "params" => { "mm" => "100%", "facet.field" => ["subject_sim", "human_readable_resource_type_sim", "genre_sim", "named_subject_sim", "location_sim", "year_isim", "human_readable_language_sim", "member_of_collections_ssim", "generic_type_sim"], "qt" => "search", "f.human_readable_language_sim.facet.limit" => "6", "f.named_subject_sim.facet.limit" => "6", "fq" => ["{!terms f=has_model_ssim v=Work,Collection}", "{!term f=member_of_collections_ssim}Connell (Will) Papers"], "sort" => "score desc", "rows" => "10", "f.location_sim.facet.limit" => "6", "f.member_of_collections_ssim.facet.limit" => "6", "f.human_readable_resource_type_sim.facet.limit" => "6", "qf" => "architect_tesim caption_tesim contributor_tesim creator_tesim description_tesim genre_tesim identifier_tesim local_identifier_ssim location_tesim medium_tesim named_subject_tesim normalized_date_tesim photographer_tesim publisher_tesim subject_tesim title_tesim ark_ssi", "stats" => "true", "f.year_isim.facet.limit" => "6", "f.genre_sim.facet.limit" => "6", "facet" => "true", "wt" => "json", "f.subject_sim.facet.limit" => "6", "stats.field" => "year_isim" } }, "response" => { "numFound" => 19, "start" => 0, "maxScore" => 1.0, "docs" => [{ "system_create_dtsi" => "2019-05-30T19:54:42Z", "system_modified_dtsi" => "2019-05-30T19:54:45Z", "has_model_ssim" => ["Work"], "id" => "bqf2h200zz-89112", "accessControl_ssim" => ["e514f76a-04ba-4eed-a192-d846896c71a1"], "depositor_ssim" => ["batchuser@example.com"], "depositor_tesim" => ["batchuser@example.com"], "title_tesim" => ["Otto Klemperer, 1925-1939"], "date_uploaded_dtsi" => "2019-05-30T19:54:42Z", "date_modified_dtsi" => "2019-05-30T19:54:42Z", "isPartOf_ssim" => ["admin_set/default"], "ark_ssi" => "ark:/21198/zz002h2fqb", "extent_tesim" => ["1 photographic negative"], "dlcs_collection_name_ssm" => ["Will Connell Collection. Department of Special Collections, Charles E. Young Research Library, UCLA."], "funding_note_tesim" => ["Access to this collection is generously supported by Arcadia funds."], "genre_tesim" => ["cellulose nitrate film", "Portrait photographs", "black-and-white photographs"], "local_identifier_ssim" => ["uclamss_893_0206"], "medium_tesim" => ["b&w nitrate negative"], "named_subject_tesim" => ["Klemperer, Otto, 1885-1973"], "normalized_date_tesim" => ["1925-1939"], "photographer_tesim" => ["Connell, Will, 1898-1961"], "repository_tesim" => ["University of California, Los Angeles. Library Special Collections"], "resource_type_tesim" => ["http://id.loc.gov/vocabulary/resourceTypes/img"], "subject_tesim" => ["Composers", "Conductors"], "description_tesim" => ["Text from negative sleeve: Klemperer (Otto Klemperer) German conductor and composer. Director of LA Philharmonic 1933-1939.", "Portrait of Otto Klemperer"], "rights_statement_tesim" => ["http://vocabs.library.ucla.edu/rights/copyrighted"], "date_created_tesim" => ["[between 1925-1939]"], "thumbnail_path_ss" => "/assets/work-ff055336041c3f7d310ad69109eda4a887b16ec501f35afc0a547c4adb97ee72.png", "suppressed_bsi" => false, "member_of_collections_ssim" => ["Connell (Will) Papers"], "member_of_collection_ids_ssim" => ["coll-123"], "visibility_ssi" => "open", "admin_set_tesim" => ["Default Admin Set"], "sort_year_isi" => 1925, "human_readable_resource_type_tesim" => ["still image"], "human_readable_rights_statement_tesim" => ["copyrighted"], "sort_title_tesi" => "Otto Klemperer, 1925-1939", "ursus_id_ssi" => "21198-zz002h2fqb", "year_isim" => [1925], "human_readable_type_tesim" => ["Work"], "read_access_group_ssim" => ["public"], "edit_access_group_ssim" => ["admin"], "nesting_collection__ancestors_ssim" => ["tpf2h200zz-89112"], "nesting_collection__parent_ids_ssim" => ["tpf2h200zz-89112"], "nesting_collection__pathnames_ssim" => ["tpf2h200zz-89112/bqf2h200zz-89112"], "nesting_collection__deepest_nested_depth_isi" => 2, "_version_" => 1_634_988_068_206_280_704, "timestamp" => "2019-05-30T19:55:28.279Z", "score" => 1.0 }, { "system_create_dtsi" => "2019-05-30T19:54:53Z", "system_modified_dtsi" => "2019-05-30T19:54:54Z", "has_model_ssim" => ["Work"], "id" => "dvf2h200zz-89112", "accessControl_ssim" => ["7a70d729-5f91-48ee-bde0-8a44d5545ca6"], "depositor_ssim" => ["batchuser@example.com"], "depositor_tesim" => ["batchuser@example.com"], "title_tesim" => ["George Sprague seated at a piano, and an unidentified woman, circa 1930-1939"], "date_uploaded_dtsi" => "2019-05-30T19:54:53Z", "date_modified_dtsi" => "2019-05-30T19:54:53Z", "isPartOf_ssim" => ["admin_set/default"], "ark_ssi" => "ark:/21198/zz002h2fvd", "extent_tesim" => ["1 photographic negative"], "caption_tesim" => ["Text from negative sleeve: George Sprague"], "dlcs_collection_name_ssm" => ["Will Connell Collection. Department of Special Collections, Charles E. Young Research Library, UCLA."], "funding_note_tesim" => ["Access to this collection is generously supported by Arcadia funds."], "genre_tesim" => ["cellulose nitrate film", "black-and-white photographs"], "local_identifier_ssim" => ["uclamss_893_0210"], "medium_tesim" => ["b&w nitrate negative"], "named_subject_tesim" => ["Sprague, George Newman, 1903-1967"], "normalized_date_tesim" => ["1930/1939"], "photographer_tesim" => ["Connell, Will, 1898-1961"], "repository_tesim" => ["University of California, Los Angeles. Library Special Collections"], "resource_type_tesim" => ["http://id.loc.gov/vocabulary/resourceTypes/img"], "subject_tesim" => ["Architects"], "description_tesim" => ["Photograph of George Sprague, probably the architect, seated at a piano, and an unidentified woman, both with drinks at a social gathering. There are 2 paintings on the wall behind them.", "This is probably George Newman Sprague, an architect who earned his Master's Degree in Architecture from Harvard University, opened his office in Los Angeles in 1930, taught at USC and the Art Center, married Katherine Devlin in 1931, and who lived in Chadd's Ford, PA from 1947 on. Will Connell taught at the art Center during the time that Sprague was there."], "rights_statement_tesim" => ["http://vocabs.library.ucla.edu/rights/copyrighted"], "date_created_tesim" => ["[circa 1930-1939]"], "thumbnail_path_ss" => "/assets/work-ff055336041c3f7d310ad69109eda4a887b16ec501f35afc0a547c4adb97ee72.png", "suppressed_bsi" => false, "member_of_collections_ssim" => ["Connell (Will) Papers"], "member_of_collection_ids_ssim" => ["tpf2h200zz-89112"], "visibility_ssi" => "open", "admin_set_tesim" => ["Default Admin Set"], "sort_year_isi" => 1930, "human_readable_resource_type_tesim" => ["still image"], "human_readable_rights_statement_tesim" => ["copyrighted"], "sort_title_tesi" => "George Sprague seated at a piano, and an unidentified woman, circa 1930-1939", "ursus_id_ssi" => "21198-zz002h2fvd", "year_isim" => [1930, 1931, 1932, 1933, 1934, 1935, 1936, 1937, 1938, 1939], "human_readable_type_tesim" => ["Work"], "read_access_group_ssim" => ["public"], "edit_access_group_ssim" => ["admin"], "nesting_collection__ancestors_ssim" => ["tpf2h200zz-89112"], "nesting_collection__parent_ids_ssim" => ["tpf2h200zz-89112"], "nesting_collection__pathnames_ssim" => ["tpf2h200zz-89112/dvf2h200zz-89112"], "nesting_collection__deepest_nested_depth_isi" => 2, "_version_" => 1_634_988_069_456_183_296, "timestamp" => "2019-05-30T19:55:29.471Z", "score" => 1.0 }, { "system_create_dtsi" => "2019-05-30T19:54:51Z", "system_modified_dtsi" => "2019-05-30T19:54:52Z", "has_model_ssim" => ["Work"], "id" => "wtf2h200zz-89112", "accessControl_ssim" => ["c5947c4e-2026-4eac-a9dd-65ea0f885799"], "depositor_ssim" => ["batchuser@example.com"], "depositor_tesim" => ["batchuser@example.com"], "title_tesim" => ["George Sprague seated at a piano, circa 1930-1939"], "date_uploaded_dtsi" => "2019-05-30T19:54:50Z", "date_modified_dtsi" => "2019-05-30T19:54:50Z", "isPartOf_ssim" => ["admin_set/default"], "ark_ssi" => "ark:/21198/zz002h2ftw", "extent_tesim" => ["1 photographic negative"], "caption_tesim" => ["Text from negative sleeve: George Sprague"], "dlcs_collection_name_ssm" => ["Will Connell Collection. Department of Special Collections, Charles E. Young Research Library, UCLA."], "funding_note_tesim" => ["Access to this collection is generously supported by Arcadia funds."], "genre_tesim" => ["cellulose nitrate film", "Portrait photographs", "black-and-white photographs"], "local_identifier_ssim" => ["uclamss_893_0209"], "medium_tesim" => ["b&w nitrate negative"], "named_subject_tesim" => ["Sprague, George Newman, 1903-1967"], "normalized_date_tesim" => ["1930/1939"], "photographer_tesim" => ["Connell, Will, 1898-1961"], "repository_tesim" => ["University of California, Los Angeles. Library Special Collections"], "resource_type_tesim" => ["http://id.loc.gov/vocabulary/resourceTypes/img"], "subject_tesim" => ["Architects"], "description_tesim" => ["This is probably George Newman Sprague, an architect who earned his Master's Degree in Architecture from Harvard University, opened his office in Los Angeles in 1930, taught at USC and the Art Center, married Katherine Devlin in 1931, and who lived in Chadd's Ford, PA from 1947 on. Will Connell taught at the art Center during the time that Sprague was there.", "Photograph of George Sprague, probably the architect, seated at a piano with sheet music titled \"Santly's Successful Songs.\" There is a painting on the wall behind him and a vase of flowers on the piano."], "rights_statement_tesim" => ["http://vocabs.library.ucla.edu/rights/copyrighted"], "date_created_tesim" => ["[circa 1930-1939]"], "thumbnail_path_ss" => "/assets/work-ff055336041c3f7d310ad69109eda4a887b16ec501f35afc0a547c4adb97ee72.png", "suppressed_bsi" => false, "member_of_collections_ssim" => ["Connell (Will) Papers"], "member_of_collection_ids_ssim" => ["tpf2h200zz-89112"], "visibility_ssi" => "open", "admin_set_tesim" => ["Default Admin Set"], "sort_year_isi" => 1930, "human_readable_resource_type_tesim" => ["still image"], "human_readable_rights_statement_tesim" => ["copyrighted"], "sort_title_tesi" => "George Sprague seated at a piano, circa 1930-1939", "ursus_id_ssi" => "21198-zz002h2ftw", "year_isim" => [1930, 1931, 1932, 1933, 1934, 1935, 1936, 1937, 1938, 1939], "human_readable_type_tesim" => ["Work"], "read_access_group_ssim" => ["public"], "edit_access_group_ssim" => ["admin"], "nesting_collection__ancestors_ssim" => ["tpf2h200zz-89112"], "nesting_collection__parent_ids_ssim" => ["tpf2h200zz-89112"], "nesting_collection__pathnames_ssim" => ["tpf2h200zz-89112/wtf2h200zz-89112"], "nesting_collection__deepest_nested_depth_isi" => 2, "_version_" => 1_634_988_069_155_241_984, "timestamp" => "2019-05-30T19:55:29.184Z", "score" => 1.0 }, { "system_create_dtsi" => "2019-05-30T19:54:55Z", "system_modified_dtsi" => "2019-05-30T19:54:57Z", "has_model_ssim" => ["Work"], "id" => "xwf2h200zz-89112", "accessControl_ssim" => ["0c5a20e3-ddee-4ff4-9627-699ecc6aafc9"], "depositor_ssim" => ["batchuser@example.com"], "depositor_tesim" => ["batchuser@example.com"], "title_tesim" => ["Opal Weimer Fostvedt Tice and William C. Fostvedt, 1933-1946"], "date_uploaded_dtsi" => "2019-05-30T19:54:55Z", "date_modified_dtsi" => "2019-05-30T19:54:55Z", "isPartOf_ssim" => ["admin_set/default"], "ark_ssi" => "ark:/21198/zz002h2fwx", "extent_tesim" => ["1 photographic negative"], "caption_tesim" => ["Text from negative sleeve: Fostveldt. Frankenfield. Jos. Paget-Fredericks"], "dlcs_collection_name_ssm" => ["Will Connell Collection. Department of Special Collections, Charles E. Young Research Library, UCLA."], "funding_note_tesim" => ["Access to this collection is generously supported by Arcadia funds."], "genre_tesim" => ["cellulose nitrate film", "Portrait photographs", "black-and-white photographs"], "local_identifier_ssim" => ["uclamss_893_0211"], "medium_tesim" => ["b&w nitrate negative"], "named_subject_tesim" => ["Tice, Opal Weimer Fostvedt, 1900-1978", "Fostvedt, William C., 1902-1964"], "normalized_date_tesim" => ["1933/1946"], "photographer_tesim" => ["Connell, Will, 1898-1961"], "repository_tesim" => ["University of California, Los Angeles. Library Special Collections"], "resource_type_tesim" => ["http://id.loc.gov/vocabulary/resourceTypes/img"], "description_tesim" => ["Opal Weimer Fostvedt Tice was a member of the Los Angeles art community and often a model for photographers in the group.", "Double portrait of Opal Weimer Fostvedt Tice, standing, with her hand on the shoulder of her husband William C. Fostvedt"], "rights_statement_tesim" => ["http://vocabs.library.ucla.edu/rights/copyrighted"], "date_created_tesim" => ["[between 1933-1946]"], "thumbnail_path_ss" => "/assets/work-ff055336041c3f7d310ad69109eda4a887b16ec501f35afc0a547c4adb97ee72.png", "suppressed_bsi" => false, "member_of_collections_ssim" => ["Connell (Will) Papers"], "member_of_collection_ids_ssim" => ["tpf2h200zz-89112"], "visibility_ssi" => "open", "admin_set_tesim" => ["Default Admin Set"], "sort_year_isi" => 1933, "human_readable_resource_type_tesim" => ["still image"], "human_readable_rights_statement_tesim" => ["copyrighted"], "sort_title_tesi" => "Opal Weimer Fostvedt Tice and William C. Fostvedt, 1933-1946", "ursus_id_ssi" => "21198-zz002h2fwx", "year_isim" => [1933, 1934, 1935, 1936, 1937, 1938, 1939, 1940, 1941, 1942, 1943, 1944, 1945, 1946], "human_readable_type_tesim" => ["Work"], "read_access_group_ssim" => ["public"], "edit_access_group_ssim" => ["admin"], "nesting_collection__ancestors_ssim" => ["tpf2h200zz-89112"], "nesting_collection__parent_ids_ssim" => ["tpf2h200zz-89112"], "nesting_collection__pathnames_ssim" => ["tpf2h200zz-89112/xwf2h200zz-89112"], "nesting_collection__deepest_nested_depth_isi" => 2, "_version_" => 1_634_988_069_751_881_728, "timestamp" => "2019-05-30T19:55:29.753Z", "score" => 1.0 }, { "system_create_dtsi" => "2019-05-30T19:54:58Z", "system_modified_dtsi" => "2019-05-30T19:54:59Z", "has_model_ssim" => ["Work"], "id" => "fxf2h200zz-89112", "accessControl_ssim" => ["ee27af10-ed62-4de7-be0d-8b1c5e7b5127"], "depositor_ssim" => ["batchuser@example.com"], "depositor_tesim" => ["batchuser@example.com"], "title_tesim" => ["Drawing of Bill Williams by Opal Weimer Fostvedt Tice, 1933-1946"], "date_uploaded_dtsi" => "2019-05-30T19:54:57Z", "date_modified_dtsi" => "2019-05-30T19:54:57Z", "isPartOf_ssim" => ["admin_set/default"], "ark_ssi" => "ark:/21198/zz002h2fxf", "extent_tesim" => ["1 photographic negative"], "caption_tesim" => ["Text from negative sleeve: Fostvedt. Frankenfield. Jos. Paget-Fredericks.", "Signed: \"Opal Fostvedt. Bill Williams 7-16-31.\""], "dlcs_collection_name_ssm" => ["Will Connell Collection. Department of Special Collections, Charles E. Young Research Library, UCLA."], "funding_note_tesim" => ["Access to this collection is generously supported by Arcadia funds."], "genre_tesim" => ["cellulose nitrate film", "drawings (visual works)", "black-and-white photographs"], "local_identifier_ssim" => ["uclamss_893_0212"], "medium_tesim" => ["b&w nitrate negative"], "named_subject_tesim" => ["Williams, Bill, 1915-1992"], "normalized_date_tesim" => ["1933/1946"], "photographer_tesim" => ["Connell, Will, 1898-1961"], "repository_tesim" => ["University of California, Los Angeles. Library Special Collections"], "resource_type_tesim" => ["http://id.loc.gov/vocabulary/resourceTypes/img"], "description_tesim" => ["Bust-length drawing of actor Bill Williams", "Opal Weimer Fostvedt Tice was a member of the Los Angeles art community and often a model for photographers in the group."], "rights_statement_tesim" => ["http://vocabs.library.ucla.edu/rights/copyrighted"], "date_created_tesim" => ["[between 1933-1946]"], "thumbnail_path_ss" => "/assets/work-ff055336041c3f7d310ad69109eda4a887b16ec501f35afc0a547c4adb97ee72.png", "suppressed_bsi" => false, "member_of_collections_ssim" => ["Connell (Will) Papers"], "member_of_collection_ids_ssim" => ["tpf2h200zz-89112"], "visibility_ssi" => "open", "admin_set_tesim" => ["Default Admin Set"], "sort_year_isi" => 1933, "human_readable_resource_type_tesim" => ["still image"], "human_readable_rights_statement_tesim" => ["copyrighted"], "sort_title_tesi" => "Drawing of Bill Williams by Opal Weimer Fostvedt Tice, 1933-1946", "ursus_id_ssi" => "21198-zz002h2fxf", "year_isim" => [1933, 1934, 1935, 1936, 1937, 1938, 1939, 1940, 1941, 1942, 1943, 1944, 1945, 1946], "human_readable_type_tesim" => ["Work"], "read_access_group_ssim" => ["public"], "edit_access_group_ssim" => ["admin"], "nesting_collection__ancestors_ssim" => ["tpf2h200zz-89112"], "nesting_collection__parent_ids_ssim" => ["tpf2h200zz-89112"], "nesting_collection__pathnames_ssim" => ["tpf2h200zz-89112/fxf2h200zz-89112"], "nesting_collection__deepest_nested_depth_isi" => 2, "_version_" => 1_634_988_070_065_405_952, "timestamp" => "2019-05-30T19:55:30.052Z", "score" => 1.0 }, { "system_create_dtsi" => "2019-05-30T19:55:02Z", "system_modified_dtsi" => "2019-05-30T19:55:04Z", "has_model_ssim" => ["Work"], "id" => "z0g2h200zz-89112", "accessControl_ssim" => ["b56ee407-48a4-451f-b98e-82417b5a0928"], "depositor_ssim" => ["batchuser@example.com"], "depositor_tesim" => ["batchuser@example.com"], "title_tesim" => ["Opal Weimer Fostvedt Tice, 1933-1946"], "date_uploaded_dtsi" => "2019-05-30T19:55:02Z", "date_modified_dtsi" => "2019-05-30T19:55:02Z", "isPartOf_ssim" => ["admin_set/default"], "ark_ssi" => "ark:/21198/zz002h2g0z", "extent_tesim" => ["1 photographic negative"], "caption_tesim" => ["Text from negative sleeve: Fostveldt. Frankenfield. Jos. Paget-Fredericks"], "dlcs_collection_name_ssm" => ["Will Connell Collection. Department of Special Collections, Charles E. Young Research Library, UCLA."], "funding_note_tesim" => ["Access to this collection is generously supported by Arcadia funds."], "genre_tesim" => ["cellulose nitrate film", "Portrait photographs", "black-and-white photographs"], "local_identifier_ssim" => ["uclamss_893_0214"], "medium_tesim" => ["b&w nitrate negative"], "named_subject_tesim" => ["Tice, Opal Weimer Fostvedt, 1900-1978"], "normalized_date_tesim" => ["1933/1946"], "photographer_tesim" => ["Connell, Will, 1898-1961"], "repository_tesim" => ["University of California, Los Angeles. Library Special Collections"], "resource_type_tesim" => ["http://id.loc.gov/vocabulary/resourceTypes/img"], "description_tesim" => ["Opal Weimer Fostvedt Tice was a member of the Los Angeles art community and often a model for photographers in the group.", "Bust-length portrait of Opal Weimer Fostvedt Tice, in profile, in a floral dress"], "rights_statement_tesim" => ["http://vocabs.library.ucla.edu/rights/copyrighted"], "date_created_tesim" => ["[between 1933-1946]"], "thumbnail_path_ss" => "/assets/work-ff055336041c3f7d310ad69109eda4a887b16ec501f35afc0a547c4adb97ee72.png", "suppressed_bsi" => false, "member_of_collections_ssim" => ["Connell (Will) Papers"], "member_of_collection_ids_ssim" => ["tpf2h200zz-89112"], "visibility_ssi" => "open", "admin_set_tesim" => ["Default Admin Set"], "sort_year_isi" => 1933, "human_readable_resource_type_tesim" => ["still image"], "human_readable_rights_statement_tesim" => ["copyrighted"], "sort_title_tesi" => "Opal Weimer Fostvedt Tice, 1933-1946", "ursus_id_ssi" => "21198-zz002h2g0z", "year_isim" => [1933, 1934, 1935, 1936, 1937, 1938, 1939, 1940, 1941, 1942, 1943, 1944, 1945, 1946], "human_readable_type_tesim" => ["Work"], "read_access_group_ssim" => ["public"], "edit_access_group_ssim" => ["admin"], "nesting_collection__ancestors_ssim" => ["tpf2h200zz-89112"], "nesting_collection__parent_ids_ssim" => ["tpf2h200zz-89112"], "nesting_collection__pathnames_ssim" => ["tpf2h200zz-89112/z0g2h200zz-89112"], "nesting_collection__deepest_nested_depth_isi" => 2, "_version_" => 1_634_988_070_653_657_088, "timestamp" => "2019-05-30T19:55:30.613Z", "score" => 1.0 }, { "system_create_dtsi" => "2019-05-30T19:55:04Z", "system_modified_dtsi" => "2019-05-30T19:55:06Z", "has_model_ssim" => ["Work"], "id" => "g1g2h200zz-89112", "accessControl_ssim" => ["43369a9a-e669-45c8-8b1d-a9f433733fb9"], "depositor_ssim" => ["batchuser@example.com"], "depositor_tesim" => ["batchuser@example.com"], "title_tesim" => ["Opal Weimer Fostvedt Tice, 1933-1946"], "date_uploaded_dtsi" => "2019-05-30T19:55:04Z", "date_modified_dtsi" => "2019-05-30T19:55:04Z", "isPartOf_ssim" => ["admin_set/default"], "ark_ssi" => "ark:/21198/zz002h2g1g", "extent_tesim" => ["1 photographic negative"], "caption_tesim" => ["Text from negative sleeve: Fostveldt. Frankenfield. Jos. Paget-Fredericks"], "dlcs_collection_name_ssm" => ["Will Connell Collection. Department of Special Collections, Charles E. Young Research Library, UCLA."], "funding_note_tesim" => ["Access to this collection is generously supported by Arcadia funds."], "genre_tesim" => ["cellulose nitrate film", "Portrait photographs", "black-and-white photographs"], "local_identifier_ssim" => ["uclamss_893_0215"], "medium_tesim" => ["b&w nitrate negative"], "named_subject_tesim" => ["Tice, Opal Weimer Fostvedt, 1900-1978"], "normalized_date_tesim" => ["1933/1946"], "photographer_tesim" => ["Connell, Will, 1898-1961"], "repository_tesim" => ["University of California, Los Angeles. Library Special Collections"], "resource_type_tesim" => ["http://id.loc.gov/vocabulary/resourceTypes/img"], "description_tesim" => ["Opal Weimer Fostvedt Tice was a member of the Los Angeles art community and often a model for photographers in the group.", "Bust-length portrait of Opal Weimer Fostvedt Tice in a floral dress"], "rights_statement_tesim" => ["http://vocabs.library.ucla.edu/rights/copyrighted"], "date_created_tesim" => ["[between 1933-1946]"], "thumbnail_path_ss" => "/assets/work-ff055336041c3f7d310ad69109eda4a887b16ec501f35afc0a547c4adb97ee72.png", "suppressed_bsi" => false, "member_of_collections_ssim" => ["Connell (Will) Papers"], "member_of_collection_ids_ssim" => ["tpf2h200zz-89112"], "visibility_ssi" => "open", "admin_set_tesim" => ["Default Admin Set"], "sort_year_isi" => 1933, "human_readable_resource_type_tesim" => ["still image"], "human_readable_rights_statement_tesim" => ["copyrighted"], "sort_title_tesi" => "Opal Weimer Fostvedt Tice, 1933-1946", "ursus_id_ssi" => "21198-zz002h2g1g", "year_isim" => [1933, 1934, 1935, 1936, 1937, 1938, 1939, 1940, 1941, 1942, 1943, 1944, 1945, 1946], "human_readable_type_tesim" => ["Work"], "read_access_group_ssim" => ["public"], "edit_access_group_ssim" => ["admin"], "nesting_collection__ancestors_ssim" => ["tpf2h200zz-89112"], "nesting_collection__parent_ids_ssim" => ["tpf2h200zz-89112"], "nesting_collection__pathnames_ssim" => ["tpf2h200zz-89112/g1g2h200zz-89112"], "nesting_collection__deepest_nested_depth_isi" => 2, "_version_" => 1_634_988_070_961_938_432, "timestamp" => "2019-05-30T19:55:30.907Z", "score" => 1.0 }, { "system_create_dtsi" => "2019-05-30T19:54:48Z", "system_modified_dtsi" => "2019-05-30T19:54:50Z", "has_model_ssim" => ["Work"], "id" => "csf2h200zz-89112", "accessControl_ssim" => ["9e7c771f-d9f5-4d68-b49d-7a4a7dfdefa5"], "depositor_ssim" => ["batchuser@example.com"], "depositor_tesim" => ["batchuser@example.com"], "title_tesim" => ["Otto Klemperer, 1925-1939"], "date_uploaded_dtsi" => "2019-05-30T19:54:48Z", "date_modified_dtsi" => "2019-05-30T19:54:48Z", "isPartOf_ssim" => ["admin_set/default"], "ark_ssi" => "ark:/21198/zz002h2fsc", "extent_tesim" => ["1 photographic negative"], "caption_tesim" => ["Text from negative sleeve: Klemperer (Otto Klemperer) German conductor and composer. Director of LA Philharmonic 1933-1939."], "dlcs_collection_name_ssm" => ["Will Connell Collection. Department of Special Collections, Charles E. Young Research Library, UCLA."], "funding_note_tesim" => ["Access to this collection is generously supported by Arcadia funds."], "genre_tesim" => ["cellulose nitrate film", "black-and-white photographs"], "local_identifier_ssim" => ["uclamss_893_0208"], "medium_tesim" => ["b&w nitrate negative"], "named_subject_tesim" => ["Klemperer, Otto, 1885-1973"], "normalized_date_tesim" => ["1925/1939"], "photographer_tesim" => ["Connell, Will, 1898-1961"], "repository_tesim" => ["University of California, Los Angeles. Library Special Collections"], "resource_type_tesim" => ["http://id.loc.gov/vocabulary/resourceTypes/img"], "subject_tesim" => ["Composers", "Conductors"], "description_tesim" => ["Portrait of Otto Klemperer"], "rights_statement_tesim" => ["http://vocabs.library.ucla.edu/rights/copyrighted"], "date_created_tesim" => ["[between 1925-1939]"], "thumbnail_path_ss" => "/assets/work-ff055336041c3f7d310ad69109eda4a887b16ec501f35afc0a547c4adb97ee72.png", "suppressed_bsi" => false, "member_of_collections_ssim" => ["Connell (Will) Papers"], "member_of_collection_ids_ssim" => ["tpf2h200zz-89112"], "visibility_ssi" => "open", "admin_set_tesim" => ["Default Admin Set"], "sort_year_isi" => 1925, "human_readable_resource_type_tesim" => ["still image"], "human_readable_rights_statement_tesim" => ["copyrighted"], "sort_title_tesi" => "Otto Klemperer, 1925-1939", "ursus_id_ssi" => "21198-zz002h2fsc", "year_isim" => [1925, 1926, 1927, 1928, 1929, 1930, 1931, 1932, 1933, 1934, 1935, 1936, 1937, 1938, 1939], "human_readable_type_tesim" => ["Work"], "read_access_group_ssim" => ["public"], "edit_access_group_ssim" => ["admin"], "nesting_collection__ancestors_ssim" => ["tpf2h200zz-89112"], "nesting_collection__parent_ids_ssim" => ["tpf2h200zz-89112"], "nesting_collection__pathnames_ssim" => ["tpf2h200zz-89112/csf2h200zz-89112"], "nesting_collection__deepest_nested_depth_isi" => 2, "_version_" => 1_634_988_068_854_300_672, "timestamp" => "2019-05-30T19:55:28.896Z", "score" => 1.0 }, { "system_create_dtsi" => "2019-05-30T19:54:46Z", "system_modified_dtsi" => "2019-05-30T19:54:47Z", "has_model_ssim" => ["Work"], "id" => "vrf2h200zz-89112", "accessControl_ssim" => ["8a314d6d-6d3d-4d55-ac43-3b01e29683f5"], "depositor_ssim" => ["batchuser@example.com"], "depositor_tesim" => ["batchuser@example.com"], "title_tesim" => ["Otto Klemperer, 1925-1939"], "date_uploaded_dtsi" => "2019-05-30T19:54:46Z", "date_modified_dtsi" => "2019-05-30T19:54:46Z", "isPartOf_ssim" => ["admin_set/default"], "ark_ssi" => "ark:/21198/zz002h2frv", "extent_tesim" => ["1 photographic negative"], "dlcs_collection_name_ssm" => ["Will Connell Collection. Department of Special Collections, Charles E. Young Research Library, UCLA."], "funding_note_tesim" => ["Access to this collection is generously supported by Arcadia funds."], "genre_tesim" => ["cellulose nitrate film", "black-and-white photographs"], "local_identifier_ssim" => ["uclamss_893_0207"], "medium_tesim" => ["b&w nitrate negative"], "named_subject_tesim" => ["Klemperer, Otto, 1885-1973"], "normalized_date_tesim" => ["1925/1939"], "photographer_tesim" => ["Connell, Will, 1898-1961"], "repository_tesim" => ["University of California, Los Angeles. Library Special Collections"], "resource_type_tesim" => ["http://id.loc.gov/vocabulary/resourceTypes/img"], "subject_tesim" => ["Composers", "Conductors"], "description_tesim" => ["Text from negative sleeve: Klemperer (Otto Klemperer) German conductor and composer. Director of LA Philharmonic 1933-1939.", "Portrait of Otto Klemperer"], "rights_statement_tesim" => ["http://vocabs.library.ucla.edu/rights/copyrighted"], "date_created_tesim" => ["[between 1925-1939]"], "thumbnail_path_ss" => "/assets/work-ff055336041c3f7d310ad69109eda4a887b16ec501f35afc0a547c4adb97ee72.png", "suppressed_bsi" => false, "member_of_collections_ssim" => ["Connell (Will) Papers"], "member_of_collection_ids_ssim" => ["tpf2h200zz-89112"], "visibility_ssi" => "open", "admin_set_tesim" => ["Default Admin Set"], "sort_year_isi" => 1925, "human_readable_resource_type_tesim" => ["still image"], "human_readable_rights_statement_tesim" => ["copyrighted"], "sort_title_tesi" => "Otto Klemperer, 1925-1939", "ursus_id_ssi" => "21198-zz002h2frv", "year_isim" => [1925, 1926, 1927, 1928, 1929, 1930, 1931, 1932, 1933, 1934, 1935, 1936, 1937, 1938, 1939], "human_readable_type_tesim" => ["Work"], "read_access_group_ssim" => ["public"], "edit_access_group_ssim" => ["admin"], "nesting_collection__ancestors_ssim" => ["tpf2h200zz-89112"], "nesting_collection__parent_ids_ssim" => ["tpf2h200zz-89112"], "nesting_collection__pathnames_ssim" => ["tpf2h200zz-89112/vrf2h200zz-89112"], "nesting_collection__deepest_nested_depth_isi" => 2, "_version_" => 1_634_988_068_523_999_232, "timestamp" => "2019-05-30T19:55:28.582Z", "score" => 1.0 }, { "system_create_dtsi" => "2019-05-30T19:55:00Z", "system_modified_dtsi" => "2019-05-30T19:55:01Z", "has_model_ssim" => ["Work"], "id" => "zzf2h200zz-89112", "accessControl_ssim" => ["fdf44f42-1b06-4360-b90e-dd1dea914ba7"], "depositor_ssim" => ["batchuser@example.com"], "depositor_tesim" => ["batchuser@example.com"], "title_tesim" => ["Portrait drawing of a man by Opal Weimer Fostvedt Tice, 1933-1946"], "date_uploaded_dtsi" => "2019-05-30T19:55:00Z", "date_modified_dtsi" => "2019-05-30T19:55:00Z", "isPartOf_ssim" => ["admin_set/default"], "ark_ssi" => "ark:/21198/zz002h2fzz", "extent_tesim" => ["1 photographic negative"], "dlcs_collection_name_ssm" => ["Will Connell Collection. Department of Special Collections, Charles E. Young Research Library, UCLA."], "funding_note_tesim" => ["Access to this collection is generously supported by Arcadia funds."], "genre_tesim" => ["cellulose nitrate film", "drawings (visual works)", "black-and-white photographs"], "local_identifier_ssim" => ["uclamss_893_0213"], "medium_tesim" => ["b&w nitrate negative"], "normalized_date_tesim" => ["1933/1946"], "photographer_tesim" => ["Connell, Will, 1898-1961"], "repository_tesim" => ["University of California, Los Angeles. Library Special Collections"], "resource_type_tesim" => ["http://id.loc.gov/vocabulary/resourceTypes/img"], "description_tesim" => ["Portrait drawing of a man by Opal Weimer Fostvedt Tice"], "rights_statement_tesim" => ["http://vocabs.library.ucla.edu/rights/copyrighted"], "date_created_tesim" => ["[between 1933-1946]"], "thumbnail_path_ss" => "/assets/work-ff055336041c3f7d310ad69109eda4a887b16ec501f35afc0a547c4adb97ee72.png", "suppressed_bsi" => false, "member_of_collections_ssim" => ["Connell (Will) Papers"], "member_of_collection_ids_ssim" => ["tpf2h200zz-89112"], "visibility_ssi" => "open", "admin_set_tesim" => ["Default Admin Set"], "sort_year_isi" => 1933, "human_readable_resource_type_tesim" => ["still image"], "human_readable_rights_statement_tesim" => ["copyrighted"], "sort_title_tesi" => "Portrait drawing of a man by Opal Weimer Fostvedt Tice, 1933-1946", "ursus_id_ssi" => "21198-zz002h2fzz", "year_isim" => [1933, 1934, 1935, 1936, 1937, 1938, 1939, 1940, 1941, 1942, 1943, 1944, 1945, 1946], "human_readable_type_tesim" => ["Work"], "read_access_group_ssim" => ["public"], "edit_access_group_ssim" => ["admin"], "nesting_collection__ancestors_ssim" => ["tpf2h200zz-89112"], "nesting_collection__parent_ids_ssim" => ["tpf2h200zz-89112"], "nesting_collection__pathnames_ssim" => ["tpf2h200zz-89112/zzf2h200zz-89112"], "nesting_collection__deepest_nested_depth_isi" => 2, "_version_" => 1_634_988_070_357_958_656, "timestamp" => "2019-05-30T19:55:30.331Z", "score" => 1.0 }] }, "facet_counts" => { "facet_queries" => {}, "facet_fields" => { "subject_sim" => ["Interior design--California--Los Angeles", 6, "Clothing stores--California--Los Angeles", 4, "Composers", 3, "Conductors", 3, "Architects", 2, "Food industry--California", 1], "human_readable_resource_type_sim" => ["still image", 19], "genre_sim" => ["black-and-white photographs", 19, "cellulose nitrate film", 17, "Portrait photographs", 7, "acetate film", 2, "drawings (visual works)", 2], "named_subject_sim" => ["Tice, Opal Weimer Fostvedt, 1900-1978", 5, "Klemperer, Otto, 1885-1973", 3, "Sprague, George Newman, 1903-1967", 2, "Fostvedt, William C., 1902-1964", 1, "Williams, Bill, 1915-1992", 1], "location_sim" => ["California--Los Angeles", 6, "California", 1], "year_isim" => ["1933", 12, "1934", 12, "1935", 12, "1936", 12, "1937", 12, "1938", 12], "human_readable_language_sim" => [], "member_of_collections_ssim" => ["Connell (Will) Papers", 19], "generic_type_sim" => ["Work", 19] }, "facet_ranges" => {}, "facet_intervals" => {}, "facet_heatmaps" => {} }, "stats" => { "stats_fields" => { "year_isim" => { "min" => 1925.0, "max" => 1946.0, "count" => 167, "missing" => 0, "sum" => 323_422.0, "sumOfSquares" => 626_362_628.0, "mean" => 1936.6586826347304, "stddev" => 5.2661369384107575 } } } }.freeze # rubocop:disable LineLength diff --git a/spec/support/works.rb b/spec/support/works.rb index c8812c1f6..8edf0e99e 100644 --- a/spec/support/works.rb +++ b/spec/support/works.rb @@ -19,7 +19,7 @@ rights_country_tesim: ['US'], rights_holder_tesim: ['Charles E. Young'], normalized_date_sim: ['1934-56-78'], # unique value so we can test it doesn't display - local_identifier_ssm: ['local id 123'], + local_identifier_ssim: ['local id 123'], date_created_tesim: ["September 17, 1947"], medium_tesim: ['1 photograph'], extent_tesim: ['1 photograph'], diff --git a/spec/system/link_breaks_spec.rb b/spec/system/link_breaks_spec.rb index 1cb02fa79..13591de71 100644 --- a/spec/system/link_breaks_spec.rb +++ b/spec/system/link_breaks_spec.rb @@ -31,7 +31,7 @@ rights_country_tesim: ['US'], rights_holder_tesim: ['Charles E. Young'], normalized_date_tesim: ['1934-56-78'], # unique value so we can test it doesn't display - local_identifier_ssm: ['local id 123'], + local_identifier_ssim: ['local id 123'], date_created_tesim: ["September 17, 1947"], medium_tesim: ['1 photograph'], extent_tesim: ['1 photograph'], diff --git a/spec/system/show_collection_spec.rb b/spec/system/show_collection_spec.rb index 21cf6dcb4..7664c7110 100644 --- a/spec/system/show_collection_spec.rb +++ b/spec/system/show_collection_spec.rb @@ -21,7 +21,7 @@ accessControl_ssim: ['7b1af782-af1f-46a6-9bd2-b53be0f1bb68'], title_tesim: ['Bennett (Walter E.) Photographic Collection, 1937-1983 (bulk 1952-1982)'], collection_type_gid_ssim: ['gid://californica/hyrax-collectiontype/1'], - local_identifier_ssm: ['Collection 686'], + local_identifier_ssim: ['Collection 686'], normalized_date_tesim: ['1937/1983'], photographer_tesim: ['Bennett, Walter E. (Walter Edward), 1921-1995'], repository_tesim: ['University of California, Los Angeles. Library Special Collections'], @@ -71,7 +71,7 @@ # expect(page).to have_selector('.primary-metadata') # expect(page).to have_selector('.secondary-metadata') # expect(page.find('div.secondary-metadata dd.blacklight-services_contact_ssm').text).to eq 'UCLA' - # expect(page.find('div.secondary-metadata dd.blacklight-local_identifier_ssm').text).to eq 'Collection 686' + # expect(page.find('div.secondary-metadata dd.blacklight-local_identifier_ssim').text).to eq 'Collection 686' expect(page).to have_content 'Bennett (Walter E.) Photographic Collection, 1937-1983 (bulk 1952-1982)' expect(page).to have_content 'LOCAL IDENTIFIER Collection 686' diff --git a/spec/system/suppress_discovery_collection_spec.rb b/spec/system/suppress_discovery_collection_spec.rb index a757961c5..3744c1d55 100644 --- a/spec/system/suppress_discovery_collection_spec.rb +++ b/spec/system/suppress_discovery_collection_spec.rb @@ -21,7 +21,7 @@ accessControl_ssim: ['7b1af782-af1f-46a6-9bd2-b53be0f1bb68'], title_tesim: ['Zen and the Art of Motorcycle Maintenance: An Inquiry Into Values'], collection_type_gid_ssim: ['gid://californica/hyrax-collectiontype/1'], - local_identifier_ssm: ['Collection 686'], + local_identifier_ssim: ['Collection 686'], normalized_date_tesim: ['1937/1983'], photographer_tesim: ['Bennett, Walter E. (Walter Edward), 1921-1995'], repository_tesim: ['University of California, Los Angeles. Library Special Collections'], diff --git a/spec/system/suppress_private_collection_spec.rb b/spec/system/suppress_private_collection_spec.rb index 00c9661e3..9d147d613 100644 --- a/spec/system/suppress_private_collection_spec.rb +++ b/spec/system/suppress_private_collection_spec.rb @@ -19,7 +19,7 @@ accessControl_ssim: ['7b1af782-af1f-46a6-9bd2-b53be0f1bb68'], title_tesim: ['Zen and the Art of Motorcycle Maintenance: An Inquiry Into Values'], collection_type_gid_ssim: ['gid://californica/hyrax-collectiontype/1'], - local_identifier_ssm: ['Collection 686'], + local_identifier_ssim: ['Collection 686'], normalized_date_tesim: ['1937/1983'], photographer_tesim: ['Bennett, Walter E. (Walter Edward), 1921-1995'], repository_tesim: ['University of California, Los Angeles. Library Special Collections'],